/* ===================================
   BODYWORK AT WORK - Design System
   Cloned from bodyworkatwork.com
   =================================== */

:root {
    /* Colors */
    --primary-green: #2CD307;
    --primary-green-hover: #26b806;
    --text-dark: #353E3C;
    --bg-light: #FAF9F9;
    --bg-hero: #FAFFFA;
    --highlight-green: #DAF8C9;
    --white: #FFFFFF;
    --gray-light: #f5f5f5;
    --gray-medium: #888;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Cabin', sans-serif;
    --font-body: 'Varela Round', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 18px;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
}

h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h3 {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark);
}

h4 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

p {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
}

.highlight {
    background-color: var(--highlight-green);
    padding: 0 8px;
    border-radius: 4px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 300px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 211, 7, 0.3);
}

/* ===================================
   HEADER / NAVIGATION - Premium Design
   =================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-height: 90px;
    padding: 0 5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(44, 211, 7, 0.1);
}

/* Gradient accent line at bottom */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-green) 0%,
            #4AE54A 50%,
            var(--primary-green) 100%);
    opacity: 0.8;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container a:hover {
    transform: scale(1.02);
}

.logo-container img {
    height: 95px;
    width: auto;
}

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

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #4AE54A);
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
}

nav a:hover::before {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Social Icons - Modern Style */
.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4AE54A 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 211, 7, 0.35);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Header CTA Button - Premium Glow */
.header-actions .btn-primary {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #26b806 100%);
    box-shadow: 0 4px 15px rgba(44, 211, 7, 0.3);
    border: none;
}

.header-actions .btn-primary:hover {
    background: linear-gradient(135deg, #26b806 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 25px rgba(44, 211, 7, 0.45);
    transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem 6rem;
    background-color: var(--bg-hero);
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='%23e0e0e0' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    padding-right: 4rem;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 1rem;
    color: var(--text-dark);
    max-width: 520px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Hero Pills / Tags */
.hero-tags {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-tag {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===================================
   PROBLEMS SECTION
   =================================== */
.problems {
    background-color: var(--white);
    padding: 5rem 6rem;
    text-align: center;
}

.problems h2 {
    margin-bottom: 3rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.problem-card p {
    font-size: 18px;
}

/* ===================================
   WHY SECTION
   =================================== */
.why-section {
    background-color: var(--bg-hero);
    padding: 5rem 6rem;
}

.why-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-section>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ===================================
   MEMBERSHIP PLANS
   =================================== */
.plans {
    background-color: var(--white);
    padding: 5rem 6rem;
    text-align: center;
}

.plans h2 {
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background-color: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.plan-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.plan-card p {
    font-size: 16px;
    color: var(--gray-medium);
}

/* ===================================
   PROCESS STEPS
   =================================== */
.process {
    background-color: var(--bg-hero);
    padding: 5rem 6rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 16px;
    color: var(--gray-medium);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background-color: var(--white);
    padding: 5rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 6rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        margin: 0 auto 1rem;
    }

    .hero-tags {
        justify-content: center;
    }

    .problems-grid,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    nav {
        display: none;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        font-size: 18px;
    }

    .hero,
    .problems,
    .why-section,
    .plans,
    .process,
    .about,
    footer {
        padding: 3rem 1.5rem;
    }

    .problems-grid,
    .plans-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}