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

:root {
    --primary-color: #d4af37;
    --secondary-color: #2d1a0c;
    --accent-color: #8b4513;
    --text-color: #333;
    --light-bg: #f5f3f0;
    --dark-bg: #1a0f08;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

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

.main-header {
    background: linear-gradient(rgba(45, 26, 12, 0.95), rgba(26, 15, 8, 0.9)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Pilsner_Urquell_beer_glass.jpg/1920px-Pilsner_Urquell_beer_glass.jpg') center/cover;
    padding: 30px 0;
    border-bottom: 4px solid var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: var(--dark-bg);
}

.main-nav {
    position: relative;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: 0.3s;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

.nav-list li a:hover {
    color: var(--primary-color);
}

.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(26, 15, 8, 0.6), rgba(45, 26, 12, 0.7)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Pilsner_Urquell_beer_glass.jpg/1920px-Pilsner_Urquell_beer_glass.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 80px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.intro-section {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.intro-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.intro-card.featured {
    grid-column: span 2;
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.intro-card:hover .card-image img {
    transform: scale(1.1);
}

.image-source {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 3px;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.card-content p {
    margin-bottom: 20px;
    flex-grow: 1;
    font-family: 'Lora', serif;
    line-height: 1.8;
}

.card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--primary-color);
}

.features-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.feature-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'Lora', serif;
}

.page-header {
    background: linear-gradient(rgba(45, 26, 12, 0.9), rgba(26, 15, 8, 0.8)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Oktoberfest_2010_%281%29.jpg/1920px-Oktoberfest_2010_%281%29.jpg') center/cover;
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
}

.hotels-section, .festivals-section, .tasting-section {
    padding: 80px 0;
}

.hotels-grid, .festivals-timeline, .tasting-grid {
    display: grid;
    gap: 50px;
    margin-top: 50px;
}

.hotel-card, .festival-card, .tasting-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hotel-card:nth-child(even), .festival-card:nth-child(even), .tasting-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.hotel-image, .festival-image, .tasting-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.hotel-image img, .festival-image img, .tasting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-content, .festival-content, .tasting-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.hotel-content h2, .festival-content h2, .tasting-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.hotel-location, .festival-location, .tasting-duration {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.hotel-features, .festival-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.hotel-features span, .festival-details span {
    background: var(--light-bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.festival-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.festival-date .month {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}

.festival-date .year {
    font-size: 18px;
    opacity: 0.8;
}

.tasting-features {
    list-style: none;
    margin: 20px 0;
}

.tasting-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.tasting-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.info-section, .planning-section, .expert-section {
    padding: 80px 0;
    background: var(--white);
}

.info-grid, .planning-grid, .expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card, .planning-item, .expert-card {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-card h3, .planning-item h3, .expert-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.related-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.related-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.related-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.related-link:hover {
    color: var(--primary-color);
}

.booking-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.booking-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.privacy-section {
    padding: 80px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.privacy-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin: 25px 0 10px;
    color: var(--accent-color);
}

.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-family: 'Lora', serif;
}

.privacy-content ul {
    margin: 15px 0 15px 30px;
}

.privacy-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.privacy-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.privacy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.update-date {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept, .btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-accept:hover {
    background: #b8941f;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        z-index: 1000;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-card.featured {
        grid-column: span 1;
    }

    .hotel-card, .festival-card, .tasting-card {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 20px;
    }
}
