/* ===== ROOT VARIABLES ===== */
:root {
    --primary-blue: #1a365d;
    --secondary-gold: #d4af37;
    --accent-green: #2d5a27;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== GLOBAL RESETS & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== FULL WIDTH SECTIONS ===== */

/* Sections that should be full width */
.globe-stats-section,
footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Override container padding for full-width sections */
.globe-stats-section .container,
footer .container {
    max-width: none;
    padding: 0;
}

/* Re-center the content inside these sections */
.globe-stats-section .globe-stats,
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    height: 80px; /* adjust as needed */
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 12px; /* space between logo image and text */
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--accent-green);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a:hover {
    color: var(--secondary-gold);
}

nav a.active {
    color: var(--secondary-gold);
}

nav a.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary-gold);
    bottom: 0;
    left: 0;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: var(--secondary-gold);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e6c130;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-gold);
    position: relative;
    padding-top: 0px;
    padding-bottom: 5px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-gold);
    bottom: 0;
    left: 0;
}

.footer-column p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    color: #ccc;
}

.footer-column ul li strong {
    color: var(--secondary-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-gold);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

#Newsletter {
    margin-top: 20px;
}

#Newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    margin-bottom: 10px;
}

#Newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#Newsletter button {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

#Newsletter button:hover {
    background-color: #e6c130;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 992px) {
    nav ul { gap: 20px; }
    .hero h2 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 0;
    }
    nav ul.active { left: 0; }
    nav ul li { margin: 15px 0; }
    .hero { padding: 150px 0 80px; }
    .hero h2 { font-size: 2rem; }
    .btn { padding: 12px 25px; font-size: 1rem; }
    .events-grid { grid-template-columns: 1fr; }
    .membership-tiers { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .membership-form-container { padding: 30px 20px; }
    .tier-card.popular { transform: none; }
}

@media (max-width: 576px) {
    .hero h2 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .section-title h2 { font-size: 1.8rem; }
    .btn-container { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    nav ul {
        gap: 20px;
    }

    .globe-intro h2 {
        font-size: 2.5rem;
    }

    .globe-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .map-legend {
        display: none;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 0;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .globe-hero {
        padding: 150px 0 80px;
    }

    .globe-intro h2 {
        font-size: 2rem;
    }

    .globe-stats {
        flex-direction: column;
        gap: 30px;
    }

    .globe-container {
        height: 400px;
    }

    .country-panel {
        position: fixed;
        bottom: 0;
        top: auto;
        right: 0;
        width: 100%;
        transform: none;
        border-radius: 10px 10px 0 0;
    }

    .country-panel.active {
        animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .event-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .event-date {
        min-width: auto;
    }

    .chambers-grid {
        grid-template-columns: 1fr;
    }
	
	/* =========================
   DROPDOWN MENU STYLES
========================= */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4a5568;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu li a i {
    color: var(--accent-color);
    width: 20px;
    font-size: 1rem;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu li a:hover i {
    color: var(--accent-color);
}

/* Divider between items if needed */
.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #edf2f7;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        min-width: 100%;
        border: none;
        background: transparent;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-menu li a {
        padding: 0.8rem 1rem;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(0,0,0,0.05);
        padding-left: 1.5rem;
    }
}
/* Map zoom hint animations */
.zoom-hint {
    animation: slideIn 0.4s ease-out;
    pointer-events: none;
    z-index: 1000;
    font-family: inherit;
}

.zoom-hint i {
    margin-right: 8px;
    font-size: 14px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add a subtle pulse effect when Shift is pressed */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(52, 152, 219, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
    }
}

.zoom-hint strong {
    font-weight: 600;
}

/* Ensure map container doesn't trap scroll */
#map {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px; /* Adjust to your height */
}