﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #2c3e50; /* Dark Slate */
    --secondary: #ecf0f1; /* Soft Grey */
    --accent: #d35400; /* Terracotta */
    --accent-hover: #e67e22;
    --text-main: #34495e;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --radius: 12px;
}

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

body {
    font-family: var(--font-body);
    background-color: #fcfdfd;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-icon { width: 32px; height: 32px; margin-right: 12px; }

.nav-links a {
    margin-left: 30px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

/* Hero */
.hero {
    margin-top: 80px;
    min-height: 85vh;
    background: linear-gradient(to right, #ece9e6, #ffffff);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-image {
    height: 600px;
    background: #ddd url('hero-yoga.jpg') center/cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}

/* Trust */
.trust-strip {
    background: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
    font-family: var(--font-head);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Features */
.features { padding: 100px 0; }

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.4s;
    border: 1px solid #eee;
}

.feature-item:hover { transform: translateY(-10px); border-color: var(--accent); }

.icon-box {
    width: 70px; height: 70px;
    background: rgba(211, 84, 0, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.feature-item h3 { margin-bottom: 15px; color: var(--primary); }

/* Bridge / Article Teaser */
.bridge-section {
    background: var(--secondary);
    padding: 100px 0;
}

.bridge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.bridge-text { flex: 0 0 55%; }
.bridge-text h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; color: var(--primary); }
.link-arrow { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 10px; }

/* Lead Form Area */
.lead-section {
    padding: 100px 0;
    background: url('pattern.png'); /* Optional texture */
}

.lead-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.offer-box {
    padding-top: 20px;
}

.offer-box h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; color: var(--primary); }
.highlight { color: var(--accent); }

.checklist li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--primary);
}

.checklist i { color: var(--accent); }

.form-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; color: var(--text-light); }
.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
}

.form-group input:focus { border-color: var(--accent); outline: none; background: #fff; }

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover { background: var(--accent-hover); box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3); }

/* Footer */
footer { background: var(--primary); color: #95a5a6; padding: 80px 0 30px; }
.footer-cols { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; margin-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-brand h4 { color: var(--white); font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; }
.footer-nav { display: flex; gap: 30px; justify-content: flex-end; }
.footer-nav a:hover { color: var(--white); }

/* Article Page */
.article-wrap { max-width: 800px; margin: 120px auto 60px; padding: 0 24px; }
.article-head h1 { font-family: var(--font-head); font-size: 3rem; color: var(--primary); margin-bottom: 10px; line-height: 1.2; }
.article-content { font-size: 1.2rem; color: #444; margin-top: 40px; }
.article-content p { margin-bottom: 25px; }
.article-content h2 { margin-top: 50px; margin-bottom: 20px; color: var(--primary); font-family: var(--font-head); }
.img-block { width: 100%; height: 450px; background: #ddd; border-radius: var(--radius); margin: 40px 0; object-fit: cover; }

/* Legal */
.legal-wrap { max-width: 900px; margin: 120px auto; padding: 0 24px; color: #444; }
.legal-wrap h1 { font-family: var(--font-head); color: var(--primary); margin-bottom: 30px; }

/* Mobile */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { height: 350px; order: -1; }
    .features-grid { grid-template-columns: 1fr; }
    .bridge-content { flex-direction: column; text-align: center; }
    .lead-wrapper { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; text-align: center; }
    .footer-nav { justify-content: center; flex-direction: column; gap: 10px; }
    .nav-links { display: none; }
}
