body {
    
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.8; 
    letter-spacing: 0.5px;
    color: #333;
    background-color: #caf1ca;
}

 h2, h3 {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 2px;
    color: #08501d; 
    text-shadow: 3px 3px 15px #FFF;
}
.hero h2 {
    font-size: 2rem;
    color: #6d0725;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.7); 
}
.hero h1 {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 31px 15px rgba(0,0,0,0.6); 
}

@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 2rem; 
        padding: 0 15px;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero {
        background-attachment: scroll; 
    }
}
p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


#about {
    background-color: #ffffff; 
    padding: 60px 20px;
    text-align: center;
}

#packages {
    background-color: #e8f0e8; 
    padding: 60px 20px;
}


header {
    background: #0b3d13; 
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 120px; 
    width: auto;  
    display: block;
    
}

nav {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}


.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: white; 
    border-radius: 5px;
    transition: 0.3s;
}


#nav-links {
    display: none; 
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #0b110c; 
    width: 200px;
    flex-direction: column;
    text-align: center;
    border-radius: 0 0 0 15px;
    padding: 20px 0;
    z-index: 1000;
}

#nav-links li {
    margin: 15px 0;
}


#nav-links.active {
    display: flex;
}

/* Hero Section */
.hero {
    height: 90 vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('back.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 120px;
}
.hero-text h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0, 250, 83, 0.7); 
    margin-bottom: 10px;
}


.btn {
    display: inline-block;
    background: #f1c40f;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.logo img {
    height: 120px; 
    width: auto;  
    display: block;
}


.booking-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#safariForm input, #safariForm select, #safariForm textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; 
}

#safariForm textarea {
    height: 100px;
}

#safariForm button {
    width: 100%;
    background-color: #25d366; 
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

#safariForm button:hover {
    background-color: #128c7e;
}
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mySlides {
    display: none; 
}

.mySlides img {
    height: 450px;
    object-fit: cover;
}


.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
}


.modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 15px;
    position: relative;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.5); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}


.close {
    position: absolute;
    right: 15px; top: 5px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}


.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}


.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}


@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}
#about {
    padding: 80px 10%;
    background-color: #ffffff;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; 
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0px #1a4a1e; 
}

.about-text {
    flex: 1;
    text-align: left;
    min-width: 300px;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.safari-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.safari-features li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}
.site-footer {
    background-color: #000000; 
    color: #ffffff;
    padding: 50px 0 20px 0;
    margin-top: 50px; 
    border-top: 5px solid #27ae60; 
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-info h3 {
    color: #27ae60;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #755d5d;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #bbb;
}
#reviews {
    background-color: #f0f7f0; 
    padding: 80px 10%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-10px); 
}

.review-card p {
    font-style: italic;
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.review-card h4 {
    color: #1a4a1e;
    margin-bottom: 5px;
}

.stars {
    color: #f1c40f; 
    font-size: 1.2rem;
}