/* Ignite Belize - Shared Styles */
/* Update this file once to update styles across all pages */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Radley', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fffbf4;
    color: #3e3b39;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 251, 244, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(62, 59, 57, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo-icon {
    width: 55px;
    height: 55px;
    margin-right: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none;
}

/* Modern Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(45deg, #d6b327, #b8941a);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav-links a {
    color: #3e3b39;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover {
    transform: translateY(-2px);
    background: rgba(214, 179, 39, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(45deg, #d6b327, #b8941a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 251, 244, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(214, 179, 39, 0.2);
    border: 1px solid rgba(214, 179, 39, 0.1);
    z-index: 1000;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #3e3b39;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown a:hover {
    background: rgba(214, 179, 39, 0.1);
    padding-left: 25px;
}

.dropdown a::after {
    display: none;
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 251, 244, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 80px 20px 20px;
}

.nav-overlay .nav-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.nav-overlay .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 25px;
    background: rgba(214, 179, 39, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-overlay .nav-links a:hover {
    background: linear-gradient(45deg, #d6b327, #b8941a);
    color: #fffbf4;
}

.nav-overlay .nav-links a::after {
    display: none;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Radley', serif;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #d6b327, #b8941a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #3e3b39;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #3e3b39 0%, #2a2826 100%);
    color: #fffbf4;
    padding: 60px 0 30px;
    text-align: center;
}

footer a {
    color: #d6b327;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fffbf4;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links.desktop-nav {
        display: none;
    }
}
