:root {
    --primary-color: #FFD700;
    --text-color: #000000;
    --background-color: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --accent-gray: #f9f9f9;
    --shadow: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--shadow);
    background-color: var(--background-color);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a {
    margin-left: 2.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f8f8;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero-image {
    flex: 1;
    height: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: normal;
    font-style: italic;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.experience-section {
    display: flex;
    padding: 8rem 4rem;
    gap: 4rem;
    align-items: center;
}

.content {
    flex: 1;
}

.image-container {
    flex: 1;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.experience-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: normal;
}

.experience-section  {
    font-size: 1.1rem;
}

.gallery-section {
    padding: 4rem;
    background-color: #fff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.about-section {
    padding: 8rem 4rem;
    background-color: #f8f8f8;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: normal;
}

.about-text {
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: normal;
}

.feature {
    font-size: 1rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 39px;
    right: 20px;
    margin-right:80px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 1000;
    outline: none; 
    width: 56px;
    height: 56px; 
    min-width: 56px; 
    min-height: 56px; 
    overflow: hidden; 
    padding: 0; 
    vertical-align: middle; 
    color: #fff; 
    background-color: #25D366; 
    border-color: #22c38e; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

footer {
    background: var(--background-color);
    color: var(--text-color);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.instagram-icon {
    font-size: 32px;
    color: var(--text-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.instagram-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-section,
    .experience-section {
        flex-direction: column;
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-image {
        height: 400px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .experience-section,
    .about-section {
        padding: 4rem 1rem;
    }
}