/* ============================================================================
   KAIROS LANDING PAGE STYLES
   Warm elegant design matching mobile app theme
   ============================================================================ */

/* Landing Page Specific Variables */
:root {
    --blue-cta: rgb(75, 116, 237);
    --blue-cta-hover: rgb(60, 95, 210);
}

/* ============================================================================
   BODY & LAYOUT
   ============================================================================ */

.landing-page {
    background: #fef7f0;
}

/* ============================================================================
   HEADER
   ============================================================================ */

.landing-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================================================================
   BLUE CTA BUTTON STYLING
   ============================================================================ */

.blue-cta {
    background-color: var(--blue-cta);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(75, 116, 237, 0.2);
}

.blue-cta:hover {
    background-color: var(--blue-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(75, 116, 237, 0.3);
}

.blue-cta.large-cta {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
    min-width: 200px;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
    padding: clamp(3rem, 8vh, 6rem) 0;
    background: linear-gradient(180deg, 
        rgba(250, 240, 230, 0.3) 0%, 
        rgba(250, 240, 230, 0.6) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 5vw, 4rem);
    }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
}

.hero-text {
    text-align: left;
}

@media (max-width: 767px) {
    .hero-text {
        text-align: center;
    }
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    font-family: Georgia, 'Times New Roman', serif;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.hero-cta {
    margin-top: var(--spacing-lg);
}

/* ============================================================================
   SECTION SHARED STYLES
   ============================================================================ */

section {
    padding: clamp(3rem, 8vh, 5rem) 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-family: Georgia, 'Times New Roman', serif;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================================
   WHY SECTION
   ============================================================================ */

.why-section {
    background: rgba(255, 255, 255, 0.6);
}

.why-text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.8;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================================================
   PRODUCT SECTION
   ============================================================================ */

.product-section {
    background: var(--bg-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.product-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.product-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: Georgia, 'Times New Roman', serif;
}

.product-card p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   VALUES SECTION
   ============================================================================ */

.values-section {
    background: rgba(255, 255, 255, 0.4);
}

.values-intro {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xxl);
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.value-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-family: Georgia, 'Times New Roman', serif;
}

.value-card p {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    line-height: 1.7;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */

.about-section {
    background: var(--bg-primary);
}

.about-text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.8;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================================================
   FINAL CTA SECTION
   ============================================================================ */

.final-cta-section {
    background: linear-gradient(180deg, 
        rgba(212, 165, 116, 0.1) 0%, 
        rgba(212, 165, 116, 0.2) 100%);
    text-align: center;
    padding: clamp(4rem, 10vh, 6rem) 0;
}

.cta-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    font-family: Georgia, 'Times New Roman', serif;
}

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

.landing-footer {
    background-color: rgba(250, 240, 230, 0.6);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-color);
}

.footer-text {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.copyright {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    text-align: center;
    margin-top: var(--spacing-sm);
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

/* Mobile Optimizations */
@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-content {
        gap: var(--spacing-lg);
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .product-card,
    .value-card {
        padding: var(--spacing-lg);
    }
    
    .blue-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .landing-header .blue-cta {
        width: auto;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-xs);
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-grid,
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-image {
        max-width: 550px;
    }
}
