:root {
    --wine-burgundy: #722F37;
    --wine-dark: #4A1C21;
    --wine-light: #9B4D54;
    --gold-accent: #C9A962;
    --gold-light: #E8D5A3;
    --cream: #F5F0E6;
    --cream-dark: #EBE4D4;
    --text-dark: #2D2D2D;
    --text-muted: #6B6B6B;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-burgundy) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.wine-glass {
    width: 60px;
    height: 100px;
    border: 3px solid var(--gold-accent);
    border-radius: 0 0 30px 30px;
    position: relative;
    margin: 0 auto 20px;
    overflow: hidden;
}

.wine-glass::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 40px;
    background: var(--gold-accent);
}

.wine-glass::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: var(--gold-accent);
    border-radius: 5px;
}

.wine-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--wine-light) 0%, var(--wine-burgundy) 100%);
    animation: fillWine 1.5s ease-in-out infinite;
}

@keyframes fillWine {
    0%, 100% { height: 20%; }
    50% { height: 70%; }
}

.loader-text {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.navbar {
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-burgundy) 100%);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(74, 28, 33, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-accent);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.brand-accent {
    color: var(--gold-accent);
}

.navbar-toggler {
    border: 2px solid var(--gold-accent);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A962' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-accent) !important;
}

.dropdown-menu {
    background: var(--wine-dark);
    border: 1px solid var(--wine-light);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--cream);
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--wine-burgundy);
    color: var(--gold-accent);
}

.offcanvas {
    background: linear-gradient(180deg, var(--wine-dark) 0%, var(--wine-burgundy) 100%);
}

.offcanvas-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.offcanvas-title img {
    border-radius: 50%;
}

.btn-close {
    filter: invert(1);
}

.offcanvas .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.hero-section {
    background: linear-gradient(135deg, rgba(74, 28, 33, 0.9) 0%, rgba(114, 47, 55, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Tokaji_landscape.jpg/1920px-Tokaji_landscape.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--gold-accent);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gold-light);
    max-width: 600px;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    display: block;
}

.stat-label {
    color: var(--cream);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero {
    background: linear-gradient(135deg, rgba(74, 28, 33, 0.92) 0%, rgba(114, 47, 55, 0.88) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Tokaji_landscape.jpg/1920px-Tokaji_landscape.jpg') center/cover no-repeat;
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--gold-light);
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--cream-dark);
}

.section-dark {
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-burgundy) 100%);
    color: var(--white);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--wine-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

.section-dark .section-subtitle {
    color: var(--gold-light);
}

.wine-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(114, 47, 55, 0.15);
}

.wine-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wine-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wine-card:hover .wine-card-image img {
    transform: scale(1.1);
}

.wine-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-accent);
    color: var(--wine-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wine-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wine-card-title {
    font-size: 1.4rem;
    color: var(--wine-dark);
    margin-bottom: 0.75rem;
}

.wine-card-text {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.wine-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wine-burgundy);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.wine-card-link:hover {
    color: var(--gold-accent);
    gap: 12px;
}

.wine-card-link::after {
    content: '\2192';
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wine-burgundy) 0%, var(--wine-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--gold-accent);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--wine-dark);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.content-section {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    color: var(--wine-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-light);
}

.content-section h3 {
    color: var(--wine-burgundy);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.content-section p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image figcaption {
    background: var(--cream-dark);
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.info-box {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-left: 4px solid var(--gold-accent);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.info-box-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--wine-dark);
    margin-bottom: 0.5rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-card h4 {
    font-size: 1.2rem;
    color: var(--wine-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-light);
}

.sidebar-link {
    display: block;
    padding: 0.6rem 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: var(--wine-burgundy);
    padding-left: 10px;
}

.contact-hero {
    background: linear-gradient(135deg, rgba(74, 28, 33, 0.92) 0%, rgba(114, 47, 55, 0.88) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Wine_cellar_in_Eger%2C_Hungary.jpg/1920px-Wine_cellar_in_Eger%2C_Hungary.jpg') center/cover no-repeat;
    padding: 140px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.contact-hero p {
    color: var(--gold-light);
    font-size: 1.15rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    max-width: 600px;
    margin: 1rem auto 0;
}

.contact-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--wine-dark);
}

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--wine-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--wine-burgundy);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold-accent);
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--wine-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--cream-dark);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-accent);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.site-footer {
    background: linear-gradient(135deg, var(--wine-dark) 0%, #2D1316 100%);
    padding: 60px 0 30px;
    color: var(--cream);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand img {
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
}

.footer-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
}

.footer-description {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-accent);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(201, 169, 98, 0.2);
    margin: 2rem 0;
}

.footer-copyright,
.footer-update {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-burgundy) 100%);
    padding: 1.25rem;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h6 {
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--cream);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--gold-light);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-wine {
    background: var(--wine-burgundy);
    border: 2px solid var(--wine-burgundy);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-wine:hover {
    background: var(--wine-dark);
    border-color: var(--wine-dark);
    color: var(--gold-accent);
}

.btn-gold {
    background: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    color: var(--wine-dark);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold-accent);
}

.breadcrumb-nav {
    background: var(--cream-dark);
    padding: 1rem 0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--wine-burgundy);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.policy-content {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    color: var(--wine-dark);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-light);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p,
.policy-content ul li {
    color: var(--text-dark);
    line-height: 1.8;
}

.update-date {
    background: var(--cream-dark);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
}

.update-date strong {
    color: var(--wine-dark);
}

@media (max-width: 991.98px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .wine-card-image {
        height: 200px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
