/* ========================================
   MAYAROYALE PREMIUM LIGHT THEME
   Clean, Sophisticated, Premium
   ======================================== */

/* ==================== LIGHT THEME BASE ==================== */

.page-light {
    background: #FFFFFF;
}

.page-light body {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

/* ==================== HERO SECTIONS - LIGHT ==================== */

/* Premium Light Hero */
.hero-light {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F0F2F5 100%);
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.hero-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-light-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-light-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    color: #00D4FF;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-light-title {
    font-size: 4rem;
    font-weight: 800;
    color: #0A0A0A;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-light-title .accent {
    color: #00D4FF;
}

.hero-light-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-light-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== SECTION LAYOUTS - LIGHT ==================== */

.section-premium-light {
    padding: 6rem 0;
    background: #FFFFFF;
}

.section-premium-light-alt {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.section-premium-gray {
    padding: 6rem 0;
    background: #F8F9FA;
}

/* Section Headers */
.section-header-light {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-light {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title-light .accent {
    color: #00D4FF;
}

.section-subtitle-light {
    font-size: 1.1rem;
    color: #6A6A6A;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Subtle accent line */
.section-title-light::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00D4FF;
    margin: 1.5rem auto 0;
}

/* ==================== PREMIUM CARDS - LIGHT ==================== */

.card-premium-light {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card-premium-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 212, 255, 0.2);
}

.card-premium-light-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.card-premium-light-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-premium-light-description {
    font-size: 1rem;
    color: #6A6A6A;
    line-height: 1.7;
}

/* ==================== GRID LAYOUTS ==================== */

.grid-premium-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-premium-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.grid-premium-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* Asymmetric Layouts */
.grid-asymmetric-60-40 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-asymmetric-70-30 {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ==================== BUTTONS - LIGHT THEME ==================== */

.btn-primary-light {
    display: inline-block;
    padding: 16px 36px;
    background: #00D4FF;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-light:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary-light {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #00D4FF;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: 2px solid #00D4FF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-light:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-dark-light {
    display: inline-block;
    padding: 16px 36px;
    background: #0A0A0A;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark-light:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== STATISTICS - LIGHT ==================== */

.stat-card-light {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-value-light {
    font-size: 3rem;
    font-weight: 800;
    color: #00D4FF;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label-light {
    font-size: 1rem;
    font-weight: 600;
    color: #0A0A0A;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description-light {
    font-size: 0.9rem;
    color: #6A6A6A;
}

/* ==================== IMAGE TREATMENTS ==================== */

.image-premium {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.image-premium img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-premium:hover img {
    transform: scale(1.05);
}

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

@media (max-width: 1024px) {
    .grid-premium-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-asymmetric-60-40,
    .grid-asymmetric-70-30 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-light {
        min-height: 70vh;
        padding: 6rem 0 4rem;
    }
    
    .hero-light-title {
        font-size: 2.5rem;
    }
    
    .hero-light-subtitle {
        font-size: 1.1rem;
    }
    
    .section-premium-light,
    .section-premium-light-alt,
    .section-premium-gray {
        padding: 4rem 0;
    }
    
    .section-title-light {
        font-size: 2rem;
    }
    
    .grid-premium-2,
    .grid-premium-3,
    .grid-premium-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-premium-light {
        padding: 2rem;
    }
    
    .btn-primary-light,
    .btn-secondary-light,
    .btn-dark-light {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .stat-value-light {
        font-size: 2.5rem;
    }
}

/* ==================== UTILITY CLASSES ==================== */

.text-center-light { text-align: center; }
.text-left-light { text-align: left; }
.text-right-light { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
