/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
:root {
    /* Wine-inspired color palette */
    --primary-beige: #F5F1E8;
    --off-white: #FEFCF7;
    --deep-green: #2C3E2D;
    --gold-accent: #D4AF37;
    --warm-brown: #8B4513;
    --light-green: #6B8E6B;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Source Sans Pro', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo-image {
    height: 7.2rem;
    width: auto;
    max-width: 800px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--deep-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 62, 45, 0.4), rgba(44, 62, 45, 0.6)),
                url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover;
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(44, 62, 45, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.logo-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s both;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: var(--warm-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--primary-beige);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Selection Section */
.selection {
    padding: var(--section-padding);
    background: var(--off-white);
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.wine-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}


.wine-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.wine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.wine-content {
    padding: 2rem;
    text-align: center;
}

.wine-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.wine-content p {
    color: var(--text-light);
    line-height: 1.6;
}


/* Nos Partenaires Section */
.partenaires-section {
    padding: var(--section-padding);
    background: #FDF6E3;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.partenaires-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.partners-title {
    text-align: center;
    margin-bottom: 1rem;
}

.partners-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-style: italic;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-card:last-child {
    margin-bottom: 0;
}

.partner-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #F5F1E8;
}

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

.partner-photo {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-info {
    display: flex;
    flex-direction: column;
}

.partner-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.partner-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-accent);
}

.partner-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
    margin-top: 1rem;
}

.partner-wines {
    margin-top: 2rem;
}

.partner-wines-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-wines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partner-wine-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-wine-item:hover {
    transform: translateY(-5px);
}

.partner-wine-img {
    width: 100%;
    max-width: 120px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.partner-wine-name {
    font-size: 0.9rem;
    color: var(--deep-green);
    font-weight: 600;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--primary-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.submit-btn {
    padding: 15px 30px;
    background: var(--deep-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--deep-green);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Our Wines Section Styles */
.our-wines-section {
    background-color: #FDF6E3;
    padding: 100px 0;
}

/* Category Highlight Section */
.category-highlight-section {
    background-color: #FDF6E3;
    padding: 100px 0;
}

.category-highlight-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: #5B2333;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}

.category-highlight-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #C8A97E, transparent);
}

.highlight-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, #C8A97E, #C8A97E);
    z-index: 1;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.8s ease-in-out;
    box-shadow: 0 0 10px rgba(200, 169, 126, 0.3);
}

.highlight-steps.animate::before {
    opacity: 1;
    transform: scaleY(1);
    animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% {
        box-shadow: 0 0 10px rgba(200, 169, 126, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(200, 169, 126, 0.6);
    }
}

.highlight-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.highlight-step.animate {
    opacity: 1;
    transform: translateX(0);
}

.highlight-step:nth-child(1).animate {
    transition-delay: 0.2s;
}

.highlight-step:nth-child(2).animate {
    transition-delay: 0.4s;
}

.highlight-step:nth-child(3).animate {
    transition-delay: 0.6s;
}

.highlight-step:nth-child(4).animate {
    transition-delay: 0.8s;
}

.highlight-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C8A97E 0%, #B8986E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(200, 169, 126, 0.3);
    position: relative;
    z-index: 3;
    transform: scale(0);
    transition: transform 0.5s ease-out;
    cursor: pointer;
}

.highlight-step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #C8A97E, #B8986E);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-step-number:hover::before {
    opacity: 0.3;
}

.highlight-step-number:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(200, 169, 126, 0.4);
}

.highlight-step.animate .highlight-step-number {
    transform: scale(1);
}

.highlight-step:nth-child(1).animate .highlight-step-number {
    transition-delay: 0.3s;
}

.highlight-step:nth-child(2).animate .highlight-step-number {
    transition-delay: 0.5s;
}

.highlight-step:nth-child(3).animate .highlight-step-number {
    transition-delay: 0.7s;
}

.highlight-step:nth-child(4).animate .highlight-step-number {
    transition-delay: 0.9s;
}

.highlight-step-content {
    flex: 1;
    padding-top: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.highlight-step.animate .highlight-step-content {
    opacity: 1;
    transform: translateY(0);
}

.highlight-step:nth-child(1).animate .highlight-step-content {
    transition-delay: 0.4s;
}

.highlight-step:nth-child(2).animate .highlight-step-content {
    transition-delay: 0.6s;
}

.highlight-step:nth-child(3).animate .highlight-step-content {
    transition-delay: 0.8s;
}

.highlight-step:nth-child(4).animate .highlight-step-content {
    transition-delay: 1s;
}

.highlight-step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #C8A97E;
    margin-bottom: 1rem;
    margin-left: 0;
}

.highlight-step-content p {
    color: #5B2333;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 1rem;
    margin-left: 0;
}

.wines-comparison-container {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.wine-comparison {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 169, 126, 0.2);
}

.wine-comparison h4 {
    color: #C8A97E;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.wine-comparison p {
    color: #5B2333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.wines-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wines-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #5B2333;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
}

.wines-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, #C8A97E, transparent);
}

.wines-intro {
    font-size: 1.15rem;
    color: #5B2333;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
    letter-spacing: 0.3px;
}

.filter-chips {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 12px 24px;
    border: 2px solid #C8A97E;
    background: transparent;
    color: #5B2333;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.filter-chip:hover,
.filter-chip.active {
    background: #C8A97E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 169, 126, 0.3);
}

.wines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wine-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 1;
    transform: scale(1);
}


.wine-card.hidden {
    display: none;
}

.wine-white {
    background: #FDF6E3;
}

.wine-red {
    background: #F5E6E6;
}

.wine-rose {
    background: #FFDECC;
}

.wine-featured {
    grid-column: span 2;
}

.wine-card-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.wine-image {
    flex-shrink: 0;
    width: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wine-image img {
    width: 100%;
    max-width: 80px;
    height: auto;
    max-height: 243px;
    object-fit: contain;
    display: block;
}


.wine-content {
    flex: 1;
}

.wine-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #5B2333;
    margin-bottom: 0.5rem;
}

.wine-meta {
    font-size: 0.9rem;
    color: #5B2333;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.appellation {
    font-weight: 600;
}

.organic-badge {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.8rem;
}

.tasting-note {
    color: #5B2333;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wine-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.wine-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #5B2333;
    opacity: 0.7;
}

.wine-icon i {
    color: #C8A97E;
}

.learn-more-btn {
    background: #C8A97E;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.learn-more-btn:hover {
    background: #5B2333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 169, 126, 0.3);
}

/* Modal Styles */
.wine-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wine-modal.show {
    display: flex !important;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #5B2333;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5B2333;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 1;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-content-section {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-content-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.modal-content-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #5B2333;
    margin-bottom: 0.5rem;
}

.modal-content-section p {
    color: #5B2333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.modal-content-section p:last-child {
    margin-bottom: 0;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: var(--primary-beige);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .nav-logo-image {
        height: 6rem;
        max-width: 640px;
    }
    
    .partner-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .partner-photo {
        width: 200px;
        height: 260px;
    }
    
    .partner-name {
        font-size: 1.8rem;
    }
    
    .partner-wines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .logo-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .wines-title {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }
    
    .wines-title::after {
        width: 35px;
        bottom: -10px;
    }
    
    .wines-intro {
        font-size: 1rem;
        max-width: 90%;
        letter-spacing: 0.2px;
    }
    
    .wine-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    :root {
        --section-padding: 60px 0;
    }
    
    /* Our Wines Responsive */
    .wines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wine-featured {
        grid-column: span 1;
    }
    
    .wine-card-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .wine-image {
        width: 180px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 0;
    }
    
    .wine-image img {
        width: 100%;
        max-width: 68px;
        height: auto;
        max-height: 213px;
    }
    
    .wine-icons {
        justify-content: center;
    }
    
    .filter-chips {
        gap: 0.5rem;
    }
    
    .filter-chip {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .category-highlight-title {
        font-size: 2.2rem;
        font-weight: 300;
        margin-bottom: 3rem;
        letter-spacing: 0.5px;
    }
    
    .category-highlight-title::after {
        width: 40px;
        bottom: -12px;
    }
    
    .category-highlight-section {
        padding: 60px 0;
    }
    
    .category-highlight-content {
        padding: 0 1rem;
    }
    
    .highlight-steps::before {
        display: none;
    }
    
    .highlight-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-bottom: 0.5rem;
    }
    
    .wines-comparison-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .wine-comparison {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .wine-comparison h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .wine-comparison p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .highlight-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .highlight-step-content {
        padding-top: 0;
        width: 100%;
    }
    
    .highlight-step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .highlight-step-content p {
        text-align: center;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .nav-logo-image {
        height: 5.2rem;
        max-width: 560px;
    }
    
    .nav-container {
        height: 100px;
    }
    
    .nav-menu {
        top: 100px;
    }
    
    .logo-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .partner-card {
        padding: 2rem 1.5rem;
    }
    
    .partner-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .partner-photo {
        width: 160px;
        height: 210px;
    }
    
    .partner-name {
        font-size: 1.6rem;
    }
    
    .partner-bio {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .partner-wines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-wine-img {
        max-width: 100px;
        height: 160px;
    }
    
    .partner-wine-name {
        font-size: 0.85rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .wines-title {
        font-size: 1.8rem;
        letter-spacing: 0.3px;
    }
    
    .wines-title::after {
        width: 30px;
        bottom: -8px;
    }
    
    .wines-intro {
        font-size: 0.95rem;
        max-width: 95%;
        letter-spacing: 0.1px;
    }
    
    .wine-content {
        padding: 1.5rem;
    }
    
    .rose-title {
        font-size: 2rem;
    }
    
    .description-step {
        padding-left: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        left: -1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .rose-bottle {
        width: 200px;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
}
