/* ============================================
   IDEA CARNIVAL - GLOBAL STYLES
   Shared styles across all pages
   ============================================ */

/* ============================================
   FONT SIZE STANDARDS
   ============================================
   Hero Titles: 56px (mobile: 40px)
   Main Headlines (H2): 48px (mobile: 36px)
   Section Subheadings: 20px (mobile: 18px)
   Body Text / Descriptions: 18px
   Small Text / Labels: 14px
   Eyebrow Text: 14px (uppercase)
   Stats Numbers: 48px
   ============================================ */

:root {
    --gold: #D4AF37;
    --champagne: #F7E7CE;
    --black: #000000;
    --burgundy: #800020;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: #0a0805;
    color: var(--champagne);
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   CUSTOM BULLET POINTS
   ============================================ */

/* Custom bullet points for content lists (exclude navigation) */
ul:not(.nav-menu):not(.footer-links):not(.dropdown-menu):not(.mobile-dropdown-menu) {
    list-style: none !important;
    padding-left: 0;
}

ul:not(.nav-menu):not(.footer-links):not(.dropdown-menu):not(.mobile-dropdown-menu) li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    list-style: none !important;
    line-height: 1.6;
}

ul:not(.nav-menu):not(.footer-links):not(.dropdown-menu):not(.mobile-dropdown-menu) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('https://storage.googleapis.com/msgsndr/gQPjPJRdMyD0XfD6UcPl/media/693a71b5169a4272d73dd43f.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(212, 175, 55, 0.1);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold) 0%, var(--burgundy) 100%);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--burgundy) 0%, var(--gold) 100%);
    border-color: var(--gold);
}

::-webkit-scrollbar-thumb:active {
    background: var(--gold);
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.3);
}

/* ============================================
   HEADER SCROLL EFFECTS
   ============================================ */

.site-header {
    transition: all 0.3s ease;
}

.site-header .nav-container {
    transition: all 0.3s ease;
}

.site-logo {
    gap: 0 !important;
}

.site-logo img {
    transition: all 0.3s ease;
}

.site-logo .logo-icon {
    height: 35px !important;
    width: 35px !important;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.site-logo .logo-text {
    height: 50px;
    transition: all 0.3s ease;
}

.nav-container {
    height: 70px !important;
}

.nav-link {
    font-size: 14px !important;
    transition: font-size 0.3s ease;
}

/* Scrolled Header Styles */
.hero-section .site-header.scrolled .nav-container {
    height: 55px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .site-header.scrolled .site-logo .logo-icon {
    opacity: 1 !important;
    width: 35px !important;
    max-width: 35px !important;
    margin: 0 !important;
}

.hero-section .site-header.scrolled .site-logo .logo-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    margin: 0;
}

.hero-section .site-header.scrolled .nav-link {
    font-size: 12px !important;
}

/* ============================================
   HERO SECTION (Common styles)
   ============================================ */

.hero-section {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    margin: 0;
    background: var(--black);
}

.hero-section .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.hero-section .site-header .nav-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 100%;
    padding: 0 60px;
}

/* ============================================
   ORNATE DIVIDER
   ============================================ */

.ornate-divider-wrapper {
    width: 100%;
    padding: 40px 0;
    position: relative;
}

.ornate-divider {
    width: 40%;
    height: 60px;
    background-image: url('https://storage.googleapis.com/msgsndr/gQPjPJRdMyD0XfD6UcPl/media/693a71b5b26327cd83bad2d7.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin: 0 auto;
    opacity: 0.9;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, var(--black) 100%);
    border-top: 2px solid var(--gold);
    padding: 60px 20px 30px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    font-size: 16px;
    color: var(--champagne);
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
    padding-left: 0 !important;
}

.footer-links li::before {
    display: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(247, 231, 206, 0.7);
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--champagne);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section .site-header .nav-container {
        padding: 0 30px;
    }

    .site-footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ornate-divider-wrapper {
        padding: 40px 0;
    }

    .ornate-divider {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-section .site-header .nav-container {
        padding: 0 20px;
    }

    .ornate-divider {
        height: 50px;
    }
}
