/* White Theme Override */
.white-theme {
    background: white !important;
}

/* White Navigation Styles */
.white-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.white-glass {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.dark-link {
    color: #000 !important;
    font-family: 'Sora', sans-serif !important;
}

.dark-link.active {
    font-weight: 600 !important;
    opacity: 1 !important;
}

.dark-link:hover {
    color: var(--accent-orange) !important;
}

.dark-btn {
    color: #000 !important;
    border-color: rgba(0, 0, 0, 0.5) !important;
    font-family: 'Sora', sans-serif !important;
}

.dark-btn:hover {
    background: var(--accent-orange) !important;
    border-color: var(--accent-orange) !important;
    color: white !important;
}

.dark-logo {
    color: #000 !important;
    font-family: 'Sora', sans-serif !important;
}

/* Hero Section */
.white-hero-section {
    padding-top: 10rem;
    padding-bottom: 3rem;
    background: white;
}

.white-hero-content {
    max-width: 100%;
}

.white-page-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #000;
    margin: 0;
    font-family: 'Sora', sans-serif;
}

/* Interactive Reveal Section */
.interactive-reveal-section {
    padding: 10rem 0 6rem;
    background: white;
}

.reveal-card {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: none;
}

.reveal-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.reveal-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    mask-image: none;
    -webkit-mask-image: none;
}

.reveal-text {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-align: center;
    line-height: 1.2;
    padding: 2rem;
}

.reveal-spotlight {
    display: none;
}

/* Text Section */
.white-text-section {
    padding: 2rem 0 3rem;
    background: white;
}

.white-text-wrapper {
    display: flex;
    justify-content: flex-end;
}

.white-text-content {
    max-width: 50%;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.white-icon {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.white-intro-text {
    font-size: 2rem;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
    margin: 0;
}

/* About Section */
.white-about-section {
    padding: 3rem 0 6rem;
    background: white;
}

.white-about-header {
    margin-bottom: 2rem;
}

.white-section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin: 0;
}

.white-about-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 0;
}

/* Statement Section */
.white-statement-section {
    padding: 3rem 0 6rem;
    background: white;
}

.white-statement-header {
    margin-bottom: 2rem;
}

.white-statement-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 0;
}

/* Founders Section */
.white-founders-section {
    padding: 3rem 0 2rem;
    background: white;
}

.white-founders-header {
    margin-bottom: 2rem;
}

.white-founders-intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 0;
}

/* Founders Grid */
.white-founders-grid-section {
    padding: 3rem 0 8rem;
    background: white;
}

.white-founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.white-founder-circle {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.white-founder-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

.white-founder-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    color: white;
}

.founder-info-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    margin: 0 0 0.25rem 0;
}

.founder-info-overlay p {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* CTA Section */
.white-cta-section {
    padding: 0 0 6rem;
    background: white;
}

.white-cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 3rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.white-cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    z-index: 0;
}

.white-cta-content {
    position: relative;
    z-index: 2;
}

.white-cta-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin: 0 0 2rem 0;
    max-width: 700px;
}

.white-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #000;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.white-cta-button:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.white-cta-button svg {
    transition: transform 0.3s ease;
}

.white-cta-button:hover svg {
    transform: translateX(3px);
}

/* Footer Styles */
.white-footer {
    background: #f2f2f2 !important;
}

.dark-links a {
    color: #969696 !important;
}

.dark-links a:hover {
    color: var(--accent-orange) !important;
}

.dark-social a {
    color: #000 !important;
}

.dark-social a:hover {
    color: var(--accent-orange) !important;
}

.dark-copyright {
    color: #000 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .white-page-title {
        font-size: 3rem;
    }
    
    .white-section-title {
        font-size: 3rem;
    }
    
    .white-cta-title {
        font-size: 2.5rem;
    }
    
    .white-intro-text {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .white-hero-section {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }
    
    .white-page-title {
        font-size: 2.5rem;
    }
    
    .reveal-card {
        height: 400px;
    }
    
    .reveal-text {
        font-size: 2.5rem;
    }
    
    .white-text-content {
        max-width: 100%;
    }
    
    .white-intro-text {
        font-size: 1.5rem;
    }
    
    .white-section-title {
        font-size: 2.5rem;
    }
    
    .white-about-text,
    .white-statement-text,
    .white-founders-intro {
        font-size: 1rem;
    }
    
    .white-founders-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .white-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .white-page-title {
        font-size: 2rem;
    }
    
    .white-intro-text {
        font-size: 1.25rem;
    }
}
