/* Base Styles */
:root {
    --primary-color: #d4af37;
    --dark-green: #141414;
    --darker-green: #0a0a0a;
    --text-color: #c9c9c9;
    --light-bg: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #0f0f0f;
}

/* Bootstrap Overrides for Dark Theme */
.bg-white { background-color: #121212 !important; }
.text-dark { color: #e8e8e8 !important; }
.text-muted { color: #a0a0a0 !important; }
.border-bottom { border-color: #333 !important; }
.border { border-color: #333 !important; }


.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.signature-font {
    font-family: 'Caveat', cursive;
}

.bg-light-custom {
    background-color: var(--light-bg) !important;
}

.bg-success-dark {
    background-color: var(--dark-green) !important;
}

.text-success-dark {
    color: var(--primary-color) !important;
}

.btn-success-dark {
    background-color: #1a1a1a;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-success-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #1a1a1a;
}

.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-warning:hover {
    background-color: #e09e15;
    border-color: #e09e15;
}

.text-warning {
    color: var(--primary-color) !important;
}

/* Navbar */
#mainNav {
    background: transparent;
    transition: background-color 0.3s;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#mainNav.navbar-scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.5px;
}

#mainNav .nav-link:hover, #mainNav .nav-link.active {
    color: var(--primary-color) !important;
}

#mainNav .dropdown-toggle::after {
    vertical-align: middle;
    font-size: 10px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-subtitle {
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.btn-explore {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    font-size: 14px;
}

.btn-contact {
    border-color: rgba(255, 255, 255, 0.7);
    background-color: transparent;
    font-size: 14px;
}

.btn-contact:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Features */
.features-section {
    background-color: #121212;
}
.feature-box {
    padding: 1.5rem 1rem;
}
.feature-icon {
    width: 45px;
    height: 45px;
    border: 1px dashed var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color) !important;
}
@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid #333;
    }
}

/* Explore Grid */
.col-lg-20percent {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-20percent {
        width: 33.333%;
    }
}
@media (max-width: 767.98px) {
    .col-lg-20percent {
        width: 50%;
    }
}

.destination-card, .park-card {
    height: 150px;
}
.park-card {
    height: 160px;
}

.destination-overlay, .park-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}

.destination-card img, .park-card img {
    transition: transform 0.5s ease;
}

.destination-card:hover img, .park-card:hover img {
    transform: scale(1.1);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}
.section-divider::before, .section-divider::after {
    content: "";
    height: 1px;
    width: 30px;
    background-color: var(--primary-color);
    margin: 0 15px;
}

/* Parks List */
.park-list-item {
    font-size: 13px;
    color: #6c757d;
}

/* Promo Banner */
.promo-banner {
    height: 240px;
}
.promo-overlay {
    background: linear-gradient(to right, rgba(30,45,30,0.9) 0%, rgba(30,45,30,0.6) 50%, rgba(0,0,0,0) 100%);
}

/* Meet Gima */
.before-bullet::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
}
.stat-card {
    border-color: #333 !important;
    background-color: #1c1c1c !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.5)!important;
}

/* Footer */
.footer {
    background-color: var(--darker-green);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--darker-green) !important;
}

.WhatsAppChatBtn {
    background-color: rgba(255,255,255,0.05);
}
.WhatsAppChatBtn:hover {
    background-color: #25D366;
    border-color: #25D366 !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}
@media (max-width: 991.98px) {
    .floating-whatsapp {
        bottom: 80px; /* Above the mobile nav bar */
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #121212;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 10px;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}
.mobile-bottom-nav .nav-item:hover, .mobile-bottom-nav .nav-item:active {
    color: var(--primary-color);
}
