﻿:root {
    --ds-accent: #5bc0de;
    --ds-accent-hover: #219abd;
    --ds-dark: #222222;
    --ds-muted: #afafaf;
    --ds-ink: #1a1a1a;
    --ds-white: #ffffff;
}

body[data-layout="landing"] {
    --bg: #f7f7f7;
    --bg-deep: #eeeeee;
    --ink: #1a1a1a;
    --muted: #666666;
    --accent: #5bc0de;
    --accent-soft: #d9f1f8;
    --line: rgba(0, 0, 0, 0.08);
    --card: #ffffff;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    --radius: 4px;
    --font: "Josefin Sans", sans-serif;
    --display: "Poppins", sans-serif;
    --header-bg: rgba(255, 255, 255, 0.95);
    --glow-1: transparent;
    --glow-2: transparent;
}

body[data-layout="landing"] .site-bg { display: none; }

/* Header */
body[data-layout="landing"] .ds-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

body[data-layout="landing"].is-home .ds-header {
    position: absolute;
    left: 0;
    right: 0;
    background: transparent;
    border: 0;
}

body[data-layout="landing"] .ds-header-inner {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

body[data-layout="landing"] .ds-logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
}

body[data-layout="landing"]:not(.is-home) .ds-logo img {
    filter: invert(1);
    height: 36px;
}

body[data-layout="landing"] .ds-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

body[data-layout="landing"] .ds-nav a {
    color: var(--ds-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

body[data-layout="landing"].is-home .ds-nav a { color: rgba(255,255,255,0.9); }
body[data-layout="landing"] .ds-nav a:hover,
body[data-layout="landing"] .ds-nav a.is-active { color: var(--ds-accent); }

body[data-layout="landing"] .ds-nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: inherit;
    font-size: 1.4rem;
    cursor: pointer;
}

body[data-layout="landing"].is-home .ds-nav-toggle { color: #fff; }

/* Hero */
.ds-hero {
    min-height: 100vh;
    width: 100%;
    background-image:
        linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.35)),
        var(--ds-hero-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    align-items: end;
    justify-items: center;
    padding: 0 1rem 12vh;
    text-align: center;
    color: #fff;
    animation: dsFade 1s ease both;
}

.ds-hero-rotator {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: clamp(2.4rem, 8vw, 5rem);
    line-height: 1.05;
    margin: 0 0 0.4rem;
    min-height: 1.1em;
}

.ds-hero-sub {
    font-family: "Poppins", sans-serif;
    font-style: italic;
    font-size: clamp(1.1rem, 3vw, 1.9rem);
    margin: 0 0 1.5rem;
    opacity: 0.95;
}

.ds-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.ds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid #fff;
    color: #fff;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.ds-btn-primary {
    background: var(--ds-accent);
    border-color: var(--ds-accent);
}

.ds-btn-primary:hover { background: var(--ds-accent-hover); border-color: var(--ds-accent-hover); color: #fff; }
.ds-btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

@keyframes dsFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sections */
.ds-section {
    padding: 4rem 0;
}

.ds-section-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    margin: 0 0 2rem;
    color: var(--ds-ink);
}

.ds-section-title strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: 0.04em;
    margin-top: 0.35rem;
}

.ds-wrap {
    width: min(1024px, calc(100% - 2rem));
    margin: 0 auto;
}

.ds-brands-grid,
.ds-tours-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.ds-brand-card,
.ds-tour-card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ds-brand-card {
    width: 180px;
    height: 180px;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.ds-brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ds-brand-card:hover,
.ds-tour-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.ds-tours {
    background: var(--ds-dark);
    color: #fff;
}

.ds-tours .ds-section-title { color: #fff; }

.ds-tour-card {
    width: 200px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #2a2a2a;
}

.ds-tour-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.ds-tour-card .badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: #1e87f0;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.45rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.ds-tour-card .badge.xc { background: #32d296; }

.ds-tour-card h3 {
    margin: 0;
    padding: 0.85rem 0.75rem;
    font-size: 1.05rem;
    font-family: "Josefin Sans", sans-serif;
}

.ds-blog-list article {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    animation: dsRise 0.6s ease both;
}

.ds-blog-list h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.5rem;
    margin: 0 0 0.4rem;
}

.ds-blog-list h2 a {
    color: inherit;
    text-decoration: none;
}

.ds-blog-list h2 a:hover { color: var(--ds-accent); }

.ds-blog-list .meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.ds-blog-list .more {
    color: var(--ds-accent);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

/* Inner pages */
body[data-layout="landing"] .ds-main {
    min-height: calc(100vh - 220px);
}

body[data-layout="landing"] .ds-main > .ds-wrap {
    padding: 2.5rem 0 4rem;
}

body[data-layout="landing"] .prose h1,
body[data-layout="landing"] .section h1 {
    font-family: "Josefin Sans", sans-serif;
}

body[data-layout="landing"] .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

body[data-layout="landing"] .about-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    display: block;
}

body[data-layout="landing"] .about-grid .about-copy {
    padding: 2rem;
}

body[data-layout="landing"] .gallery-trigger,
body[data-layout="landing"] .gallery-trigger img {
    border-radius: 2px;
}

/* Footer */
body[data-layout="landing"] .ds-footer {
    background: var(--ds-dark);
    color: #ccc;
    padding: 2.5rem 1rem;
    text-align: center;
}

body[data-layout="landing"] .ds-footer a {
    color: #ccc;
    text-decoration: none;
}

body[data-layout="landing"] .ds-footer a:hover { color: var(--ds-accent); }

body[data-layout="landing"] .ds-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

body[data-layout="landing"] .ds-social img {
    height: 18px;
    vertical-align: middle;
}

@keyframes dsRise {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 800px) {
    body[data-layout="landing"] .ds-nav { display: none; }
    body[data-layout="landing"] .ds-nav.is-open {
        display: flex;
        position: absolute;
        top: 72px;
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        background: #111;
        padding: 1rem;
        border-radius: 8px;
    }
    body[data-layout="landing"] .ds-nav-toggle { display: block; }
    body[data-layout="landing"] .about-grid { grid-template-columns: 1fr; }
}

