/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #071b17;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================
   HERO
========================================= */

.shimba-hero {
    min-height: 100vh;
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 15, .90),
            rgba(3, 18, 15, .55),
            rgba(3, 18, 15, .70)
        ),
        url("img/Shimba hills 1.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: min(1200px, 92%);
    margin: 25px auto;

    padding: 15px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 50px;

    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo span {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 800;
}

.logo small {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #e8b83d;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.nav-links a:hover {
    color: #e8b83d;
}

.nav-book {
    background: #e8b83d;
    color: #071b17;

    padding: 12px 22px;

    border-radius: 30px;
    font-weight: 700;

    transition: .3s;
}

.nav-book:hover {
    transform: translateY(-2px);
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    width: min(1100px, 92%);
    margin: auto;

    text-align: center;

    padding: 70px 0 100px;
}

.limited-badge {
    display: inline-flex;
    gap: 10px;

    padding: 10px 20px;

    border-radius: 50px;

    background: rgba(232,184,61,.16);
    border: 1px solid rgba(232,184,61,.5);

    color: #f4c75b;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

.eyebrow {
    color: #f4c75b;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 9vw, 110px);

    line-height: .95;

    margin: 18px 0;
}

.hero-content h1 span {
    display: block;
    color: #f4c75b;
}

.hero-location {
    color: #f5d58a;
    font-size: 20px;
    font-weight: 700;
}

.hero-description {
    max-width: 760px;
    margin: 25px auto;

    color: rgba(255,255,255,.85);

    font-size: 18px;
}


/* =========================================
   TRIP DETAILS
========================================= */

.trip-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    margin: 35px 0;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 18px;

    backdrop-filter: blur(12px);
}

.detail-card i {
    color: #e8b83d;
    font-size: 20px;
}

.detail-card small {
    display: block;
    color: rgba(255,255,255,.6);
    font-size: 11px;
}

.detail-card strong {
    display: block;
    font-size: 15px;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 28px;

    border-radius: 50px;

    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition: .3s;
}

.btn-primary {
    background: #e8b83d;
    color: #071b17;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(232,184,61,.25);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);

    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,.15);
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section-container {
    width: min(1100px, 90%);
    margin: auto;
}

.intro-section,
.itinerary-section,
.carry-section {
    padding: 110px 0;
}

.intro-section {
    background: #0b241f;
}

.section-label {
    color: #e8b83d;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
}

h2 span {
    color: #e8b83d;
}

.intro-text,
.section-heading p {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    margin-top: 20px;
}


/* =========================================
   EXPERIENCE CARDS
========================================= */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.experience-card {
    padding: 35px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 25px;

    transition: .3s;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232,184,61,.5);
}

.experience-card i {
    font-size: 32px;
    color: #e8b83d;
}

.experience-card h3 {
    margin: 20px 0 10px;
}

.experience-card p {
    color: rgba(255,255,255,.65);
}


/* =========================================
   ITINERARY
========================================= */

.itinerary-section {
    background: #071b17;
}

.timeline {
    max-width: 800px;
    margin: auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;

    padding-bottom: 45px;
}

.timeline-number {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #e8b83d;
    color: #071b17;

    font-weight: 800;
}

.timeline-content {
    padding: 25px;

    border-radius: 20px;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
}

.timeline-content span {
    color: #e8b83d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-content h3 {
    margin: 8px 0;
    font-size: 24px;
}

.timeline-content p {
    color: rgba(255,255,255,.65);
}


/* =========================================
   WHAT TO CARRY
========================================= */

.carry-section {
    background: #0b241f;
}

.carry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.carry-item {
    padding: 22px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 18px;
}

.carry-item i {
    color: #e8b83d;
    font-size: 22px;
}


/* =========================================
   BOOKING
========================================= */

.booking-section {
    padding: 120px 0;

    background:
        linear-gradient(
            rgba(5,24,20,.9),
            rgba(5,24,20,.9)
        ),
        url("images/shimba-hills-booking.jpg");

    background-size: cover;
    background-position: center;
}

.booking-container {
    width: min(900px, 90%);
    margin: auto;

    text-align: center;

    padding: 70px 40px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 30px;

    backdrop-filter: blur(18px);
}

.booking-content p {
    max-width: 650px;
    margin: 20px auto;

    color: rgba(255,255,255,.7);
}

.booking-price {
    margin: 30px 0;
}

.booking-price small,
.booking-price span {
    display: block;
    color: rgba(255,255,255,.6);
}

.booking-price strong {
    display: block;
    font-size: 42px;
    color: #e8b83d;
}

.booking-note {
    font-size: 12px !important;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 60px 20px;

    text-align: center;

    background: #04110e;

    color: rgba(255,255,255,.7);
}

.footer-logo strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 30px;

    color: #ffffff;
}

.footer-logo span {
    color: #e8b83d;
    font-size: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;

    margin: 25px 0;
}

.social-links a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,.08);

    transition: .3s;
}

.social-links a:hover {
    background: #e8b83d;
    color: #071b17;
}

.copyright {
    font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .navbar {
        border-radius: 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding-top: 40px;
    }

    .experience-grid,
    .carry-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
    }

    .detail-card {
        width: 100%;
        justify-content: center;
    }

    .booking-container {
        padding: 50px 20px;
    }

}