@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&family=Crimson+Pro:wght@400;500;600&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --primary-color: #1a3a52;
    --secondary-color: #c9a227;
    --accent-color: #8b2635;
    --bg-dark: #0d1b2a;
    --bg-medium: #1b263b;
    --bg-light: #415a77;
    --text-light: #e0e1dd;
    --text-muted: #778da9;
    --gradient-primary: linear-gradient(135deg, #1a3a52 0%, #0d1b2a 50%, #1b263b 100%);
    --gradient-gold: linear-gradient(90deg, #c9a227 0%, #f4d03f 50%, #c9a227 100%);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-strong: 0 8px 40px rgba(0,0,0,0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 38, 53, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.98) 0%, rgba(13, 27, 42, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-strong);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-light);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav.desktop-nav {
    display: flex;
    gap: 8px;
}

nav.desktop-nav a {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active {
    background: rgba(201, 162, 39, 0.15);
    color: var(--secondary-color);
}

nav.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav.desktop-nav a:hover::after,
nav.desktop-nav a.active::after {
    width: 60%;
}

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

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 30px;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--secondary-color);
}

main {
    margin-top: 85px;
    min-height: calc(100vh - 85px);
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 24px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.4) 0%, rgba(13, 27, 42, 0.8) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

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

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

.section {
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--secondary-color);
}

.section-header p {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px auto;
    border-radius: 2px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(145deg, rgba(27, 38, 59, 0.8), rgba(13, 27, 42, 0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: var(--shadow-strong);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.9) 100%);
}

.card-content {
    padding: 28px;
}

.card-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    background: rgba(201, 162, 39, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    font-family: 'DM Sans', sans-serif;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 14px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: linear-gradient(145deg, rgba(27, 38, 59, 0.8), rgba(13, 27, 42, 0.9));
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-4px);
}

.bento-item.large {
    grid-column: span 8;
}

.bento-item.medium {
    grid-column: span 6;
}

.bento-item.small {
    grid-column: span 4;
}

.bento-item.tall {
    grid-row: span 2;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.bento-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.bento-item .bento-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    z-index: 0;
}

.bento-item > * {
    position: relative;
    z-index: 1;
}

.seasons-section {
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.4) 0%, transparent 100%);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.season-card {
    background: linear-gradient(145deg, rgba(27, 38, 59, 0.6), rgba(13, 27, 42, 0.8));
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition);
}

.season-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.3);
}

.season-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.season-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--secondary-color);
}

.season-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.season-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.external-links {
    background: rgba(27, 38, 59, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.external-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.external-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.external-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.external-links a:hover {
    background: rgba(201, 162, 39, 0.2);
}

footer {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.95) 100%);
    padding: 80px 24px 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.update-date {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 9999;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-buttons button {
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-accept {
    background: var(--secondary-color);
    color: var(--bg-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-muted) !important;
}

.cookie-reject:hover {
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color);
}

.page-header {
    padding: 60px 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.5) 0%, transparent 100%);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.page-header p {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    color: var(--text-light);
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.content-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-section ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.image-attribution {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 8px;
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-info {
    background: linear-gradient(145deg, rgba(27, 38, 59, 0.8), rgba(13, 27, 42, 0.9));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb {
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .bento-item.large,
    .bento-item.medium {
        grid-column: span 6;
    }
    
    .bento-item.small {
        grid-column: span 6;
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    nav.desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero {
        min-height: 70vh;
        padding: 40px 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        display: flex;
        flex-direction: column;
    }
    
    .bento-item.large,
    .bento-item.medium,
    .bento-item.small {
        grid-column: auto;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 16px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 16px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .bento-item {
        padding: 24px;
    }
    
    .mobile-nav a {
        font-size: 1.4rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-image {
    width: 100%;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: var(--shadow-soft);
}

.quote-block {
    background: rgba(201, 162, 39, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 24px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.quote-block p {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

.event-list {
    list-style: none;
    padding: 0;
}

.event-list li {
    padding: 20px;
    background: rgba(27, 38, 59, 0.5);
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 3px solid var(--secondary-color);
}

.event-list li strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}
