/* 
  Theme: Premium, Trustworthy, Warm
  Target: 4050 Women
*/

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

:root {
    /* Color Palette */
    --color-primary: #2D3436;
    /* Dark Charcoal from new logo */
    --color-secondary: #E5DBCF;
    /* Warm Beige - Comfort */
    --color-accent: #8DA9C4;
    /* Soft Blue - Calm */
    --color-background: #FDFBF7;
    /* Off-white Paper tone */
    --color-text: #333333;
    /* Dark Charcoal - Readability */
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-border: #E0E0E0;

    /* Typography - Larger for 4050 */
    --font-main: 'Noto Sans KR', sans-serif;
    --font-heading: 'Playfair Display', serif;
    /* Elegant headings */

    --size-base: 18px;
    /* Increased base size */
    --size-h1: 3.5rem;
    --size-h2: 2.5rem;
    --size-h3: 1.75rem;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* UI */
    --radius-sm: 8px;
    --radius-md: 16px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    font-size: var(--size-base);
    line-height: 1.6;
    overflow-x: hidden;
    word-break: keep-all;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Classes */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

h1 {
    font-size: var(--size-h1);
}

h2 {
    font-size: var(--size-h2);
}

h3 {
    font-size: var(--size-h3);
}

p {
    margin-bottom: var(--spacing-md);
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

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

/* Layout - Header */
header {
    background: rgba(255, 255, 255, 0);
    /* Transparent initially for clean look over hero if possible, but safe fallback logic needed */
    /* Let's go with a safe "Glassmorphism" start that transitions to solid */
    background: rgba(255, 255, 255, 0.95);
    /* Keep high visibility for safety */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    /* Hidden initially */
    padding: var(--spacing-sm) 0;
    /* Slightly reduced padding */
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Clean shadow */
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo img {
    height: 70px;
    mix-blend-mode: multiply;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        max-width: 100%;
        margin-bottom: var(--spacing-lg);
    }
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-white);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: var(--radius-sm);
    padding: 10px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
/* Hero Section */
/* Hero & Parallax Sections */
.hero,
.about-hero,
.bg-content-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--color-white);
    background-color: #2D3436;
    z-index: 1;

    /* Apple-style Full Screen & Parallax */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Specific Backgrounds applied to container for fixed effect */
.hero {
    background-image: url('../images/hero_bg_sebasi.jpg');
}

.about-hero {
    background-image: url('../images/about/about_lecture_wide.jpg');
}

.bg-story-1 {
    background-image: url('../images/about/about_lecture_standing.jpg');
}

.bg-story-2 {
    background-image: url('../images/hero_bg.jpg');
}

.bg-authority {
    background-image: url('../images/about/about_meeting.jpg');
}

.bg-books {
    background-image: url('../images/work_book.png');
}

/* Disable old pseudo-element backgrounds */
.hero::before,
.about-hero::before,
.bg-story-1::before,
.bg-story-2::before,
.bg-authority::before,
.bg-books::before {
    display: none;
}

/* Overlay Layer - Still using pseudo-element */
.hero::after,
.about-hero::after,
.bg-content-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Typography Enhancements for Full Screen */
.hero h1,
.about-hero h1,
.bg-content-section h3,
.bg-content-section h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p,
.about-hero p,
.bg-content-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animations for "Lively" feel */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

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

/* Features/Highlights */
.highlights {
    background-color: var(--color-white);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --size-h1: 2.5rem;
        --size-h2: 2rem;
    }

    .nav-links {
        display: none;
        /* JS to toggle */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-soft);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

    /* Fix background fixed attachment on mobile */
    .hero,
    .about-hero,
    .bg-content-section {
        background-attachment: scroll;
        background-position: 65% 20%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Payment Form Mock */
.payment-options {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.payment-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
}

.payment-btn:hover,
.payment-btn.selected {
    border-color: var(--color-primary);
    background: #f0f4f8;
    font-weight: bold;
}

/* Tab Styles for Reviews Page */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--color-border);
}

.tab-btn {
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--color-primary);
}

.tab-btn.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    font-weight: 700;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.review-img {
    max-width: 800px;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

/* Contact Page Redesign */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 80px);
    /* Subtract approximate header height */
    width: 100%;
}

.contact-image-side {
    flex: 1;
    flex-basis: 500px;
    background-image: url('../images/trevari_club.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.contact-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.7) 0%, rgba(45, 52, 54, 0.2) 100%);
}

.contact-image-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    z-index: 1;
    max-width: 80%;
}

.contact-image-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.contact-image-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-side {
    flex: 1;
    flex-basis: 500px;
    padding: 60px 80px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #666;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.contact-input {
    width: 100%;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.contact-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(45, 52, 54, 0.1);
}

.contact-input::placeholder {
    color: #bbb;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .contact-form-side {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-image-side {
        height: 300px;
        min-height: 300px;
        flex: none;
    }

    .contact-image-content {
        left: 30px;
        bottom: 30px;
    }

    .contact-image-content h2 {
        font-size: 2rem;
    }

    .contact-form-side {
        padding: 40px 20px;
    }
}

/* Books Page Redesign */
.book-hero {
    min-height: 60vh;
    /* Slightly shorter than main hero */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/books_hero_profile.jpg');
    position: relative;
    color: white;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Enhance text visibility */
}

.book-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Standardized overlay opacity */
    z-index: 1;
}

.book-hero .container {
    z-index: 2;
    position: relative;
}

/* Standardized Typography for Book Hero */
.book-hero h1 {
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.book-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.book-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.book-section:nth-child(even) {
    background-color: #f9f9f9;
    /* Clean light gray */
}

.book-section:nth-child(odd) {
    background-color: #ffffff;
    /* Clean white */
}

.book-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.book-section:nth-child(even) .book-content {
    flex-direction: row-reverse;
    /* Apple-style alternating */
}

.book-cover-art {
    flex: 1;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Floating effect */
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.book-cover-art:hover {
    transform: scale(1.02);
}

.book-details {
    flex: 1;
    text-align: left;
}

.book-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1d1d1f;
    /* Apple gray */
}

.book-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #424245;
}

@media (max-width: 768px) {

    .book-content,
    .book-section:nth-child(even) .book-content {
        flex-direction: column;
        text-align: center;
    }

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

/* Specific Background for About Page Books Section */
.bg-books {
    background-image: url('../images/books_hero_meditation.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
    position: relative;
}

.bg-books::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay for contrast */
    z-index: 1;
}

.bg-books .container {
    z-index: 2;
    position: relative;
    color: white;
    /* Ensure text is white */
}

color: white !important;
border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Lectures Page Redesign */
.lecture-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/about/about_lecture_wide.jpg');
    position: relative;
    color: white;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lecture-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: none;
    z-index: 1;
}

.lecture-hero .container {
    z-index: 2;
    position: relative;
}

.lecture-category-section {
    padding: 100px 0;
    min-height: auto;
}

.lecture-category-section:nth-child(odd) {
    background-color: #ffffff;
}

.lecture-category-section:nth-child(even) {
    background-color: #f9f9f9;
}

.lecture-separator {
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--color-primary);
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 0;
}

.lecture-separator::after {
    display: none;
}

.lecture-separator .container {
    z-index: 2;
    position: relative;
}

.bg-sep-1 {
    background-image: url('../images/about/about_workshop.jpg');
}

.bg-sep-2 {
    background-image: url('../images/about/about_meeting.jpg');
}

.course-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

/* Contact Page New Styles */
.contact-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../images/contact/hero_bg_sebasi.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero .contact-hero-content {
    z-index: 2;
    position: relative;
}

/* Standardized Typography for Contact Hero */
.contact-hero h1 {
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-form-parallax {
    min-height: 100vh;
    background-image: url('../images/about/about_workshop.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
}

.contact-form-parallax::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.contact-form-card h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Mobile Optimization for Parallax */
@media (max-width: 768px) {

    .lecture-hero,
    .book-hero,
    .contact-hero,
    .contact-form-parallax,
    .lecture-separator {
        background-attachment: scroll !important;
        background-position: center center !important;
    }
}

/* Align buttons to bottom in lecture cards */
.course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card .btn {
    margin-top: auto;
}

/* Reviews Page Hero */
.reviews-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../images/reviews_hero.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.reviews-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.reviews-hero .container {
    padding-top: 100px;
    z-index: 2;
    position: relative;
}

/* Standardized Typography to match Home/About */
.reviews-hero h1 {
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Inherited font-size from root/global h1 */
}

.reviews-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .reviews-hero {
        background-attachment: scroll !important;
        background-position: center center !important;
        min-height: 50vh;
    }

    .reviews-hero h1 {
        font-size: 2.5rem;
    }
}