/*
Theme Name: GrowMyTown Custom Landing Page
Author: Antigravity
Description: Custom single page template
Version: 1.0
*/
/* 
==================================================
   GROW MY TOWN - BRAND STYLES
   High-Ticket Coaching Infrastructure
================================================== 
*/

:root {
    /* Brand Colors */
    --clr-primary-green: #1B3B2B;
    --clr-accent-gold: #D4AF37;
    --clr-light-cream: #FDFBF7;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-section-desktop: 120px;
    --spacing-section-mobile: 80px;
    --spacing-container: 20px;
    
    /* Transition */
    --transition-calm: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==================================================
   RESET & BASE STYLES
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-primary-green);
    background-color: var(--clr-light-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================================================
   TYPOGRAPHY
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: inherit;
}

.hero-headline {
    font-size: clamp(40px, 6vw, 72px);
    max-width: 900px;
    margin: 0 auto 32px;
}

.section-headline {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 32px;
}

.hero-subheadline {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
    color: rgba(27, 59, 43, 0.85); /* Slightly muted green */
}

.hero-price-line {
    font-size: clamp(17px, 1.9vw, 21px);
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto 32px;
    line-height: 1.5;
    color: var(--clr-accent-gold);
}

.body-text {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 300;
}

.large-body {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ==================================================
   LAYOUT & CONTAINERS
================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
    position: relative;
    z-index: 2;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    padding: var(--spacing-section-mobile) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section {
        padding: var(--spacing-section-desktop) 0;
    }
}

.bg-cream {
    background-color: var(--clr-light-cream);
    color: var(--clr-primary-green);
}

.bg-dark {
    background-color: var(--clr-primary-green);
    color: var(--clr-light-cream);
}

.text-light h2, .text-light p {
    color: var(--clr-light-cream);
}

/* ==================================================
   COMPONENTS
================================================== */

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-calm);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--clr-accent-gold);
    color: var(--clr-primary-green);
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 2px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 59, 43, 0.1);
}

.cta-wrapper {
    margin-top: 40px;
}

.cta-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Proof Strip */
.proof-strip {
    padding: 60px 0;
}

.highlighted-strip {
    background-color: var(--clr-accent-gold);
    color: var(--clr-primary-green);
    border-top: 1px solid rgba(27, 59, 43, 0.1);
    border-bottom: 1px solid rgba(27, 59, 43, 0.1);
}

.proof-text-small {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--clr-primary-green);
    opacity: 0.9;
    text-transform: uppercase;
}

.proof-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}

.proof-logo {
    height: 55px;
    max-width: 180px;
    object-fit: contain;
    mix-blend-mode: multiply; /* Seamlessly removes the white background from the Spark of Life logo */
    filter: grayscale(100%) contrast(1.2) opacity(0.5); /* Elegant, understated monochrome look */
    transition: all var(--transition-calm);
}

.proof-logo:hover {
    filter: grayscale(0%) contrast(1) opacity(1); /* Beautiful pop of color on hover */
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .proof-logos {
        gap: 80px;
    }
    .proof-logo {
        height: 70px;
        max-width: 220px;
    }
}

/* Content Grid (Problem Section) */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* Soft Texture Placeholder */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: rgba(27, 59, 43, 0.03);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Feature List (Solution Section) */
.feature-list {
    list-style: none;
    max-width: 800px;
    margin: 48px auto;
}

.feature-list li {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.gold-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--clr-accent-gold);
    border-radius: 50%;
    margin-top: 12px;
    margin-right: 20px;
    flex-shrink: 0;
}

.pricing-badge {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 40px;
}

.pricing-line {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--clr-accent-gold);
    font-style: italic;
}

/* Offer Section */
.offer-box {
    background-color: #F8F5EF;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 60px);
    border: 1px solid rgba(27, 59, 43, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.price-line-accent {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--clr-primary-green);
    font-size: 20px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.calendar-container {
    margin-top: 60px;
    width: 100%;
}



/* FAQ Accordion */
.faq-accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(27, 59, 43, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(27, 59, 43, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 32px 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 28px);
    color: var(--clr-primary-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-calm);
}

.faq-question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 300;
    transition: transform var(--transition-calm);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-calm);
}

.faq-answer p {
    padding-bottom: 32px;
    font-size: 18px;
    font-weight: 300;
    color: rgba(27, 59, 43, 0.85);
}

/* Footer */
.footer {
    padding: 60px 0;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
}

.footer a {
    color: var(--clr-light-cream);
    text-decoration: none;
    transition: opacity var(--transition-calm);
}

.footer a:hover {
    opacity: 0.7;
}

/* ==================================================
   ANIMATIONS & EFFECTS
================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Abstract CSS Shapes (Subtle Textures/Backgrounds) */
.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(212, 175, 55, 0.05);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background-color: rgba(253, 251, 247, 0.03);
    bottom: -200px;
    left: -200px;
}

