:root {
    --primary-color: #1a3a5c;
    --secondary-color: #c9a227;
    --accent-color: #8b4513;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --bg-cream: #f8f5f0;
    --bg-light: #fdfcfa;
    --bg-dark: #1a2a3a;
    --border-color: #e8e4de;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    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-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a6c 100%);
    padding: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-list a {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-light);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-color);
    color: #fff;
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list a {
    display: block;
    padding: 15px 10px;
    color: var(--text-color);
    font-weight: 500;
}

.mobile-nav-articles {
    padding: 20px;
    background: var(--bg-cream);
}

.mobile-nav-articles h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mobile-nav-articles ul {
    list-style: none;
}

.mobile-nav-articles li {
    margin-bottom: 10px;
}

.mobile-nav-articles a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.site-main {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.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;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,58,92,0.85) 0%, rgba(42,74,108,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.hero-cta:hover {
    background: #d4ad2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.intro-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.destinations-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 25px;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:nth-child(1) {
    grid-column: span 5;
}

.destination-card:nth-child(2) {
    grid-column: span 4;
}

.destination-card:nth-child(3) {
    grid-column: span 3;
}

.destination-card:nth-child(4) {
    grid-column: span 4;
}

.destination-card:nth-child(5) {
    grid-column: span 8;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.destination-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
}

.destination-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.7));
}

.article-header-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.article-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.article-meta {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.article-body {
    padding: 60px 30px;
}

.article-body h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    display: block;
}

.article-image figcaption {
    padding: 15px 20px;
    background: var(--bg-cream);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-color), #2a4a6c);
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
}

.info-box h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-box p,
.info-box li {
    color: rgba(255,255,255,0.9);
}

.info-box a {
    color: var(--secondary-color);
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 20px;
    background: var(--bg-cream);
    border-radius: 25px;
    margin-top: 10px;
}

.external-link:hover {
    background: var(--secondary-color);
    color: #fff;
}

.contact-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.contact-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a6c 100%);
}

.contact-header-content {
    text-align: center;
    color: #fff;
}

.contact-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
    word-break: break-all;
}

.faq-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: default;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-update {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px;
    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: 30px;
}

.cookie-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cookie-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--secondary-color);
    color: #fff;
}

.cookie-accept:hover {
    background: #d4ad2f;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: #fff;
}

.policy-content {
    padding: 60px 30px;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 15px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .destinations-mosaic {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .destination-card:nth-child(1),
    .destination-card:nth-child(2) {
        grid-column: span 3;
    }
    
    .destination-card:nth-child(3),
    .destination-card:nth-child(4) {
        grid-column: span 3;
    }
    
    .destination-card:nth-child(5) {
        grid-column: span 6;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-container {
        height: 70px;
    }
    
    .site-main {
        padding-top: 70px;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destinations-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .destination-card,
    .destination-card:nth-child(1),
    .destination-card:nth-child(2),
    .destination-card:nth-child(3),
    .destination-card:nth-child(4),
    .destination-card:nth-child(5) {
        grid-column: span 1;
        height: 250px;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
