/* === CherokeeTours Header Clone === */

/* Whole header block */
header,
#header .header-main .container {
    min-height: 68px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;   /* stays visible when scrolling */
    top: 0;
    z-index: 1000;
}

/* Logo */
header a img {
    height: 40px;
    max-height: 100%;
}

/* Main nav container */
header .main-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Nav links */
header .nav-link,
header .main-menu > li > a {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #2c3e57 !important;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    height: 68px; /* matches header height */
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hover effect */
header .nav-link:hover,
header .main-menu > li > a:hover {
    color: #007bff !important;
}

/* Highlight Start Planning */
header .nav-link.start-planning {
    font-weight: 700;
    color: #007bff !important;
}

/* Buttons (Login / Register / etc.) */
header .btn {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    margin-left: 10px;
}

/* === Dropdown Styling === */
.dropdown-menu {
    border-radius: 0;
    border: 1px solid #eee;
    margin-top: 0;
    padding: 0;
}

.dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    color: #2c3e57;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #007bff !important;
}

/* Support for multi-level dropdown (Kenya -> Nairobi, etc.) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* === Carousel Styling === */
.carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;       /* full screen */
    min-height: 500px;
    position: relative;
}

/* Images fill & crop */
.carousel-item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
}

/* Dark overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Captions */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.9);
}

/* Caption text */
.carousel-caption h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.carousel-caption h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.carousel-caption p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

/* Caption button */
.carousel-caption .btn {
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 30px;
}
