/* general */
:root{
--accent:#f26b1d;
--accent-dark:#a12a20;
--light-gray:#f8f8f8;
--radius: 12px;
--hero-height:88vh;
--max-fade-scroll:400;
}
html{
    scroll-behavior: smooth;
    box-sizing: border-box;
}
*,*::before, *::after {
    box-sizing: inherit;
}
body{
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; 
    color: #222; 
    margin:0; 
    line-height:1.5;
    background: #fff;
}

.section-title{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0 0 20px;
    color: #222;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-transform: none;
}
.section-title::after{
    content: '';
    display: block;
    width: 6px;
    height: 4px;
    background: #730C02;
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-sub{
    max-width: 760px;
    margin: 0 auto 28px;
    color: #666;
    text-align: center;
}
/* small screen spacing */
@media (max-width: 768px){
    section{
        padding: 48px 16px;
    }
    .section-title{
        font-size: 22px;
    }
}
/* Site header */
.site-header{
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.site-header .logo{
    height: 100px;
}
.site-header .logo img{
    display: block;
    height: 100px;
    width: auto;
}
/* Desktop Nav links */
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.nav-links ul li{
    list-style: none;
}
.nav-links ul li a{
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}
.nav-links ul li::after{
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent);
    display: block;
    margin: auto;
    transition: 0.5s ease-in-out;
}
.nav-links ul li:hover::after{
    width: 100%;
}
/* Hide Hambuger on Desktop */
nav .fa-solid {
    display: none;
}
.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}
/* Mobile Navigation */
@media (max-width:600px){
    .nav-links{
        position: absolute;
        background: var(--accent);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        padding-top: 60px;
        transition: 0.5s ease;

    }
    .nav-links ul{
        flex-direction: column;
        gap: 0;
        padding: 30px;
    }
    .nav-links ul li{
        margin: 15px 0;
    }
    .nav-links ul li a{
        color: #fff;
        font-size: 18px;
    }
  nav .fa-solid{
    display: block;
    color: #000;
    font-size: 22px;
    cursor: pointer;
  }
}
/* Hero section */
.hero{
    position: relative;
    width: 100%;
    height: var(--hero-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.36), rgba(0,0,0,0.36)),url("/image/animal-serengeti.webp") center/cover fixed no-repeat;
    overflow: hidden;
}
@media (min-width: 900px){
    .hero{
        background-attachment: fixed;
    }
}
.hero-content{
    max-width: 800px;
    padding: 12px 20px;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    will-change: opacity, transform;
}
.hero-content h1{
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: 0.2px;
    text-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.hero-content .lead{
    margin: 0 0 20px;
    color: rgba(255,255,255,0.92);
    font-size: clamp(0.96rem, 2.4vw, 1.05rem);
}
.cta-btn{
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 28px;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(192,57,43,0.12);
    transition: background 0.18s ease, transform 0.08s ease;
}
.cta-btn:hover{
    background: var(--accent-dark);
    transform: translateY(-3px);
}
/* Reduce motion/movement especial transition */
@media (prefers-reduced-motion: reduce){
    .hero-content{
        transition: none;
    }
    .cta-btn{
        transition: none;
    }
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
  
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}
  
/* Planned Journey */
.Planned-journey{
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.03);
}
.day{
    border-bottom: 1px solid #e6e6e6;
    padding: 16px 0;
}
.day:last-child{
    border-bottom: none;
}
.day h3{
    color: var(--accent-dark);
    margin: 0 0 6px;
}
 /* Gallary */
.gallary{
    padding-top: 56px;
    padding-bottom: 56px;
    background: #f9f9f9;
}
.gallary-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallary-grid img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallary-grid img:hover{
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* small screen */
@media (max-width: 600px){
    .gallary-grid img{
        height: 160px;
    }
    .hero{
        height: 72vh;
    }
}

/* Video */
.video-overview{
    padding: 36px;
    max-width: 1200px;
    margin:auto;
    background: var(--light-gray);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(0,0,0,0.03);
}
.video-wrapper{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    
}
.video-wrapper video{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: none;
    display: block;
}

/* Map of Destination */
.location-map{
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    background: var(--light-gray);
}
.map-wrapper{
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.04);
}
.map-wrapper iframe{
    width: 100%;
    height: 600px;
    border: none;
}

/* Form for Booking */
.booking-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content{
    background: #fff;
    color: #222;
    border-radius: var(--radius);
    padding: 2rem;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.4s ease;
    position: relative;
}
.close-modal{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* form layout */
.form-row{
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.form-group{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group label{
    font-weight: 600;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea{
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus{
    border-color: var(--accent);
}
.error-message{
    color: #d33;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}
/* Button */
.submit-btn{
    margin-top: 10px;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.submit-btn:hover{
    background-color: var(--accent-dark);
}

/* Fade animation */
@keyframes fadeIn{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* respond */
@media (max-width:700px){
    .form-row{
        flex-direction: column;
    }
}

/* CTA Banner */
.cta-banner{
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url("/image/wildebeest-landscape.webp") center/cover fixed no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}
.cta-banner-content{
    max-width: 700px;
    padding: 20px;
}
.cta-banner-content h2{
    font-size: clamp(1.8rem,3.6vw,2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}
.cta-banner-content p{
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
}
.cta-banner .book-btn{
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.cta-banner .book-btn:hover{
    background-color: var(--accent-dark);
    transform: translateY(-3px);
}
@media (max-width:768px){
    .cta-banner{
        min-height: 50vh;
        padding: 40px 16px;
    }
}
/* Footer */
.site-footer{
    background: #b9b5b5;
    color: #000;
    font-family: 'Arial', sans-serif;
    padding: 4rem 2rem 2rem;

}
.footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand{
    max-width: 300px;
}
.footer-logo{
    max-width: 160px;
    margin-bottom: 1rem;
}
.footer-brand p{
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}
/* link section */
.footer-links h3{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
}
.footer-links ul{
    list-style: none;
    padding: 0;
    margin: o;
}
.footer-links li{
    margin-bottom: 0.5rem;
}
.footer-links a{
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}
.footer-links a:hover{
    color: #F26B1D;
}

/* contact */
.footer-contact h3{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
}
.footer-contact p{
    margin: 0.3rem 0;
    color: #333;
}
.footer-contact .email{
    display: block;
    margin: 0.5rem 0 1rem;
    color: #f26b1d;
    text-decoration: none;
    font-weight: bold;
}
.footer-contact .email:hover{
    text-decoration: none;
}
/* Social Icons */
.social-icons{
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.social-icons a img{
    width: 26px;
    height: 26px;
    filter: grayscale(100%);
    transition: 0.3s;
}
.social-icons a img:hover{
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}
/* Bottom */

.footer-bottom{
    text-align: center;
    border-top: 1px solid #000;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #000;
}
.footer-bottom p{
    margin: 0.3rem 0;
}