/**
 * Theme Name:     Kadence Child
 * Author:         Kadence WP
 * Template:       kadence
 * Text Domain:    kadence-child
 * Description:    Custom child theme for Artika Dance Studios
 */

/* ============================================
   1. GLOBAL COLORS & TYPOGRAPHY
   ============================================ */
body {
    background: #000000 !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
}

.site-container,
.content-area,
.site-main,
.entry-content-wrap,
.single-content,
.wp-block-group,
.wp-block-cover:not(.homepage-video-hero) {
    background: #000000 !important;
    color: #FFFFFF !important;
}

p, li, td, th, blockquote, dd, dt, label,
.wp-block-paragraph, .entry-content, .single-content {
    color: #FFFFFF !important;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading, .entry-title {
    color: #FFFFFF !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

a, a:visited {
    color: #FFD700 !important;
}
a:hover {
    color: #FFFFFF !important;
}

/* Hide site title text */
.site-branding.branding-layout-standard .brand.has-logo-image .site-title-wrap,
.brand.has-logo-image .site-title-wrap .site-title,
.site-branding .site-title-wrap p.site-title {
    display: none !important;
}

.brand.has-logo-image {
    display: flex !important;
    align-items: center !important;
}

/* ============================================
   2. DESKTOP HEADER & NAVIGATION
   ============================================ */
.site-header.header-main {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #000000 !important;
    transition: all 0.3s ease !important;
    padding: 10px 0 !important;
}

/* Homepage specific transparent overlay header */
.home .site-header.header-main {
    position: absolute !important;
    top: 0 !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.main-navigation .primary-menu-container ul.primary-menu > li > a {
    color: #FFFFFF !important;
    font-family: 'Oswald', sans-serif;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 8px 15px !important;
}

.main-navigation .primary-menu-container ul.primary-menu > li > a:hover {
    color: #FFD700 !important;
}

.main-navigation .primary-menu-container ul.primary-menu {
    gap: 5px !important;
}

.custom-logo {
    max-height: 50px !important;
    width: auto !important;
}

.header-sticky-active .site-header.header-main {
    background: rgba(0, 0, 0, 0.95) !important;
    position: fixed !important;
    top: 0 !important;
}

/* ============================================
   3. VIDEO HERO SECTION (HOMEPAGE)
   ============================================ */
.homepage-video-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.video-foreground {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
}

.video-foreground iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   4. BUTTON STYLES
   ============================================ */
.hero-buttons .btn-primary,
.btn-primary,
a.btn-primary,
.hero-buttons a.btn-primary {
    color: #000000 !important;
    background: #FFD700 !important;
    border: none !important;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-primary:hover,
.btn-primary:hover,
a.btn-primary:hover {
    color: #FFD700 !important;
    background: #000000 !important;
    border: 2px solid #FFD700 !important;
    transform: translateY(-3px);
}

.hero-buttons .btn-secondary,
.hero-buttons a.btn-secondary,
.btn-secondary {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-secondary:hover,
.hero-buttons a.btn-secondary:hover,
.btn-secondary:hover {
    background: #FFFFFF !important;
    color: #000000 !important;
    transform: translateY(-3px);
}

/* ============================================
   5. SECTIONS (ABOUT, CLASSES, CTA)
   ============================================ */
.about-section,
.classes-section,
.cta-section {
    padding: 80px 20px;
    background: #000000 !important;
}

.about-container,
.classes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2,
.classes-container h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #FFFFFF !important;
}

.classes-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF !important;
    margin-bottom: 20px;
}

.classes-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #FFFFFF !important;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.class-card {
    background: #000000 !important;
    padding: 40px;
    text-align: center;
    border: 2px solid #FFD700 !important;
}

.class-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFFFFF !important;
}

.class-card p {
    margin-bottom: 30px;
    color: #FFFFFF !important;
}

.cta-section {
    text-align: center;
    border-top: 3px solid #FFD700;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #FFD700 !important;
}

.cta-container p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #FFFFFF !important;
}

.cta-btn {
    font-size: 20px;
    padding: 18px 50px;
}
/* ============================================
   6. MOBILE NAVIGATION DRAWER & TOGGLE
   ============================================ */

/* Hide toggle on desktop by default */
.mobile-navigation-toggle-wrap {
    display: none !important;
}

/* Hamburger button styling */
.menu-toggle-button {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle-icon span {
    display: block !important;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #FFD700 !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Drawer hidden state */
#mobile-drawer.custom-mobile-drawer {
    display: none !important;
    background: #000000 !important;
    width: 100% !important;
    padding: 20px 0 !important;
    text-align: center;
    border-bottom: 2px solid #FFD700;
    position: relative !important;
    z-index: 999999 !important;
}

/* Drawer visible state when body has mobile-menu-open class */
body.mobile-menu-open #mobile-drawer.custom-mobile-drawer {
    display: block !important;
}

#mobile-drawer.custom-mobile-drawer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#mobile-drawer.custom-mobile-drawer ul li {
    margin: 15px 0 !important;
}

#mobile-drawer.custom-mobile-drawer ul li a {
    color: #FFFFFF !important;
    font-size: 20px !important;
    font-family: 'Oswald', sans-serif !important;
    text-decoration: none !important;
    text-transform: uppercase;
}

#mobile-drawer.custom-mobile-drawer ul li a:hover {
    color: #FFD700 !important;
}

/* ============================================
   7. RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
    .site-header.header-main {
        position: relative !important;
        top: 0 !important;
        background: #000000 !important;
    }
    
    .home .site-header.header-main {
        position: absolute !important;
        top: 0 !important;
        background: rgba(0, 0, 0, 0.8) !important;
    }

    /* Hide desktop menu on mobile/tablet */
    .site-header-item-main-navigation {
        display: none !important;
    }

    /* Force display of hamburger button on mobile/tablet */
    .mobile-navigation-toggle-wrap,
    .mobile-navigation-toggle-wrap .menu-toggle-button {
        display: block !important;
    }
    
    .hero-title { font-size: 60px; }
    .about-grid { gap: 40px; }
}