/* ==========================================
   🧭 NAVBAR
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(58, 34, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-family: var(--font-logo);
    font-size: 3rem;
    font-weight: 700;
    color: #FDDEC8;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.nav-logo {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-links li a {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 235, 215, 0.8);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.nav-links li a:hover {
    color: #FDDEC8;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FDDEC8;
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   📐 SECTIONS COMMON
   ========================================== */
section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================================
   📊 STATS BAR
   ========================================== */
.stats-bar {
    background: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 5%;
    flex-wrap: wrap;
    gap: 1rem 0;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
}

.stat-num {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(253, 222, 200, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    align-self: center;
}

/* ==========================================
   📢 MARQUEE STRIP
   ========================================== */
.marquee-strip {
    background: var(--primary-color);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    /* Matches the gap so the loop doesn't skip */
}

.marquee-content span {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.7rem !important;
}

/* ==========================================
   🔗 FOOTER SOCIAL LINKS
   ========================================== */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-social-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-social-icon:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================
   🦶 FOOTER
   ========================================== */
footer {
    background-color: var(--text-color);
    padding: 4rem 5% 2rem;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Large watermark text in the background */
.footer-bg-text {
    position: absolute;
    bottom: -0.07em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-title);
    font-size: clamp(7rem, 22vw, 15.5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.03em;
    line-height: 1;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content .logo {
    color: #FDDEC8;
    justify-content: center;
}

footer p {
    color: rgba(255, 220, 200, 0.75);
    margin-top: 1rem;
    font-weight: 600;
}

