/* File: /public/css/pages/landing.css */
/* White-Label Landing Page Styles */
/* v2.0.0 - Full white-label support with CSS variables */
/*
 * CHANGES IN v2.0.0:
 * - Removed body background (now handled by base.css)
 * - Replaced 'Cinzel', serif with var(--font-display)
 * - Replaced var(--wryon-green) with var(--brand-primary)
 * - Replaced var(--greek-gold) with var(--brand-secondary)
 * - Replaced hardcoded rgba colors with CSS variable rgb versions
 *
 * DEPENDENCIES:
 * - Requires css/core/variables.css loaded BEFORE this file
 * - Requires css/core/base.css for background
 * - Ambient effects via js/components/ambient-effects.js
 */

html {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
}

/* Landing Page Specific Styles */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.wryon-logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 2rem;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(var(--brand-primary-rgb), 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(var(--brand-primary-rgb), 0.6));
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--brand-primary);
    text-shadow: 
        0 0 20px rgba(var(--brand-primary-rgb), 0.8),
        0 0 40px rgba(var(--brand-primary-rgb), 0.4),
        0 4px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: var(--brand-secondary);
    text-shadow: 
        0 0 15px rgba(var(--brand-secondary-rgb), 0.6),
        0 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
    padding: 1rem 2rem;
    background: rgba(10, 20, 10, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.hero-description {
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    padding: 1.5rem 2rem;
    background: rgba(10, 20, 10, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-button {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.25), rgba(var(--brand-primary-rgb), 0.15));
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    box-shadow: 
        0 0 20px rgba(var(--brand-primary-rgb), 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-primary:hover {
    background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.35), rgba(var(--brand-primary-rgb), 0.25));
    box-shadow: 
        0 0 30px rgba(var(--brand-primary-rgb), 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-secondary {
    background: linear-gradient(135deg, rgba(var(--brand-secondary-rgb), 0.25), rgba(var(--brand-secondary-rgb), 0.15));
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
    box-shadow: 
        0 0 15px rgba(var(--brand-secondary-rgb), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-secondary:hover {
    background: linear-gradient(135deg, rgba(var(--brand-secondary-rgb), 0.35), rgba(var(--brand-secondary-rgb), 0.25));
    box-shadow: 
        0 0 25px rgba(var(--brand-secondary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 3rem;
    padding: 2rem 1rem;
    scroll-margin-top: 80px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(15, 35, 15, 0.95), rgba(10, 25, 10, 0.3));
    border: 1px solid rgba(var(--brand-primary-rgb), 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--brand-primary-rgb), 0.5);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(var(--brand-primary-rgb), 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px rgba(var(--brand-primary-rgb), 0.4));
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(var(--brand-primary-rgb), 0.4);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.wryon-quote {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 35, 15, 0.95), rgba(10, 25, 10, 0.98));
    border-left: 4px solid var(--brand-primary);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.wryon-signature {
    display: block;
    margin-top: 1rem;
    text-align: right;
    color: var(--brand-secondary);
    font-style: normal;
    font-size: 0.9rem;
}

.disclaimer-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: rgba(15, 35, 15, 0.8);
    border: 1px solid rgba(var(--brand-primary-rgb), 0.2);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    backdrop-filter: blur(10px);
}

.disclaimer-section p {
    margin: 0;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-section {
        font-size: 0.85rem;
        padding: 1rem;
    }
}