body {
    font-family: Arial, sans-serif;
    background-color: #f5f0e6;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f5f0e6;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}
.navbar a {
    color: bisque;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.navbar a:hover {
    color: #ffa500;
}

.nav-links {
    display: flex;
    gap: 15px;
    position: relative;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content with fade-in transition */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 1;
    flex-direction: column;
    display: flex;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Dropdown items */
.dropdown-content a {
    color: bisque;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

/* Show dropdown with fade-in effect */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}
/* Mega menu container */
.mega-menu {
    position: relative;
}

.mega-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    min-width: 700px;
    max-width: 1000px;
    top: 100%;
    left: 0;
    position: absolute;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border: 1px solid #333;
}

/* Show mega menu on hover */
.mega-menu:hover .mega-content {
    opacity: 1;
    visibility: visible;
}

/* Mega menu column */
.mega-column {
    flex: 1;
    min-width: 150px;
}

.mega-column strong {
    color: orange;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.mega-column a {
    color: bisque;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 13px;
}

.mega-column a:hover {
    color: #ffa500;
    background-color: rgba(255, 165, 0, 0.1);
}


.logo img {
    width: 100px;
    height: auto;
}

/* Menu Icon */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: white;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        text-align: center;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    animation: slideshow 15s infinite;
    z-index: 1;
}
@keyframes slideshow {
    0%   { background-image: url('Images/WhatsApp Image 2025-02-25 at 8.34.28 PM.jpeg'); }
    16.66% { background-image: url('Images/The-Kenyan-Coast.jpg'); }
    33.33% { background-image: url('Images/WhatsApp Image 2025-02-25 at 8.34.30 PM.jpeg'); }
    50%  { background-image: url('Images/WhatsApp Image 2025-02-25 at 8.34.31 PM.jpeg'); }
    66.66% { background-image: url('Images/WhatsApp Image 2025-02-25 at 8.34.33 PM.jpeg'); }
    83.33% { background-image: url('Images/WhatsApp Image 2025-02-25 at 8.35.24 PM.jpeg'); }
    100%  { background-image: url('Images/WhatsApp Image 2025-02-25 at 8.34.28 PM.jpeg'); } /* loop back to first */
}


.hero-text {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin: 0;
    opacity: 0;
    animation: fadeInLeft 1s ease-in-out 0.5s forwards;
}
.hero-text h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    margin-top: 10px;
    opacity: 0;
    animation: fadeInLeft 1s ease-in-out 1s forwards;
}
.hero-text {
    position: relative;
    z-index: 10; /* Ensure it's above slideshow */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInLeft 1s ease-in-out 1.5s forwards;
    opacity: 0;
    z-index: 10; /* Also important */
    position: relative; /* Needed for z-index to apply */
}

.hero-btn {
    padding: 12px 25px;
    background-color: #800000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    position: relative;
}

.hero-btn:hover {
    background-color: #a52a2a;
    transform: scale(1.05);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-text h2 {
        font-size: 1.5rem;
    }
}
.container {
    display: flex;
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.image-section {
    flex: 1;
    background: url('Images/Lions.jpeg') no-repeat center center/cover;
}
.form-section {
    flex: 1;
    padding: 30px;
    background-color: #800000;
    color: #fff;
}
.form-section h2 {
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.form-group input, .form-group select {
    background: #f5f0e6;
    color: #333;
}
.form-group button {
    background: #be918c;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.form-group button:hover {
    background: #a47570;
}
.destinations {
    text-align: center;
    padding: 50px 20px;
}
.destinations h2, .popular h2 {
    font-size: 2rem;
    color: #800000;
}
.destinations-container, .popular-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Link style for clickable cards */
a.destination-card {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    width: 250px;
    background: bisque;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
a.destination-card:hover {
    transform: scale(1.1);
}

/* Also keep this if you have <div class="destination-card"> variants too */
.destination-card, .popular-card {
    width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.destination-card:hover, .popular-card:hover {
    transform: scale(1.1);
}

.destination-card img, .popular-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.destination-card p, .popular-card p {
    padding: 15px;
    font-size: 1rem;
    color: #333;
}

.popular {
    text-align: center;
    padding: 20px;
}
.popular-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}
.popular-card {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.popular-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.popular-card:hover img {
    transform: scale(1.1);
}
.popular-card p {
    padding: 10px;
    font-size: 16px;
    color: #333;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.popular {
    text-align: center;
    padding: 20px;
}
.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.blog-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
.blog-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}
.blog-item img {
    width: 40%;
    border-radius: 5px;
}
.blog-text {
    width: 60%;
}
.blog-text h3 {
    margin: 0 0 10px;
}
.learn-more {
    background: #800000;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.review-card {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease-in-out;
}
.review-card:hover {
    transform: scale(1.1);
}
.review-card img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-container div {
    margin: 10px;
    flex: 1 1 200px;
}
.quick-contacts p {
    display: flex;
    align-items: center;
}

.quick-contacts .icon {
    margin-right: 10px;
}

.useful-links ul {
    list-style: none;
    padding: 0;
}


.social-share .social-icons,
.social-share .social-links {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.social-share .social-icons a,
.social-share .social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #555;
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-container div {
        margin: 20px 0;
    }
}
ul, li {
    margin: 5px 0;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}
p{
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.about-hero {
    background-image: url('Images/download (6).jpg'); /* Replace with a suitable image */
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    padding: 20px;
}

.about-content {
    padding: 50px 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.reason-card {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.reason-card i {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 10px;
}

.accolades-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: auto;
}

.accolades-list li {
    font-size: 18px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accolades-list i {
    font-size: 20px;
    color: #800000;
}
