:root {
    --primary: #9BA616;
    /* Refined Olive */
    --secondary: #C5A028;
    /* Deep Gold */
    --accent: #232323;
    /* Rich Charcoal */
    --bg-light: #F9F7F2;
    /* Parchment Cream */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    /* Adjust based on logo proportions */
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #788413;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bg-parchment {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--accent);
    color: var(--text-light);
}

.bg-dark h2,
.bg-dark .text-block h3,
.bg-dark .text-block p {
    color: var(--text-light);
}

.bg-dark .text-block h2::after,
.bg-dark .text-block h3::after {
    background-color: var(--primary);
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.mt-8 {
    margin-top: 5rem;
}

.section-title,
.text-block h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.text-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.text-block h2::after,
.text-block h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

.image-block {
    max-width: 100%;
}

.image-block img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #fdfdfd, #f5f7f2);
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 166, 22, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: move 20s infinite alternate linear;
}

.bg-blob:nth-child(2) {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes move {
    from {
        transform: translate(-10%, -10%);
    }

    to {
        transform: translate(110%, 110%);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Wine Grid */
.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.wine-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s;
    border-top: 5px solid var(--primary);
}

.wine-card:hover {
    transform: translateY(-10px);
}

.wine-card h3 {
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    width: 180px;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--secondary);
    transition: transform 0.3s;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.team-member .role {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

.full-collection-img img {
    width: 100%;
    border-radius: 8px;
    margin-top: 2rem;
}

/* B2B Section */
.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-header h3 {
    margin: 0;
    color: var(--accent);
}

.icon {
    font-size: 1.5rem;
}

.team-info {
    margin-bottom: 1.5rem;
}

.member {
    margin-bottom: 1rem;
}

.member strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.member a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
}

.member a:hover {
    color: var(--secondary);
}

.phones p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.note {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.text-center {
    text-align: center;
}



/* Footer */
footer {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 6rem 0 2rem;
}

.contact-info h2 {
    color: var(--secondary);
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .grid,
    .grid.reverse,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .badges {
        flex-direction: column;
        gap: 1rem;
    }
}