@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CSS variables for Bright High-Contrast Theme --- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafaf7;
    --accent-gold: #f97316;
    --accent-gold-hover: #ea580c;
    --accent-green: #0284c7;
    --accent-green-light: #0ea5e9;
    --accent-primary: #0284c7;
    --accent-cta: #f97316;
    --text-main: #0f172a;
    --text-muted: #334155;
    --glass-bg: rgba(255, 255, 255, 0.96);
    --glass-border: rgba(2, 132, 199, 0.15);
    --card-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-secondary);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Container & Layout Boundaries --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.bg-white {
    background-color: #ffffff;
}

.text-center { text-align: center; }

.reading-column {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #475569;
}

/* --- Header & Sticky Navigation Bar --- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: #0284c7;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #f1f5f9;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background-color: #f97316;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background-color: #0284c7;
    color: #ffffff;
    border: none;
}

.btn-secondary:hover {
    background-color: #0369a1;
    transform: translateY(-2px);
}

/* --- Grids & Cards --- */
.poi-grid, .tours-grid, .activity-grid, .practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.poi-card, .tour-card, .activity-card, .practical-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.poi-card:hover, .tour-card:hover, .activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    border-color: #0284c7;
}

.poi-card img, .tour-card-image-wrap img, .activity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.tour-card-image-wrap {
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f97316;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.poi-card-body, .tour-card-body, .activity-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.poi-card-body h3, .tour-card-title, .activity-card-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.poi-facts, .practical-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.65;
}

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tour-card-price {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 1rem 0;
}

.tour-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.tour-card-actions .btn {
    flex: 1;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
}

.activity-link {
    margin-top: auto;
    font-weight: 700;
    color: #0284c7;
    font-size: 0.95rem;
}

/* --- Editorial & Formatting Components --- */
.drop-cap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    float: left;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 4px;
    color: #0284c7;
    font-weight: 700;
}

.tip-box {
    background: #f0f9ff;
    border-left: 4px solid #0284c7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.tip-box h4 {
    color: #0284c7;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.pullquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #0f172a;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    padding: 1.5rem 0;
    margin: 2.5rem 0;
    text-align: center;
}

.site-visual {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.site-visual img {
    border-radius: 12px;
    width: 100%;
}

figcaption {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
    text-align: center;
}

.image-feature {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin: 2.5rem 0;
}

.image-feature img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* --- Table Styling --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
}

/* --- Subpage Layout --- */
.subpage-hero {
    background: #0f172a;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.subpage-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.subpage-hero p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- Author Bio Block --- */
.author-bio-block {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.author-avatar-wrap img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0284c7;
}

/* --- Footer --- */
.site-footer {
    background: #0f172a;
    color: #f8fafc;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-subheading {
    color: #f97316;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-desc, .footer-contact, .footer-address {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-email a {
    color: #38bdf8;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .image-feature { flex-direction: column; }
    .image-feature img { width: 100%; height: 200px; }
    .author-bio-block { flex-direction: column; text-align: center; }
}


/* --- Burger Menu Button & Mobile Drawer --- */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger span {
    width: 32px;
    height: 3px;
    background-color: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid #e2e8f0;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1000;
        gap: 1.25rem;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
}
