/* Main styles for DecorViz AI website */

/* Base styles */
html {
    scroll-padding-top: 100px;
}

/* Utility Classes for Inline Style Refactoring */
.hero-cta-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.hero-cta-link {
    text-decoration: none;
}

.btn-secondary {
    padding: 15px 30px;
    font-size: 18px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-card-wrapper {
    background: var(--surface-white);
    padding: 40px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-card-wrapper {
        padding: 30px 15px;
    }
}

.gallery-image-title {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-image-frame {
    background: var(--surface-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.gallery-image-frame img {
    width: 100%;
    display: block;
}

.gallery-caption {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

.social-proof-cta-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-proof-cta-link {
    text-decoration: none;
    display: inline-block;
}

.form-note-login {
    margin-top: 15px;
}

.form-note-login a {
    color: var(--primary-color);
    text-decoration: none;
}

/* End Utility Classes for Inline Style Refactoring */
:root {
    /* Accent colors */
    --primary-color: #FF7A45;
    /* Original bright orange */
    --primary-hover: #FF8E63;

    /* Base colors */
    --bg-color: #FAFAF8;
    --surface-white: #FFFFFF;
    --surface-soft: #F3F3F1;
    --border-color: #E6E6E2;

    /* Text colors - WCAG AA Compliant */
    --text-primary: #1C1C1C;
    /* 15.3:1 contrast ✓ */
    --text-secondary: #5F5F5F;
    /* 5.74:1 contrast ✓ */
    --text-muted: #757575;
    /* 4.54:1 contrast ✓ (darker than #9A9A9A) */

    /* Button gradient animation */
    --button-gradient: linear-gradient(90deg, #FF7A45, #ff9a46, #ff5e62, #FF7A45);
    --button-gradient-size: 300%;
    --button-animation-speed: 4s;
    --button-animation-speed-hover: 1s;

    /* Legacy */
    --text-color: #1C1C1C;
    --secondary-bg: #FFFFFF;
    --card-bg: #FFFFFF;

    /* Spacing System */
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
    --card-padding: 30px;
    --card-padding-mobile: 20px;
    
    /* Border Radius */
    --radius-card: 12px;
    --radius-button: 5px;
    --radius-input: 8px;
    
    /* Transitions */
    --transition-standard: 0.3s ease;
    --transition-lift: transform 0.3s, border-color 0.3s, background-color 0.3s;
    
    /* Shadows */
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-button: 0 4px 15px rgba(255, 120, 70, 0.4);
    
    /* Gaps */
    --gap-large: 40px;
    --gap-medium: 30px;
    --gap-small: 20px;
}

/* ========================================
   TYPOGRAPHY SYSTEM - Global Standards
   ======================================== */

/* Headings */
h1 {
    font-size: 56px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h2 {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    color: var(--text-primary);
}

h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Body Text */
p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 100px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   MOBILE TYPOGRAPHY OVERRIDES
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }
}