:root {
    --primary-color: #2c1810;
    --secondary-color: #1C5783;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-bg: #FBEFDD;
    --white: #FBEFDD;
    --gray-light: #f5f5f5;
    --gray-dark: #666;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Cerebri', sans-serif;
    line-height: 1.6;
    color: #535093;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Gavalin', serif;
    color: #535093;
    margin-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    background-color: #FBEFDD;
    padding: 1rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        width: 100%;
        transition: 0.5s;
        padding: 2rem 0;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero, .about-hero, .partners-hero, .contact-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 60px;
    }

    .hero h1, .about-hero h1, .partners-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .wine-grid, .team-grid, .partners-grid, .values-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .partners-hero {
        height: 40vh;
    }

    .partners-hero h1 {
        font-size: 2.5rem;
    }

    .partners-hero .subtitle {
        font-size: 1.2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-preview .container {
        flex-direction: column;
    }

    .about-preview-image {
        width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-layout {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero, .about-hero, .partners-hero, .contact-hero {
        height: 40vh;
        min-height: 300px;
    }

    .hero h1, .about-hero h1, .partners-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Hero Sections */
.hero, .about-hero, .partners-hero, .contact-hero {
    background-color: #FBEFDD;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FBEFDD;
}

.hero-content, .about-hero .container, .partners-hero .container, .contact-hero .container {
    position: relative;
    z-index: 1;
    width: 480px;
    height: 480px;
    /*padding: 0 2rem;*/
}

/* .hero h1, .about-hero h1, .partners-hero h1, .contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #FBEFDD;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
} */

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Sections */
.section {
    padding: 6rem 0;
    margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

/* Cards and Grids */
.wine-grid, .team-grid, .partners-grid, .values-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wine-card, .team-member, .partner-card, .value-card, .benefit {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.wine-card:hover, .team-member:hover, .partner-card:hover, .value-card:hover, .benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.wine-card img, .team-member img, .partner-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.wine-card h3, .team-member h3, .partner-card h3, .value-card h3, .benefit h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.wine-card p, .team-member p, .partner-card p, .value-card p, .benefit p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-dark);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--light-bg);
    color: var(--text-color);
    padding: 2rem 0;
    margin-top: 4rem;
    position: relative;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(139, 69, 19, 0.3) 10%,
        rgba(139, 69, 19, 0.5) 50%,
        rgba(139, 69, 19, 0.3) 90%,
        transparent
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

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

.wine-card, .team-member, .partner-card, .value-card, .benefit {
    animation: fadeIn 0.5s ease-out;
}

/* Animations */
.nav-active {
    transform: translateX(0%);
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Partners Page Styles */
.partners-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    color: var(--white);
    text-align: center;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.partners-hero .container {
    position: relative;
    z-index: 2;
}

.partners-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.partners-hero .subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.partners-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

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

.partner-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    min-height: 400px;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partner-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Gavalin', serif;
}

.partner-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.partner-specs {
    margin-top: auto;
}

.spec-item {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.spec-item strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.partner-image {
    flex: 0 0 300px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.partner-card:has(.partner-image:only-child) {
    justify-content: center;
}

.partner-card:has(.partner-image:only-child) .partner-image {
    flex: 1;
    max-width: 400px;
}

.partner-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-image img {
    transform: scale(1.02);
}

/* PDF Download Section */
.pdf-download-section {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pdf-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pdf-icon {
    margin-bottom: 2rem;
}

.pdf-icon i {
    font-size: 4rem;
    color: #e74c3c;
}

.pdf-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Gavalin', serif;
}

.pdf-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pdf-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pdf-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.pdf-details i {
    color: var(--primary-color);
}

.btn-download {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.partnership-benefits {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.partnership-cta {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partnership-cta h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.partnership-cta p {
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

/* About Preview Section */
.about-preview {
    padding: 4rem 0;
}

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

.about-preview-image {
    flex: 1;
    min-width: 300px;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-preview-content {
    flex: 1;
    text-align: center;
}

.about-preview-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-preview-content p {
    text-align: center;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.about-preview-content .btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Age Verification Popup */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verification-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.age-verification-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.age-verification-content p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-secondary {
    background-color: var(--gray-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--gray-light);
    color: var(--gray-dark);
}

.about-section {
    padding: 4rem 0;
    margin-top: 80px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story {
    padding: 0;
}

.about-story h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-story p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .partner-content {
        padding: 1.5rem;
    }
    
    .partner-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .partner-image {
        flex: 0 0 250px;
        padding: 1.5rem;
    }
    
    .pdf-card {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .pdf-content h3 {
        font-size: 1.5rem;
    }
    
    .pdf-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.5s ease-in;
}

.success-message i {
    font-size: 1.5rem;
    color: #28a745;
}

.success-message p {
    margin: 0;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-preview {
    padding: 4rem 0;
}

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

.about-preview-image {
    flex: 1;
    min-width: 300px;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-preview-content {
    flex: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .about-preview .container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-preview-image {
        width: 100%;
        min-width: unset;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        height: 40vh;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .about-preview {
        padding: 3rem 0;
    }

    .stat h3 {
        font-size: 2rem;
    }
} 