/* In your custom CSS file, e.g., web/css/site.css or within MainAsset */

/* .main-header {
    box-shadow: 0 2px 15px rgba(0,0,0,0.08); 
    background-color: #1f93c9; 
    padding: 0.5rem 0; 
    transition: background-color 0.3s ease-in-out;
} */
.main-header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(144, 42, 42, 0.98) !important;
    /* backdrop-filter: blur(8px); */
    /* -webkit-backdrop-filter: blur(8px); */
    transition: all 0.3s ease;
}
.navbar {
    padding: 0.5rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 2rem;
}
.navbar-logo {
    height: 40px;
    border-radius: 60%;
    width: auto;
    transition: all 0.3s ease;
}
.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-left: 10px;
    display: none;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
    padding: 0.5rem 0.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #27ae60;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #27ae60;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.btn-book-tour {
    background-color: #27ae60;
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-book-tour:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.25);
}

.btn-book-tour i {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .brand-text {
        display: inline-block;
    }
    
    .nav-item {
        margin: 0 0.75rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .btn-book-tour {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
}
/* .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
} */

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    overflow: hidden; /* Hide overflowing parts of images */
    color: #fff; /* Default text color for the section */
}
#heroCarousel {
    position: absolute; /* Take the carousel out of the normal flow */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Place it at the bottom layer */
}

.carousel-inner {
    width: 100%;
    height: 100%; /* Ensure inner carousel container also fills height */
}

.carousel-item {
    height: 100%; /* Important: Each carousel item must fill its parent's height */
    width: 100%; /* Ensure each carousel item fills its parent's width */
    background-position: center center; /* For background-image if you switch */
    background-size: cover; /* For background-image if you switch */
}

.hero-bg-image { /* This targets the actual <img> tag */
    position: absolute; /* Position the image relative to its .carousel-item parent */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the entire area without distortion */
    filter: brightness(0.6); /* Slightly dim images for better text contrast */
    /* z-index is handled by its parent .carousel-item inside #heroCarousel's z-index */
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.9) 100%); */
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1; /* Ensure overlay is above images but below content */
}

.hero-content-wrapper {
    position: relative;
    z-index: 2; /* Ensure content is above overlay */
    max-width: 900px; /* Limit content width for better readability */
    padding: 20px;
     text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive font size */
    text-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Subtle text shadow for depth */
}

.hero-content p.lead {
    font-size: clamp(1rem, 2vw, 1.35rem); /* Responsive font size for lead text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Custom Button Styles (match your brand) */
.custom-btn-primary {
    background-color: #ff6f00; /* Example: A vibrant orange */
    border-color: #ff6f00;
    padding: 0.8rem 2.2rem;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}

.custom-btn-primary:hover {
    background-color: #e66000;
    border-color: #e66000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.6);
}

.custom-btn-outline {
    border-color: #fff;
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.custom-btn-outline:hover {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-3px);
}
/* General section padding for all sections - helps uniformity */
section {
    padding: 5rem 0; /* Consistent vertical spacing */
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: #1f93c9; /* Match header blue */
    margin-bottom: 2rem;
}

.about-section .lead {
    font-size: 1.25rem;
    color: #444; /* Slightly darker for better readability on white background */
}

.about-img {
    /* This wrapper is already in your PHP. Now apply specific size */
    max-width: 550px; /* Adjust max width as desired for the image */
    height: 400px; /* Fixed height for image container */
    margin: 0 auto; /* Center the image container */
}
.about-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* --- Co-founders Section Styles --- */
.cofounders-section {
    background-color: #f8f9fa; /* Light grey background to visually separate */
}

.cofounder-card {
    padding: 3rem 0; /* Internal spacing for each co-founder */
}
.cofounder-card:not(:last-child) {
    margin-bottom: 3rem; /* Space between cards */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Subtle separator */
}

.cofounder-img-wrap {
    width: 300px; /* Fixed width for circular image container */
    height: 300px; /* Fixed height for circular image container */
    margin-bottom: 1.5rem;
    border: 5px solid #1f93c9; /* Blue border around circular images */
}
.cofounder-img-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.cofounder-card h4 {
    color: #1f93c9; /* Match header blue for names */
    font-weight: 600;
}

.cofounder-card p.lead {
    color: #555; /* Slightly muted color for lead text in this section */
    line-height: 1.8; /* Improved readability for long paragraphs */
}

/* Re-use custom buttons from hero section */
.custom-btn-primary {
    background-color: #ff6f00; /* Vibrant orange from hero CTA */
    border-color: #ff6f00;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}
.custom-btn-primary:hover {
    background-color: #e66000;
    border-color: #e66000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.6);
}
/* --- Tours Section Styles --- */
.tours-section {
    background-color: #f8f9fa; /* Light background for contrast against white cards */
}

.tours-section .section-title {
    color: #1f93c9; /* Match header blue */
}

.tours-section .lead {
    color: #6c757d; /* Muted grey for supporting text */
}

.tour-card {
    border: none; /* Remove default Bootstrap card border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff; /* White background for the card */
}

.tour-card:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important; /* Stronger shadow on hover */
}

.tour-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px; /* Fixed height for all tour images */
    overflow: hidden; /* Hide overflow for rounded corners */
}

.tour-img {
    object-fit: cover; /* Ensure image covers the area */
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease; /* Smooth zoom effect on image hover */
}

.tour-card:hover .tour-img {
    transform: scale(1.05); /* Slight zoom on image hover */
}

.tour-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6f00; /* Use your primary orange */
    color: #fff;
    padding: 0.35rem 0.8rem;
    border-radius: 5px; /* Slightly rounded for the badge */
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10; /* Ensure badge is above image */
}

.tour-card .card-body {
    padding: 1.5rem;
}

.tour-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f93c9; /* Consistent blue for titles */
    margin-bottom: 0.75rem;
}

.tour-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.tour-card-btn {
    border-color: #1f93c9; /* Blue border */
    color: #1f93c9; /* Blue text */
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 50px; /* Pill shape for button */
}

.tour-card-btn:hover {
    background-color: #1f93c9; /* Blue background on hover */
    color: #fff; /* White text on hover */
}

/* Re-use the existing custom-btn-primary for the main CTA */
/* .custom-btn-primary { ... } */

