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

:root {
    --bg: #f7efe2;
    --surface: #fff9ee;
    --text: #2c1a10;
    --muted: #6f5846;
    --accent: #c54c1c;
    --accent-2: #0f7365;
    --line: #e8d8c2;
    --shadow: 0 18px 48px rgba(65, 33, 16, 0.12);
}

body {
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3 {
    font-family: "Fraunces", serif;
    line-height: 1.1;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.kicker {
    color: var(--accent-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* Navbar */
.navbar {
    background: rgba(255, 249, 238, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo svg {
    width: 26px;
    height: 26px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    position: relative;
    color: #fffdf8;
    padding: 8rem 0 7rem;
    text-align: left;
    background: url('images/cover.jpg') center 30% / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(20, 10, 5, 0.35) 0%,
        rgba(20, 10, 5, 0.25) 40%,
        rgba(20, 10, 5, 0.75) 100%);
}

.hero-content {
    position: relative;
}

.hero .kicker {
    color: #ffd9a0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 1.1rem;
    max-width: 14ch;
    text-shadow: 0 3px 26px rgba(0, 0, 0, 0.45);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 48ch;
    color: rgba(255, 249, 238, 0.95);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-note {
    margin-top: 0.9rem;
    font-size: 0.9rem;
    color: rgba(255, 249, 238, 0.8);
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(120deg, #d6662f, var(--accent));
    color: #fff;
    border: none;
    padding: 0.85rem 2.1rem;
    font-size: 1rem;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 26px rgba(65, 33, 16, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(65, 33, 16, 0.32);
}

.cta-button.large {
    padding: 1.05rem 3rem;
    font-size: 1.15rem;
}

/* Destinations */
.destinations {
    padding: 5rem 0;
}

.destinations h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--muted);
    max-width: 60ch;
    margin-bottom: 2.2rem;
}

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

.dest-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-photo {
    height: 170px;
    background-size: cover;
    background-position: center;
}

.dest-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.dest-body small {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-2);
    font-weight: 700;
    font-size: 0.72rem;
}

.dest-body h3 {
    font-size: 1.4rem;
    margin: 0.3rem 0 0.5rem;
}

.dest-body p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* About */
.about {
    padding: 5rem 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.about h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 1.2rem;
}

.about p {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 58ch;
}

.highlights {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.highlights li {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    padding-left: 1.6rem;
    position: relative;
}

.highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent-2);
}

.about-cover img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(65, 33, 16, 0.28);
    display: block;
}

/* CTA Section */
.cta-section {
    position: relative;
    color: #fffdf8;
    padding: 5rem 0;
    text-align: center;
    background:
        linear-gradient(rgba(20, 10, 5, 0.62), rgba(20, 10, 5, 0.72)),
        url('images/sahara.jpg') center 70% / cover no-repeat;
}

.cta-section h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 249, 238, 0.92);
}

.small-text {
    font-size: 0.9rem !important;
    opacity: 0.85;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--text);
    color: rgba(255, 249, 238, 0.85);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 820px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .about-cover {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5.5rem 0 5rem;
    }

    .nav-links {
        gap: 1.1rem;
        font-size: 0.92rem;
    }
}
