/* =====================================================
   E.M.B.R.A.C.E. EMPOWERED LOVE - THE AWAKENING JOURNEY
   Modern, Vibrant, Transformational Design
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-plum: #6D2E46;
    --blush-beige: #F8F1EA;
    --rose-quartz: #F1C8D3;
    --sage-green: #A9BEA5;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #2C2C2C;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
}

/* =====================================================
   ABSTRACT BACKGROUND UTILITY
   ===================================================== */

.abstract-bg {
    position: relative;
    overflow: hidden;
}

.abstract-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('abstract_background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.abstract-bg-strong::before {
    opacity: 0.3;
}

/* =====================================================
   HERO SECTION - VIBRANT ABSTRACT BACKGROUND
   ===================================================== */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(109, 46, 70, 0.88) 0%, 
        rgba(109, 46, 70, 0.78) 50%,
        rgba(212, 175, 55, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-text h1 .accent {
    color: var(--gold);
    display: block;
    font-size: 0.7em;
    margin-top: 15px;
    font-weight: 700;
}

.hero-text .tagline {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-text .quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 40px;
    font-family: 'Crimson Pro', Georgia, serif;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-plum);
}

/* Hero Image - Modern Circular Frame */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(109, 46, 70, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(109, 46, 70, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 15px 0;
}

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

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* =====================================================
   SECTIONS
   ===================================================== */

.section {
    padding: 100px 40px;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--deep-plum);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* =====================================================
   BEACH IMAGE WITH TEXT OVERLAY SECTIONS
   ===================================================== */

.beach-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.beach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.beach-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.beach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(109, 46, 70, 0.75) 0%, 
        rgba(109, 46, 70, 0.65) 50%,
        rgba(212, 175, 55, 0.4) 100%);
    z-index: 1;
}

.beach-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
}

.beach-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.beach-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.beach-content .quote-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.beach-content .quote-box p {
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Crimson Pro', Georgia, serif;
    color: var(--gold);
    margin: 0;
}

/* =====================================================
   ABOUT SECTION - MODERN SPLIT LAYOUT
   ===================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--deep-plum);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(241, 200, 211, 0.3), rgba(169, 190, 165, 0.3));
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border-left: 5px solid var(--gold);
}

/* =====================================================
   FRAMEWORK SECTION - CARDS
   ===================================================== */

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.framework-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 6px solid var(--rose-quartz);
}

.framework-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.framework-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rose-quartz), var(--sage-green));
    color: var(--deep-plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.framework-card h3 {
    font-size: 1.6rem;
    color: var(--deep-plum);
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing-section {
    background: linear-gradient(135deg, var(--deep-plum) 0%, #5D2A3E 100%);
    color: var(--white);
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-section .section-title {
    color: var(--white);
}

.price-display {
    margin: 40px 0;
}

.price-old {
    font-size: 2.5rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 10px;
}

.price-new {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
}

.price-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.payment-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.payment-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.payment-btn-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-btn-price {
    font-size: 1.8rem;
    color: var(--gold);
}

.payment-btn:hover .payment-btn-price {
    color: var(--white);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark);
}

.testimonial-author {
    font-weight: 700;
    color: var(--deep-plum);
}

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

.footer {
    background: var(--deep-plum);
    color: var(--white);
    padding: 60px 40px 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .framework-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-buttons {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        width: 100%;
        height: 400px;
    }
    
    .beach-content {
        padding: 60px 20px;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

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

.bg-light {
    background-color: var(--blush-beige);
}

.bg-white {
    background-color: var(--white);
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

