/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.9) !important; /* Make navbar always dark for readability */
}

.navbar-brand {
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.nav-link.active {
    color: #ffc107 !important; /* Bootstrap warning color usually looks good for travel/safari */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh; /* Reduced height */
    min-height: 500px;
    padding-top: 76px; /* Account for fixed navbar */
    position: relative;
}

.hero-section h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Floating Banner */
.floating-banner {
    background-color: #bca07d; /* Tan/Beige color from image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.floating-banner .banner-icon i {
    color: #ffffff;
}

.floating-banner .banner-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.floating-banner .btn-dark {
    background-color: #3b261b;
    border-color: #3b261b;
    color: #bca07d; /* Text color matching the banner bg */
    transition: all 0.3s ease;
}

.floating-banner .btn-dark:hover {
    background-color: #2a1b13;
    color: #fff;
}

/* Dark About Section */
.dark-about-section {
    background-color: #3b261b; /* Dark Brown from image */
    padding-top: 50px; /* Space for the floating banner overlap */
    padding-bottom: 0;
}

.script-font {
    font-family: 'Dancing Script', cursive;
}

.btn-tan {
    background-color: #bca07d;
    color: #3b261b;
    border: none;
    transition: all 0.3s ease;
}

.btn-tan:hover {
    background-color: #a88d6b;
    color: #fff;
}

/* Popular Safaris Section */
.popular-safaris-section {
    background-color: #f8f9fa;
}

/* Mount Kilimanjaro Section */
.kilimanjaro-section {
    background-color: #e6d7c3; /* Light brown background */
}

.safari-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.safari-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.safari-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.safari-card:hover .card-img-top {
    transform: scale(1.05);
}

.safari-card .card-title {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.safari-card .card-text {
    color: #666;
    font-size: 0.95rem;
}

.safari-card .btn-primary {
    background-color: #d35400;
    border-color: #d35400;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.safari-card .btn-primary:hover {
    background-color: #a04000;
    border-color: #a04000;
    transform: translateY(-2px);
}

/* Services / Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.form-control {
    padding: 0.8rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ffc107;
}

/* Buttons */
.btn-primary {
    background-color: #d35400; /* Safari-ish orange/brown */
    border-color: #d35400;
}

.btn-primary:hover {
    background-color: #a04000;
    border-color: #a04000;
}

.text-primary {
    color: #d35400 !important;
}

/* Footer */
footer {
    background-color: #212529;
}
