@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
    --color-primary: #1a3a4a;
    --color-secondary: #c9a959;
    --color-accent: #8b5e3c;
    --color-bg-dark: #0f2027;
    --color-bg-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    --color-bg-light: #f5f1eb;
    --color-bg-cream: #faf8f5;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-white: #ffffff;
    --color-overlay: rgba(15, 32, 39, 0.85);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-nav: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-bg-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.2rem;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-bg-gradient);
    padding: 0;
    transition: var(--transition);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

.logo-text span {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

nav.desktop-nav a {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

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

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

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

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

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

.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 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-bg-gradient);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-nav a {
    display: block;
    font-family: var(--font-nav);
    font-size: 1rem;
    color: var(--color-white);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav a:hover {
    color: var(--color-secondary);
    padding-left: 10px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1559628233-100c798642d4?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-subtitle {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-description {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
}

.btn {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 40px;
    border: 2px solid var(--color-secondary);
    color: var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-solid {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.btn-solid:hover {
    background: transparent;
    color: var(--color-white);
}

.section {
    padding: 100px 0;
}

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

.section-header .overline {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.intro-section {
    background: var(--color-bg-light);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a95920"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: 5px;
    box-shadow: var(--shadow-strong);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-secondary);
    border-radius: 5px;
    z-index: -1;
}

.intro-content h2 {
    margin-bottom: 25px;
}

.intro-content .lead {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.features-section {
    background: var(--color-bg-gradient);
    color: var(--color-white);
}

.features-section h2,
.features-section h3 {
    color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.articles-section {
    background: var(--color-bg-cream);
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.article-main {
    background: var(--color-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.article-main:hover {
    box-shadow: var(--shadow-medium);
}

.article-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.article-main-content {
    padding: 35px;
}

.article-meta {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-main h3 {
    margin-bottom: 15px;
}

.article-main h3 a {
    color: var(--color-primary);
}

.article-main h3 a:hover {
    color: var(--color-secondary);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-small {
    background: var(--color-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 20px;
    padding: 20px;
    transition: var(--transition);
}

.article-small:hover {
    box-shadow: var(--shadow-medium);
}

.article-small img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.article-small-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-small h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.article-small h4 a {
    color: var(--color-primary);
}

.article-small h4 a:hover {
    color: var(--color-secondary);
}

.article-small .article-meta {
    margin-bottom: 0;
    font-size: 0.7rem;
}

.cta-section {
    background: var(--color-accent);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    border-color: var(--color-white);
}

.cta-section .btn:hover {
    background: var(--color-white);
    color: var(--color-accent);
}

footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.footer-column h4 {
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    padding: 25px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    flex: 1;
}

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

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

.cookie-btn {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    border: 1px solid var(--color-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.cookie-btn-accept:hover {
    background: transparent;
    color: var(--color-white);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-white);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 160px 0 80px;
    background: var(--color-bg-gradient);
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-hero p {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.breadcrumb {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

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

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.main-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-content ul,
.main-content ol {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}

.main-content li {
    margin-bottom: 8px;
}

.main-content blockquote {
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-secondary);
    padding: 25px 30px;
    margin: 30px 0;
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-accent);
}

.content-image {
    margin: 40px 0;
    position: relative;
}

.content-image img {
    border-radius: 5px;
    box-shadow: var(--shadow-medium);
}

.content-image figcaption {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 10px;
    font-style: italic;
}

.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--color-white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-secondary);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-bg-light);
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--color-text);
    font-size: 0.95rem;
}

.sidebar-widget ul li a:hover {
    color: var(--color-secondary);
}

.external-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.external-links a::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c9a959"><path d="M10 6v2H5v11h11v-5h2v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h6zm11-3v8h-2V6.413l-7.793 7.794-1.414-1.414L17.585 5H13V3h8z"/></svg>');
    background-size: contain;
}

.info-box {
    background: var(--color-bg-light);
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
    border-left: 4px solid var(--color-secondary);
}

.info-box h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-card {
    background: var(--color-white);
    border-radius: 5px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
    border-top: 3px solid var(--color-secondary);
}

.tip-card h3 {
    margin-bottom: 15px;
    margin-top: 0;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.hotel-card {
    background: var(--color-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.hotel-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-card-content {
    padding: 25px;
}

.hotel-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.hotel-card .location {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.hotel-card .price {
    font-family: var(--font-nav);
    font-weight: 600;
    color: var(--color-secondary);
}

.attraction-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.attraction-item {
    display: flex;
    gap: 25px;
    background: var(--color-white);
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
}

.attraction-item img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.attraction-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.attraction-content .distance {
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: var(--color-white);
    padding: 40px;
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

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

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: var(--color-text-light);
}

.contact-form {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: 5px;
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.update-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--color-bg-light);
}

.image-source {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

.image-source a {
    color: var(--color-text-light);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .intro-grid {
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    nav.desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-bg {
        background-attachment: scroll;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image {
        order: -1;
    }
    
    .intro-image::before {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-item {
        flex-direction: column;
    }
    
    .attraction-item img {
        width: 100%;
        height: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 20px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    .article-main img {
        height: 220px;
    }
    
    .article-small {
        flex-direction: column;
    }
    
    .article-small img {
        width: 100%;
        height: 150px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
