/* ============================================
   NAVIGATION AND FOOTER STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary-orange: #d08718;
    --dark-green: #0b190c;
    --light-cream: #fdeacc;
    --white: #ffffff;
    --black: #1a1a1a;
    --tripadvisor-green: #00aa6c;
    --google-blue: #4285F4;
}

/* ============================================
   TOP INFO BAR
   ============================================ */
.top-info-bar {
    background: var(--dark-green);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-info-bar .contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-info-bar .contact-info a:hover {
    color: var(--primary-orange);
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-orange);
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.mega-menu {
    min-width: 600px;
    padding: 30px;
}

.mega-menu h3 {
    color: var(--primary-orange);
    font-size: 18px;
    margin-bottom: 15px;
}

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

.mega-menu .list-unstyled a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu .list-unstyled a:hover {
    color: var(--primary-orange);
}

.inquiry-btn {
    background: var(--primary-orange);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: var(--dark-green);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo img {
    max-height: 80px;
}

.footer-about {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--primary-orange);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--primary-orange);
    margin-right: 15px;
    margin-top: 5px;
    min-width: 20px;
}

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

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

.newsletter-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 5px 0 0 5px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form .btn {
    border-radius: 0 5px 5px 0;
    border: 1px solid rgba(255,255,255,0.2);
    background: var(--primary-orange);
}

.newsletter-form .btn:hover {
    background: white;
    color: var(--dark-green);
}

.payment-methods {
    color: var(--primary-orange);
}

.payment-methods i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .mega-menu {
        min-width: auto;
        padding: 20px;
    }

    .footer-about,
    .newsletter-text {
        text-align: left !important;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    /* Top info bar adjustments for very small screens */
    .top-info-bar {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .top-info-bar .contact-info {
        font-size: 12px;
    }
    
    .social-icons a {
        font-size: 14px;
        margin: 0 2px;
    }

    /* Navigation adjustments for very small screens */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        max-height: 45px;
    }
    
    .inquiry-btn {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .mega-menu {
        padding: 15px;
    }
    
    .mega-menu h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* Footer adjustments for very small screens */
    .footer-section {
        padding: 40px 0 15px;
    }
    
    .footer-logo img {
        max-height: 60px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-about,
    .newsletter-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-social .social-icon {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .footer-contact {
        font-size: 14px;
    }
    
    .contact-icon {
        margin-right: 10px;
        font-size: 14px;
    }
    
    .footer-links {
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 12px;
        text-align: center;
    }
    
    .footer-bottom-links {
        font-size: 12px;
        justify-content: center;
    }
    
    .payment-methods i {
        font-size: 1.5rem;
        margin-right: 8px;
    }
    
    .newsletter-form .form-control {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .newsletter-form .btn {
        font-size: 14px;
        padding: 8px 12px;
    }
}