:root {
    --primary: #9A4E5F;      /* Modern Burgundy */
    --primary-dark: #7A3244; /* Darker Burgundy */
    --secondary: #B47280;    /* Soft Wine */
    --accent: #E8D3D8;       /* Light Pink */
    --dark: #2A1F22;         /* Soft Black */
    --light: #FDFBFC;        /* Off White */
    --cream: #F9F2F4;        /* Warm White */
    --gold: #D4B78F;         /* Soft Gold */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Art Deco Patterns and Decorations */
.art-deco-border {
    border: 2px solid var(--primary);
    position: relative;
}

.art-deco-border::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--secondary);
}

/* Navigation */
.navbar {
    background-color: rgba(42, 31, 34, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 183, 143, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--light);
    text-decoration: none;
}

.logo-text {
    text-decoration: none;
    color: var(--light);
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--accent);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo span {
    font-weight: 500;
}

.logo-link {
    text-decoration: none;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--accent);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(
        165deg,
        rgba(154, 78, 95, 0.8) 0%,
        rgba(180, 114, 128, 0.6) 50%,
        rgba(232, 211, 216, 0.4) 100%
    ),
    url('images/vinoprof1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
}

.hero-content {
    padding: 3rem 4rem;
    background: rgba(154, 78, 95, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 183, 143, 0.2);
    border-radius: 4px;
    max-width: 800px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--accent);
    z-index: -1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--light);
}

.hero p {
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(
        to bottom right,
        var(--light) 0%,
        var(--cream) 100%
    );
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.about h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 3rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-content p:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary),
        transparent
    );
    opacity: 0.6;
}

.about-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(154, 78, 95, 0.15);
    border: 3px solid var(--primary);
    padding: 4px;
    background: rgba(154, 78, 95, 0.05);
}

.about-content h3 {
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 20px;
}

.about-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .side-image {
        max-width: 100%;
    }
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(
        to bottom left,
        var(--light) 0%,
        var(--cream) 100%
    );
}

.gallery h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.8rem 2rem;
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: normal;
}

.category-btn:hover {
    background-color: var(--primary);
    color: var(--light);
}

.category-btn.active {
    background-color: var(--primary);
    color: var(--light);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(154, 78, 95, 0.2);
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--primary);
    padding: 3px;
    background: rgba(154, 78, 95, 0.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(154, 78, 95, 0.15);
    border-color: var(--accent);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 0.5s ease;
}

.gallery-item.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(154, 78, 95, 0.2),
        rgba(212, 183, 143, 0.2)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 31, 34, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(212, 183, 143, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(212, 183, 143, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.lightbox-video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    border: 1px solid rgba(212, 183, 143, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1110;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1110;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(
        to bottom,
        var(--light) 0%,
        var(--cream) 100%
    );
    position: relative;
}

.contact h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(154, 78, 95, 0.05);
    border-left: 4px solid var(--primary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(154, 78, 95, 0.1);
    border: 4px solid var(--primary);
    padding: 3px;
    background: rgba(154, 78, 95, 0.05);
}

/* Footer */
footer {
    background-color: rgba(42, 31, 34, 0.95);
    backdrop-filter: blur(10px);
    color: var(--accent);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 183, 143, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}
