/**
 * Public Brand Stylesheet
 * Wellness Club™ - Full brand colors and styling
 *
 * For public-facing pages (landing pages, marketing, registration flows).
 * Uses full teal-to-lime gradient brand colors.
 */

/* ============================================
   BRAND COLORS & GRADIENTS
   ============================================ */

:root {
    --gradient-primary: linear-gradient(135deg, #5CD5C8 0%, #BBDB44 100%);
    --color-teal: #5CD5C8;
    --color-lime: #BBDB44;
}

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

/* Hero Section with Background */
.hero-section {
    position: relative;
    min-height: 600px;
    background-image: url('../../../pre-launch/assets/images/01.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(92, 213, 200, 0.4) 0%, rgba(187, 219, 68, 0.2) 50%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */

/* Mountain Transition Section */
.mountain-section {
    min-height: 500px;
    background-image: url('../../../pre-launch/assets/images/02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Founder Message Section */
.founder-section {
    position: relative;
    background-image: url('../../../pre-launch/assets/images/03.jpg');
    background-size: cover;
    background-position: center;
    background-color: #f8f8f8;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.founder-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(187, 219, 68, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.founder-content {
    position: relative;
    z-index: 1;
}

/* Journey Section with Gradient */
.journey-section {
    background: linear-gradient(135deg, #5CD5C8 0%, #BBDB44 100%);
    color: white;
}

/* ============================================
   BUTTONS
   ============================================ */

/* Gradient Button (Primary CTA) */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5CD5C8 0%, #BBDB44 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(92, 213, 200, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 213, 200, 0.4);
}

/* Primary Button (Black) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

/* Secondary Button (White with Black Border) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

/* ============================================
   CARDS
   ============================================ */

/* Feature Cards */
.feature-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

/* Journey Cards (Glassmorphism on gradient) */
.journey-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
}

.journey-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.journey-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) invert(1);
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* ============================================
   FORMS
   ============================================ */

.input-field {
    width: 100%;
    border: 1px solid #d1d5db;
    padding: 0.5rem;
}

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

.footer-dark {
    background: #1a1a1a;
    color: #ffffff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, #5CD5C8 0%, #BBDB44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GLOBAL UTILITIES
   ============================================ */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
}

/* Touch-Friendly Links */
a, button {
    -webkit-tap-highlight-color: rgba(92, 213, 200, 0.3);
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh;
        background-position: 65% center;
        background-attachment: scroll;
    }

    .hero-section::before {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .hero-content {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Mountain Section Mobile */
    .mountain-section {
        min-height: 300px;
        background-attachment: scroll;
        background-position: center 30%;
    }

    /* Founder Section Mobile */
    .founder-section {
        background-position: center;
        background-attachment: scroll;
    }

    /* Feature Cards Mobile */
    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    /* Journey Cards Mobile */
    .journey-card {
        padding: 2rem;
    }

    .journey-icon {
        width: 48px;
        height: 48px;
    }

    /* Video Card Mobile */
    .video-card {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    /* Buttons Mobile - Larger Touch Targets */
    .btn-gradient {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
        min-height: 56px;
        width: 100%;
        max-width: 100%;
    }

    /* Input Fields Mobile */
    input[type="text"] {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 56px;
    }

    button[type="submit"] {
        min-height: 56px;
    }
}

/* Extra Small Mobile (iPhone SE, etc) */
@media (max-width: 375px) {
    .hero-content h2 {
        font-size: 2.5rem !important;
    }

    .feature-card,
    .journey-card {
        padding: 1.5rem;
    }

    .video-card {
        padding: 1rem;
    }
}
