/* General style */
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; 
    color: #222; 
    margin:0; 
    line-height:1.5;
}

/* Header and navigation */
:root{
    --accent: #f26b1d;
    --accent-dark:#a12a20;
    --header-height: 16px;
    --radius: 12px;
}
/* header base */
.site-header{
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    background-color: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
nav img{
    width: 150px;
}
/* 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;
    height: 100vh;
    min-height: 520px;
    background-image: linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.65)),url("/image/zebra-serengeti.webp");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    overflow: hidden;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hero-content h1{
    font-size: clamp(28px 6vw 64px);
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 700;
}
.hero-content p{
    font-size: clamp(16px 3vw 22px);
    margin-bottom: 28px;
    line-height: 1.6;
    color: #f0f0f0;
}
.hero-button{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.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;
}

.primary-btn:hover{
    background: var(--accent-dark);
    transform: translateY(-3px);
}
@media (max-width:600px){
    .hero{
        height: 90vh;
    }
    .hero-button{
        flex-direction: column;
    }
}
/* Destination */
.Dest{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 60px 20px;
    background: #fafafa;
}
.card{
    display: block; /* make the card clickerbal */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.card-in{
    padding: 18px 20px;
}
.card-in h1{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #730C02;
}
.card-in p{
    font-size: 15px;
    line-height: 1.5;
    color: #000;
}
.card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.card:hover img{
    transform: scale(1.08);
}
.section-title{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px 0px 20px;
    color: #222;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.section-title::after{
    content: '';
    display: block;
    width: 6px;
    height: 4px;
    background: #730C02;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Our story */
.Our-story{
    padding: 80px 20px;
    background: #fff;
}
.story-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;

}
.story-text h2{
    font-size: 24px;
    margin-bottom: 20px;
    color: #444;
}
.story-text p{
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}
.story-image img{
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.story-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;
}
.story-btn:hover{
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* Popular Journey */
.journeys{
    padding: 80px 20px;
    background: #f9f9f9;
}
.journey-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.journey-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.journey-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.journey-content{
    padding: 20px;
    text-align: center;
}
.journey-content h2{
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}
.journey-content p{
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #555;
}
.price{
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}
/*Testmonials*/
.testimonials{
    padding: 80px 20px;
    background: #fff;
}
.testimonial-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card{
    background: #f9f9f9;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}
.testimonial-card:hover{
    transform: translateY(-6px);
}
.testimonial-card p{
    font-style: italic;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.6;
}
.testimonial-author{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonial-author img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.testimonial-author h3{
    font-size: 16px;
    margin: 0;
    color: #222;
}
.testimonial-author span{
    font-size: 14px;
    color: #777;
}

/* About Us */
.about{
    background: #f0f0f0;
    padding: 80px 20px;
}
.about-container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
.about-text h1{
    font-size: 32px;
    color: #730c02;
    margin-bottom: 20px;
}
.about-text p{
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}
.about-text .about-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;
}
.about-text .about-btn:hover{
    background: var(--accent-dark);
    transform: translateY(-3px);
}
.about-image img{
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width:768px){
    .about-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image{
        order: -1;
    }
}
/* 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);
}
/* Button */
.btn-small{
    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;
}
.btn-small:hover{
    background: var(--accent-dark);
    transform: translateY(-3px);
}
.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;
}