/* Custom Styles for Monda Tours */
:root {
    --primary-color: #315F18; /* The green color from the old site */
    --secondary-color: #E9E0D6; /* The beige background color */
    --text-color: #333;
    --footer-bg: #4b443d; /* Dark brown/gray from footer screenshot */
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-color);
    background-color: #fff;
}

/* Header Styles */
.header-top {
    background-color: #fff;
    padding: 15px 0;
}

.header-top .logo img {
    max-height: 100px;
}

.header-top .payment-logo img {
    max-height: 80px;
}

.header-top .tanzania-safari-text {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.navbar-custom {
    background-color: var(--primary-color);
    padding: 0;
}

.navbar-custom .nav-link {
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px 12px !important;
}

.navbar-custom .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mega Menu Styles */
.navbar-custom .dropdown-mega {
    position: static;
}

.navbar-custom .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.navbar-custom .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 40px 0;
    margin-top: 0;
    background-color: #fff;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.navbar-custom .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.mega-menu-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.mega-menu-subtitle {
    color: #4b443d;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 5px;
}

.mega-menu-list a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.mega-menu-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mega-menu-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.aiyana-section {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.aiyana-title {
    color: #d63384; /* Pinkish color from screenshot */
    font-weight: 700;
    font-size: 1.2rem;
}

/* Footer Styles */
.footer-main {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-main h5 {
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-main p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-main .contact-form input,
.footer-main .contact-form textarea {
    background-color: #fff;
    border: none;
    margin-bottom: 10px;
    border-radius: 0;
}

.footer-main .contact-form .btn-submit {
    background-color: #fff;
    color: var(--footer-bg);
    border: none;
    padding: 5px 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-partners {
    margin-top: 30px;
    padding-top: 20px;
}

.partner-item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
}

.partner-item img {
    max-height: 60px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    margin-top: 20px;
}

.back-to-top {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    z-index: 10;
}

.hero-carousel .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.featured-circle {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.featured-circle:hover {
    transform: scale(1.05);
}

.featured-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-beige {
    background-color: var(--secondary-color);
}

footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 3rem 0;
}
