/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    color: white;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: #f0f0f0;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

nav a:not(.nav-btn):hover {
    color: #ffcc00;
}

nav a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

nav a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 25px;
    background: #ffcc00;
    color: #111 !important;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 75px;
        right: 5%;
        padding: 30px;
        border-radius: 12px;
        width: 250px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        gap: 20px;
    }

    nav a {
        margin: 0;
        text-align: center;
        width: 100%;
        font-size: 16px;
    }

    .menu-toggle {
        display: flex;
    }
}

.serengeti-page {
    /* Background image settings */
    background-image: url('img/tara.jpg'); /* Replace with your image */
    background-size: cover;       /* Make image cover whole section */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* No repeating */
    background-attachment: fixed; /* Optional: parallax effect */
    
    /* Optional: overlay for readability */
    position: relative;
    z-index: 1;
    color: #fff; /* default text color */
}

.serengeti-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
    z-index: -1;
}

/* Ensure text and content stay above overlay */
.serengeti-page .serengeti-container {
    position: relative;
    z-index: 2;
}


/* ===== FOOTER ===== */
footer {
    background: #111;
    color: #b0b0b0;
    padding: 80px 5% 30px;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3, .footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #ffcc00;
    margin-top: 10px;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-logo {
    width: 160px;
    margin-top: 20px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.socials a img {
    width: 18px;
    height: 18px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.socials a:hover {
    background: #ffcc00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 5% 30px;
    }
    .footer-container {
        text-align: center;
    }
    .footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
        margin: 10px auto 0;
    }
    .footer-logo {
        margin: 20px auto;
    }
    .socials {
        justify-content: center;
    }
}

/* ===== SERENGETI PAGE STYLES ===== */
.serengeti-intro {
    padding: 120px 20px 60px 20px; /* push down for fixed header */
    text-align: center;
   
}

.serengeti-intro h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase !important;
}

.serengeti-intro p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.serengeti-img {
    width: 80%;
    max-width: 900px;
    border-radius: 12px;
    margin-top: 20px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 60px 10%;
}

.package-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.package-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.package-card p {
    margin-bottom: 15px;
    color: #555;
}

.btn-learn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-learn:hover {
    background: #e6b800;
}

/* Container for split layout */
.serengeti-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 120px 10%; /* push down for fixed header */
    flex-wrap: wrap;
    opacity: 0; /* initial state for fade-in */
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

/* Left side text */
.serengeti-text {
    flex: 1 1 400px;
}

.serengeti-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
}

.serengeti-text p {
    font-size: clamp(16px, 2vw, 20px);
    color: #f3eeee;
    line-height: 1.6;
}

/* Right side map */
.serengeti-map {
    flex: 1 1 400px;
    text-align: center;
     background-color: #e4e8ec;
}

.serengeti-map img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .serengeti-container {
        flex-direction: column-reverse;
        padding: 80px 5%;
        text-align: center;
    }

    .serengeti-text {
        margin-top: 20px;
    }
}

/* Fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.serengeti-highlights {
    padding: 60px 20px;
    text-align: center;
    
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.highlight-card h3 {
    margin-bottom: 15px;
    color: #e4e8ec;
}

.highlight-card p {
    color: #f9f5f5;
    font-size: 15px;
    line-height: 1.5;
}


.serengeti-regions {
    padding: 60px 20px;
    text-align: center;
    
    
}

.regions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.region-card {
    
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    max-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.region-card h3 {
    margin-bottom: 15px;
    color: #ffffff;
    
}

.region-card p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.region-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}


.view-all {
    text-align: center;
    margin-top: 30px;
}
.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}
.view-all-btn:hover {
    background: #e6b800;
}