:root {
    /* Original Site Brand Colors */
    --primary: #04AA6D;
    --primary-dark: #038857;
    --dark: #213a2b;
    --dark-alt: #1a2f22;
    --light: #f4f7f5;
    --text: #213a2b;
    --text-light: #526f60;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.text-center {
    text-align: center;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 1rem 0 2rem;
}

.accent-line.center {
    margin: 1rem auto 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.dark-bg {
    background-color: var(--dark);
    color: var(--white);
}

.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    transition: var(--transition);
    border-radius: 4px;
}

.navbar.scrolled .logo img {
    height: 45px;
}

.navbar.solid-nav {
    background: var(--dark);
    padding: 0.8rem 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-links a,
.navbar.solid-nav .nav-links a {
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .btn-book {
    background: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    color: var(--white);
    text-shadow: none;
}

.nav-links .btn-book::after {
    display: none;
}

.nav-links .btn-book:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../img/giraffeonplains.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-primary i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Details */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.intro-images {
    position: relative;
    height: 500px;
}

.img-float {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    object-fit: cover;
}

.img-1 {
    width: 70%;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-2 {
    width: 60%;
    height: 300px;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 10px solid var(--light);
}

.img-float:hover {
    transform: translateY(-10px);
    z-index: 4;
}

/* Adventure Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.adventure-card {
    background: var(--dark-alt);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 420px;
    transition: var(--transition);
}

.adventure-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-img {
    height: 50%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.adventure-card:hover .card-img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    height: 50%;
    background: var(--dark-alt);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.card-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.adventure-card:hover .card-link::after {
    transform: translateX(8px);
}

/* Footer & Subpages */
.sub-page-hero {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-content {
    padding: 4rem 0;
}

.content-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.footer-brand p {
    color: #aaa;
    max-width: 320px;
}

.footer h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: #111;
    padding: 1.5rem 0;
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-images {
        margin-top: 2rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .navbar.scrolled .hamburger {
        color: var(--white);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .img-2 {
        width: 80%;
    }

    .img-1 {
        width: 90%;
    }
}