@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600&display=swap");

:root {
    color-scheme: light;
    --font-display: "Fraunces", serif;
    --font-body: "Manrope", sans-serif;
    --bg: #f7f3ef;
    --bg-elev: #ffffff;
    --bg-accent: #f2e6d9;
    --text: #1b1b1b;
    --muted: #5c5c5c;
    --accent: #e26d5a;
    --accent-strong: #b14837;
    --border: rgba(27, 27, 27, 0.08);
    --shadow: 0 20px 40px rgba(27, 27, 27, 0.12);
    --glow: 0 0 0 2px rgba(226, 109, 90, 0.15);
}

[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0f1012;
    --bg-elev: #15161a;
    --bg-accent: #1d1f26;
    --text: #f5f4f1;
    --muted: #b3b1ad;
    --accent: #f0a261;
    --accent-strong: #d6793f;
    --border: rgba(245, 244, 241, 0.12);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    --glow: 0 0 0 2px rgba(240, 162, 97, 0.18);
}

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

body {
    font-family: var(--font-body);
    background:
        radial-gradient(800px 400px at 10% -10%, rgba(226, 109, 90, 0.18), transparent 60%),
        radial-gradient(700px 450px at 90% 10%, rgba(33, 98, 98, 0.16), transparent 70%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45));
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

[data-theme="dark"] .site-header {
    background: linear-gradient(120deg, rgba(15, 16, 18, 0.85), rgba(21, 22, 26, 0.6));
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    box-shadow: var(--glow);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    border: 1px solid var(--border);
    background: var(--bg-elev);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--shadow);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero {
    padding: 5rem 0 3.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: fadeUp 0.9s ease both;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent-strong);
    font-weight: 700;
}

.hero h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--muted);
    max-width: 40ch;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--glow);
}

.btn-secondary {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.8rem 1rem;
    min-width: 130px;
}

.stat-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-label {
    color: var(--muted);
    font-size: 0.85rem;
}

.hero-card {
    background: linear-gradient(160deg, var(--bg-elev), var(--bg-accent));
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: floatIn 1s ease both;
}

.card-title {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--muted);
}

.card-subtitle {
    color: var(--muted);
}

.card-meta {
    display: flex;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.featured-destinations {
    padding: 3rem 0 5rem;
}

.section-title {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
}

.section-title p {
    color: var(--muted);
    max-width: 56ch;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.destination-card {
    background: var(--bg-elev);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.destination-card img {
    height: 190px;
    object-fit: cover;
}

.card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chip-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chip {
    background: var(--bg-accent);
    color: var(--text);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.site-footer {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elev);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-note {
    color: var(--muted);
}

.about-section {
    padding: 3rem 0 5rem;
}

.about-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: start;
}

.about-cards {
    display: grid;
    gap: 1rem;
}

.about-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.contact-hero {
    padding: 4.5rem 0 5rem;
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.contact-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.highlight {
    background: var(--bg-elev);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
}

.highlight-title {
    display: block;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.highlight-body {
    color: var(--muted);
}

.contact-card {
    background: var(--bg-elev);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    color: var(--text);
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.comments-section {
    padding: 2.5rem 0 5rem;
}

.comments-section #disqus_thread {
    background: var(--bg-elev);
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    70% {
        opacity: 1;
        transform: translateY(-6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }
    .header-inner {
        justify-content: space-between;
    }
}

@media (max-width: 700px) {
    .hero {
        padding-top: 3.5rem;
    }
    .hero-actions {
        width: 100%;
    }
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
