/* Reset general */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
    font-size: 14px; /* Dimensiune text de bază ajustată */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header */
header {
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2rem; /* Dimensiune redusă pentru titlul principal */
}

header p {
    font-size: 1rem; /* Dimensiune ajustată pentru paragrafe */
}

header .btn {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px;
    background: linear-gradient(45deg, #25D366, #FF0000);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

header .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #25D366;
    }
    50% {
        box-shadow: 0 0 20px #FF0000;
    }
    100% {
        box-shadow: 0 0 10px #25D366;
    }
}

/* Galerie imagini */
.gallery {
    text-align: center;
    margin: 40px 0;
}

.gallery-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-images img:hover {
    transform: scale(1.05);
}

/* Secțiuni */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem; /* Dimensiune redusă pentru titluri de secțiuni */
}

.section-content {
    text-align: left;
}

/* Contact Overlay */
.phone-button {
    position: fixed;
    bottom: 180px;
    right: 20px;
    z-index: 10000;
    background: linear-gradient(45deg, #25D366, #FF0000);
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

.whatsapp-button:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #fff;
    color: #333;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem; /* Dimensiune mai mică pentru textul footer-ului */
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer nav ul li {
    position: relative;
}

footer nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

footer nav ul li a:hover {
    color: #25D366;
}

footer nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer nav ul li:hover ul {
    display: block;
}

footer nav ul li ul li {
    margin: 5px 0;
}

footer nav ul li ul li a {
    color: #555;
}

footer nav ul li ul li a:hover {
    color: #25D366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-images {
        flex-direction: column;
    }
}
