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

:root {
    --primary-dark: #1a2332;
    --primary-blue: #2c4a6e;
    --accent-gold: #c9a962;
    --accent-copper: #b87333;
    --snow-white: #f8f9fa;
    --ice-blue: #e8f0f5;
    --forest-green: #2d5a47;
    --mountain-gray: #6b7b8a;
    --text-dark: #1e2a3a;
    --text-light: #f5f5f5;
    --gradient-alpine: linear-gradient(135deg, #1a2332 0%, #2c4a6e 50%, #3d6d99 100%);
    --gradient-sunset: linear-gradient(180deg, #ff6b35 0%, #f7931e 50%, #c9a962 100%);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-strong: 0 8px 40px rgba(0,0,0,0.2);
    --transition-smooth: 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;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--ice-blue);
    min-height: 100vh;
    overflow-x: hidden;
}

.page-wrapper {
    background: 
        linear-gradient(135deg, rgba(26,35,50,0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(201,169,98,0.05) 0%, transparent 50%),
        var(--ice-blue);
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-alpine);
    padding: 0;
    box-shadow: var(--shadow-strong);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--accent-gold);
}

nav.main-nav {
    display: flex;
    gap: 0.5rem;
}

nav.main-nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
    width: 80%;
}

nav.main-nav a:hover,
nav.main-nav a.active {
    color: var(--accent-gold);
    background: rgba(255,255,255,0.1);
}

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

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.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;
    right: 0;
    bottom: 0;
    background: var(--gradient-alpine);
    z-index: 999;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-nav a {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--text-light);
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-smooth);
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--accent-gold);
    padding-left: 3rem;
}

main {
    padding-top: 90px;
    min-height: calc(100vh - 200px);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26,35,50,0.4) 0%, rgba(26,35,50,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--accent-copper);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,169,98,0.4);
}

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

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

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

.section-header p {
    color: var(--mountain-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--snow-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    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-smooth);
}

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

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.8rem;
}

.card-content p {
    color: var(--mountain-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link::after {
    content: '\2192';
    transition: var(--transition-smooth);
}

.card-link:hover::after {
    transform: translateX(5px);
}

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

.feature-large {
    grid-column: span 8;
    background: var(--snow-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-large .feature-image {
    height: 100%;
    min-height: 400px;
}

.feature-large .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-large .feature-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-stack {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-small {
    flex: 1;
    background: var(--snow-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-small:hover {
    transform: translateX(10px);
}

.feature-small-inner {
    display: flex;
    height: 100%;
}

.feature-small .feature-image {
    width: 40%;
    min-height: 180px;
}

.feature-small .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-small .feature-content {
    width: 60%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-small h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-small p {
    font-size: 0.95rem;
    color: var(--mountain-gray);
    margin-bottom: 0;
}

.info-banner {
    background: var(--gradient-alpine);
    padding: 4rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.info-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,98,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.info-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.info-item {
    text-align: center;
    color: var(--text-light);
}

.info-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item .label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.content-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h1 {
    margin-bottom: 1rem;
}

.update-date {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--mountain-gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.article-content {
    background: var(--snow-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.article-content h2 {
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.article-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.article-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.image-caption {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    color: var(--mountain-gray);
    padding: 0.8rem 1rem;
    background: var(--ice-blue);
    text-align: center;
}

.external-links {
    background: var(--ice-blue);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.external-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.external-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.external-links li {
    margin-bottom: 0.5rem;
}

.external-links a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
}

.external-links a::before {
    content: '\2197';
    margin-right: 0.5rem;
}

.breadcrumb {
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--mountain-gray);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
}

.breadcrumb a {
    color: var(--primary-blue);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.calendar-month {
    background: var(--snow-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.calendar-month:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.calendar-month h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

.calendar-month ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.calendar-month li {
    font-size: 0.95rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-month li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info {
    background: var(--snow-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--ice-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mountain-gray);
    margin-bottom: 0.3rem;
}

.contact-text p {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
}

.contact-text a {
    font-family: 'Source Sans 3', sans-serif;
}

.contact-map {
    background: var(--snow-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about h3 span {
    color: var(--accent-gold);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

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

.cookie-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-gold);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.cookie-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cookie-accept:hover {
    background: var(--accent-copper);
    color: var(--text-light);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--text-light);
    background: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .feature-large .feature-image {
        min-height: 300px;
    }
    
    .feature-stack {
        grid-column: span 1;
        flex-direction: row;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav.main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-stack {
        flex-direction: column;
    }
    
    .feature-small-inner {
        flex-direction: column;
    }
    
    .feature-small .feature-image {
        width: 100%;
        min-height: 150px;
    }
    
    .feature-small .feature-content {
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .info-banner-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-banner-content {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}
