/* ===================================
   RADICAL MINDSET MOVEMENT
   Modern Feminine Empowerment Brand
   =================================== */

/* === COLOR PALETTE === */
:root {
    /* Backgrounds */
    --color-cream: #FFF8F0;
    --color-white: #FFFFFF;
    
    /* Primary Brand Colors - Magenta Focus */
    --color-magenta: #E91E8C;
    --color-magenta-light: #FF4FA3;
    --color-magenta-dark: #C41674;
    
    /* Accents */
    --color-blush: #FFB6D9;
    --color-rose: #FF8CC6;
    
    /* Gold/Champagne */
    --color-gold: #D4AF37;
    --color-gold-light: #F4D03F;
    
    /* Contrast */
    --color-black: #0A0A0A;
    --color-charcoal: #2D2D2D;
    --color-gray: #6B7280;
    
    /* Supporting Colors */
    --color-beige: #FFF3E6;
    --color-mocha: #8B7355;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    --gradient-magenta: linear-gradient(135deg, #FF4FA3 0%, #E91E8C 100%);
    --gradient-gold: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    --gradient-magenta-gold: linear-gradient(135deg, #E91E8C 0%, #D4AF37 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(233, 30, 140, 0.1);
    --shadow-medium: 0 8px 30px rgba(233, 30, 140, 0.15);
    --shadow-strong: 0 12px 40px rgba(233, 30, 140, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Lato', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1.2rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--color-charcoal);
}

.accent-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--color-magenta);
    font-size: 1.2em;
}

.subheading {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--color-mocha);
    line-height: 1.6;
}

/* === HEADER & NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
}

.logo:hover {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-magenta);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-magenta);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-magenta);
    color: var(--color-white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 140, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-black);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--gradient-magenta);
    color: var(--color-white);
    box-shadow: 0 6px 25px rgba(233, 30, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(233, 30, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-magenta);
}

.btn-secondary:hover {
    background: var(--gradient-magenta);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-charcoal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* === SECTIONS === */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.section-small {
    padding: var(--spacing-lg) var(--spacing-md);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--color-magenta);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFE8F5 50%, var(--color-cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(233,30,140,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero .subheading {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* === CARDS === */
.card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-magenta);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.card h4 {
    margin-bottom: 1rem;
    color: var(--color-black);
}

.card p {
    color: var(--color-charcoal);
    line-height: 1.7;
}

/* === GRID LAYOUTS === */
.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* === TESTIMONIALS === */
.testimonial {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--color-magenta-light);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--color-mocha);
}

.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* === FORMS === */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-black);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--color-beige);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-magenta);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* === EMAIL SIGNUP === */
.email-signup {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--color-beige);
    border-radius: 50px;
    font-size: 1rem;
}

.email-input:focus {
    outline: none;
    border-color: var(--color-magenta);
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-charcoal) 100%);
    color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* === FOOTER === */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-magenta-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-magenta-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gradient-magenta);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* === DIVIDERS === */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-magenta), transparent);
    margin: var(--spacing-lg) 0;
}

.wave-divider {
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="%23FAF7F4"/></svg>') no-repeat bottom;
    background-size: cover;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations - will be triggered by JS */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === FLOATING CTA === */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.floating-cta.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .email-signup {
        padding: 2rem 1.5rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }

/* Background colors */
.bg-cream { background-color: var(--color-cream); }
.bg-white { background-color: var(--color-white); }
.bg-beige { background-color: var(--color-beige); }
.bg-black { background-color: var(--color-black); }

/* Text colors */
.text-gold { color: var(--color-gold); }
.text-magenta { color: var(--color-magenta); }
.text-black { color: var(--color-black); }
.text-white { color: var(--color-white); }
