:root {
    --primary: #525498; 
    --accent: #AC4893; 
    --highlight: #F68D2B; 
    --text-dark: #333333;
    --text-light: #F6F6F6;
    --bg-light: #ffffff;
    --bg-grey: #F6F6F6;
    --font-header: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; 
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.logo img {
    height: 60px; 
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    font-family: var(--font-header);
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    border: 2px solid var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--primary);
    color: white !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(82, 84, 152, 0.85), rgba(82, 84, 152, 0.7)), url('images/MainBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-header);
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(172, 72, 147, 0.3);
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    font-family: var(--font-header);
    font-size: 1.1rem;
    border-radius: 50px;
    margin-left: 1rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-light { background-color: var(--bg-light); }
.section-grey { background-color: var(--bg-grey); }
.section-dark {
    background-color: var(--primary);
    color: white;
}
.text-white { color: white; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-block h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.card-icon {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--highlight);
    font-family: var(--font-header);
}

/* Video Section */
.video-main {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    background: black;
}

.video-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.video-card h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-family: var(--font-header);
}

.video-wrapper-vertical {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9/16;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    background: black;
    margin: 0 auto;
}

/* Book Section */
.book-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 8px solid var(--accent);
}

.book-content {
    max-width: 700px;
}

.book-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.book-list li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

/* Luxury Lists (Who It Serves) */
.luxury-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxury-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.luxury-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.luxury-list.white-text li {
    color: rgba(255, 255, 255, 0.9);
}
.luxury-list.white-text li::before {
    color: var(--highlight);
}

.highlight-box {
    background: white;
    border-left: 5px solid var(--primary);
    padding: 2rem;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

/* Directory Controls */
.directory-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.search-wrapper {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 500px;
}

input#locationInput {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #ccc;
    flex-grow: 1;
    font-family: var(--font-body);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 50px;
    font-family: var(--font-header);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.search-btn:hover {
    background: var(--primary);
}

.toggle-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-header);
    text-transform: uppercase;
    transition: all 0.2s;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
}

/* Directory Grid */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.practitioner-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.practitioner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.role-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.practitioner-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

.business-name {
    color: #777;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #555;
    background: #f9f9f9;
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid var(--accent);
}

.testimonial p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-header);
    text-transform: uppercase;
    font-style: normal;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 5rem 0 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.footer-cta {
    margin: 2rem 0;
}

.copyright {
    color: #777;
    font-size: 0.8rem;
    margin-top: 3rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem 1rem;
        position: relative;
    }
    .logo img {
        height: 50px;
        margin-bottom: 0.5rem;
    }
    .nav-links {
        margin-top: 0.5rem;
        gap: 1rem;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        padding-top: 20px;
        height: auto;
        min-height: 80vh;
    }
    .hero h1 { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .btn-secondary { margin-left: 0; }
    
    .split-layout, .grid-4, .grid-2-col, .testimonial-grid, .directory-grid, .video-reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .container { padding: 3rem 1.5rem; }
    .search-wrapper { flex-direction: column; }
    .search-btn { padding: 1rem; width: 100%; }
    input#locationInput { width: 100%; box-sizing: border-box; }
    .section-title { font-size: 2rem; }
    .highlight-box { text-align: left; padding: 1.5rem; font-size: 1rem; }
    .benefit-card { padding: 1.5rem; }
}