/* --- Global Styles & Variables --- */
:root {
    --bg-color: #000000;
    --accent-color: #9D2235; /* Burgundy */
    --secondary-accent: #B82A40; /* Slightly lighter/brighter burgundy for hover */
    --primary-color: #FFFFFF;
    --text-color: #FFFFFF;
    --text-muted: #CCCCCC;
    --text-darker-muted: #AAAAAA;
    --section-bg-darker: #111111; /* Slightly off-black for contrast */
    --card-bg: #1A1A1A; /* Darker card background */

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lato', sans-serif;

    /* Transition Speeds */
    --transition-speed: 0.4s;       /* Base speed for flex expand, transforms */
    --transition-fade: 0.5s;        /* Speed for main container fades (e.g., initial to triptych) */
    --transition-item-fade: 0.6s;   /* Speed for individual triptych items fading in */
    --transition-fast: 0.25s;       /* Faster hover effects */
    --menu-transition-speed: 0.4s;  /* Speed for mobile menu slide */

    /* Define desired height for the intro image area */
    --image-area-height: 650px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16.5px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23222222' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 3.8rem; font-weight: 900; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.7rem; }

p { margin-bottom: 1.1rem; color: var(--text-muted); }

a { color: var(--accent-color); text-decoration: none; transition: color var(--transition-fast) ease; }
a:hover { color: var(--secondary-accent); }

img, video { max-width: 100%; height: auto; display: block; }

.section-padding { padding: 90px 0; }

.section-title { text-align: center; margin-bottom: 4rem; position: relative; color: var(--primary-color); }
.section-title::after { content: ''; display: block; width: 70px; height: 4px; background-color: var(--accent-color); margin: 0.75rem auto 0; border-radius: 2px; }
.section-subtitle { font-size: 1.2rem; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-weight: 700; }
.section-subtitle-text { text-align: center; max-width: 650px; margin: -3rem auto 4.5rem auto; color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 14px 32px; font-family: var(--font-primary); font-weight: 700; border-radius: 5px; cursor: pointer; text-align: center; transition: all var(--transition-fast) ease; border: 2px solid transparent; font-size: 1rem; letter-spacing: 0.5px; }
.btn-primary { background-color: var(--accent-color); color: var(--primary-color); border-color: var(--accent-color); }
.btn-primary:hover { background-color: var(--secondary-accent); border-color: var(--secondary-accent); color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(157, 34, 53, 0.4); }
.btn-secondary { background-color: transparent; color: var(--primary-color); border: 2px solid var(--accent-color); }
.btn-secondary:hover { background-color: var(--accent-color); border-color: var(--accent-color); color: var(--primary-color); transform: translateY(-3px); }
.btn-large { padding: 16px 40px; font-size: 1.15rem; }

/* Visually Hidden Class */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* --- Header --- */
#main-header { position: sticky; top: 0; left: 0; width: 100%; z-index: 1000; background-color: transparent; padding: 20px 0; transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease; }
#main-header.scrolled { background-color: rgba(0, 0, 0, 0.95); box-shadow: 0 3px 12px rgba(0,0,0,0.6); padding: 12px 0; }
#main-header nav.header-layout { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.mobile-menu-toggle.always-visible { display: inline-flex; align-items: center; justify-content: center; background: none; border: none; color: var(--primary-color); font-size: 1.6rem; cursor: pointer; padding: 5px; z-index: 1101; flex-shrink: 0; }
.header-title { flex-grow: 1; text-align: center; color: var(--primary-color); font-family: var(--font-primary); font-size: 2rem; font-weight: 700; margin: 0 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.desktop-cta-btn.always-visible { display: inline-block; flex-shrink: 0; }
#main-nav-links.main-nav-links { display: none; }

/* Mobile Menu Panel */
.mobile-menu-container { display: block; position: fixed; top: 0; left: 0; width: 80%; max-width: 350px; height: 100vh; background-color: var(--card-bg); z-index: 1100; box-shadow: 5px 0 15px rgba(0, 0, 0, 0.4); padding: 80px 30px 30px; transform: translateX(-100%); transition: transform var(--menu-transition-speed) ease-in-out; visibility: hidden; }
.mobile-menu-container.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu-close { position: absolute; top: 20px; right: 25px; background: none; border: none; color: var(--primary-color); font-size: 2rem; cursor: pointer; padding: 5px; line-height: 1; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-start; padding-top: 2rem; }
.mobile-nav-list li { width: 100%; text-align: center; margin-bottom: 1.5rem; }
.mobile-nav-list li a { color: var(--primary-color); font-size: 1.4rem; font-weight: 700; text-decoration: none; padding: 10px 0; display: block; transition: color var(--transition-fast); }
.mobile-nav-list li a:hover { color: var(--accent-color); }

/* --- Hero Section --- */
.hero-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55)), url('3.jpeg') no-repeat center center/cover; color: var(--primary-color); padding: 40px 0; }
.hero-content h1 { color: var(--primary-color); margin-bottom: 0.5rem; }
.hero-content h2 { color: var(--accent-color); font-size: 2.6rem; margin-bottom: 1.8rem; font-weight: 700; }
.hero-content p { font-size: 1.25rem; max-width: 650px; margin: 0 auto 2.5rem auto; color: var(--text-muted); }
.scroll-down-indicator { position: absolute; bottom: 40px; left: 50%; color: var(--primary-color); font-size: 1.8rem; animation: bounce 2.5s infinite ease-in-out; opacity: 0.7; }
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -12px); } }

/* --- Introduction Section --- */
.intro-section { background-color: var(--section-bg-darker); }
.intro-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.image-column-wrapper { position: relative; height: var(--image-area-height); border-radius: 8px; overflow: hidden; background-color: #111; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; }
.initial-image-area, .triptych-image-area { width: 100%; height: 100%; position: absolute; top: 0; left: 0; opacity: 0; pointer-events: none; transition: opacity var(--transition-fade) ease-in-out; }
.initial-image-area.visible, .triptych-image-area.visible { opacity: 1; pointer-events: auto; position: relative; }
.initial-image-area.hidden, .triptych-image-area.hidden { opacity: 0; pointer-events: none; position: absolute; }
.initial-image-area img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.triptych-image-area { display: flex; gap: 8px; }
.triptych-item { flex: 1; position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; height: 100%; background-color: #000; opacity: 0; transition-property: flex-grow, opacity; transition-duration: var(--transition-speed), var(--transition-item-fade); transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1), ease-out; }
.triptych-image-area.visible .triptych-item { opacity: 1; }
.triptych-image-area.visible .triptych-item:nth-child(1) { transition-delay: 0.1s; }
.triptych-image-area.visible .triptych-item:nth-child(2) { transition-delay: 0.2s; }
.triptych-image-area.visible .triptych-item:nth-child(3) { transition-delay: 0.3s; }
.triptych-item img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 6px; transition: transform var(--transition-speed) ease; }
.triptych-image-area:hover .triptych-item:hover { flex-grow: 2.5; opacity: 1 !important; transition-delay: 0s !important; }
.triptych-image-area:hover .triptych-item:not(:hover) { flex-grow: 0.5; opacity: 0.7 !important; }
.triptych-image-area:hover .triptych-item:hover img { transform: scale(1.05); }
.intro-text .section-subtitle { text-align: left; }
.intro-text h3 { margin-top: -0.5rem; margin-bottom: 1.5rem; }
.intro-pull-quote { font-size: 1.25rem; font-style: italic; font-family: var(--font-primary); color: var(--primary-color); text-align: center; margin: 2.5rem auto; padding: 1rem 0; max-width: 85%; border-left: 4px solid var(--accent-color); border-right: 4px solid var(--accent-color); line-height: 1.6; quotes: none; }
.intro-pull-quote::before, .intro-pull-quote::after { content: none; }
.intro-text .btn-secondary { margin-top: 0; }

/* --- Pillars Section --- */
.pillars-section { background-color: var(--bg-color); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.pillar-card { background-color: var(--card-bg); border-radius: 8px; text-align: center; border-top: 4px solid transparent; transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease, border-top-color var(--transition-fast) ease; position: relative; overflow: hidden; min-height: 480px; display: flex; flex-direction: column; }
.pillar-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.pillar-video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; transition: opacity calc(var(--transition-speed) * 1.2) ease, transform calc(var(--transition-speed) * 1.2) ease; transform: scale(1.1); }
.pillar-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 10, 10, 0.7); z-index: 2; transition: background-color calc(var(--transition-speed) * 1.2) ease; }
.pillar-content { position: relative; z-index: 3; padding: 40px 30px 50px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; transition: transform var(--transition-fast) ease; }
.pillar-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); border-top-color: var(--accent-color); }
.pillar-card:hover .pillar-video-bg video { opacity: 0.6; transform: scale(1); }
.pillar-card:hover .pillar-video-overlay { background-color: rgba(10, 10, 10, 0.5); }
.pillar-icon-wrapper { background-color: rgba(157, 34, 53, 0.1); width: 80px; height: 80px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background-color var(--transition-fast) ease; align-self: center; }
.pillar-card:hover .pillar-icon-wrapper { background-color: rgba(157, 34, 53, 0.25); }
.pillar-icon { font-size: 2.5rem; color: var(--accent-color); }
.pillar-card h3 { color: var(--primary-color); margin-bottom: 1rem; font-size: 1.5rem; }
.pillar-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }


/* --- Featured Video Section (Video Left, Text Right - Overlay on Hover) --- */
.featured-video-section {
    background-color: var(--section-bg-darker); /* Consistent with other sections */
}

.featured-video-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column by default for mobile */
    gap: 40px;
    align-items: center;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .featured-video-grid {
        grid-template-columns: 1fr 1fr; /* Two equal columns for tablet and up */
        gap: 50px;
    }
}
@media (min-width: 992px) {
    .featured-video-grid {
        gap: 70px; /* Larger gap for desktop */
    }
}

.video-column {
    width: 100%;
}

.video-showcase-wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative; /* ESSENTIAL for positioning overlays */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 9;
    background-color: #000;
    cursor: pointer;
}

.video-preview-element {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.0); /* Initially transparent background */
    opacity: 0; /* Initially hidden */
    visibility: hidden;
    transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 2;
}

.video-showcase-wrapper:hover .video-overlay-elements,
.video-showcase-wrapper.is-focused .video-overlay-elements {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.video-showcase-wrapper.is-playing-sound .video-overlay-elements {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
}

.play-sound-button-overlay {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    opacity: 1; /* Controlled by parent .video-overlay-elements opacity */
    transform: scale(0.9);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.video-showcase-wrapper:hover .play-sound-button-overlay,
.video-showcase-wrapper.is-focused .play-sound-button-overlay,
.video-showcase-wrapper.is-playing-sound .play-sound-button-overlay {
    transform: scale(1);
}

.play-sound-button-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.play-sound-button-overlay .play-hint-text {
    font-size: 0.6rem;
    display: block;
    margin-top: 5px;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.youtube-link-on-video {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-family: var(--font-primary);
    text-decoration: none;
    z-index: 3;
    opacity: 1; /* Controlled by parent .video-overlay-elements opacity */
    transform: translateY(10px);
    transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease; /* Add opacity to transition if needed individually */
    border: 1px solid rgba(255,255,255,0.2);
}

.video-showcase-wrapper:hover .youtube-link-on-video,
.video-showcase-wrapper.is-focused .youtube-link-on-video,
.video-showcase-wrapper.is-playing-sound .youtube-link-on-video {
    transform: translateY(0);
}

.youtube-link-on-video:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px) !important; /* Ensure this hover takes precedence for transform */
}

.youtube-link-on-video .fab.fa-youtube {
    margin-right: 6px;
}

.text-column {
    color: var(--text-muted);
}

.text-column h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-column p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.video-cta-inline {
    margin-top: 2rem;
}

.video-cta-inline .btn .fa-youtube { /* Specific for this button if needed */
    margin-right: 10px;
    font-size: 1.1em;
}

/* Hide old standalone video CTA if it exists */
.featured-video-section > .container > .video-cta {
    display: none;
}

@media (max-width: 768px) {
    .featured-video-grid { /* Already stacked by default */ }
    .text-column {
        text-align: center;
        margin-top: 20px;
    }
    .text-column h3 {
        font-size: 1.8rem;
    }
    .video-cta-inline {
        text-align: center;
    }
    .play-sound-button-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .play-sound-button-overlay .play-hint-text {
        font-size: 0.55rem;
    }
    .youtube-link-on-video {
        font-size: 0.8rem;
        padding: 6px 10px;
        bottom: 10px;
        right: 10px;
    }
}
@media (max-width: 480px) {
    .video-showcase-wrapper.is-playing-sound .video-overlay-elements .play-hint-text {
        display: none;
    }
}
/* --- End Featured Video Section --- */


/* --- Coaching Process Section - 2x2 Grid Layout --- */
.process-section { background-color: var(--section-bg-darker); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 50px; margin-top: 1rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.process-step { background-color: var(--card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.2); transition: transform 0.4s ease, box-shadow 0.4s ease; border: 1px solid #2a2a2a; display: flex; flex-direction: column; }
.process-step:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.step-image { position: relative; line-height: 0; overflow: hidden; }
.step-image img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.5s ease; border-bottom: 1px solid #2a2a2a; }
.process-step:hover .step-image img { transform: scale(1.05); }
.step-number { position: absolute; top: 15px; left: 15px; background-color: var(--accent-color); color: var(--primary-color); font-family: var(--font-primary); font-weight: 900; font-size: 1.3rem; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 4px 10px rgba(0,0,0,0.4); z-index: 3; border: 2px solid rgba(255, 255, 255, 0.15); }
.step-content { padding: 25px 30px 30px; flex-grow: 1; display: flex; flex-direction: column; }
.step-content h4 { color: var(--primary-color); font-size: 1.4rem; margin-bottom: 1rem; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; flex-grow: 1; }

/* --- Testimonial Section Styling (No Images) --- */
.testimonial-section { background-color: var(--bg-color); }
.testimonial-grid-no-image { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; margin-bottom: 3rem; }
.testimonial-no-image { background-color: var(--card-bg); padding: 35px 30px 30px; border-radius: 8px; border-left: 5px solid var(--accent-color); box-shadow: 0 5px 15px rgba(0,0,0,0.2); display: flex; flex-direction: column; text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease; will-change: transform, box-shadow; }
.testimonial-no-image:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 12px 30px rgba(0,0,0,0.3); border-left-color: var(--secondary-accent); }
.testimonial-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1.5rem; line-height: 1; opacity: 0.7; }
.testimonial-no-image blockquote { font-size: 1.1rem; font-style: normal; color: var(--text-muted); margin: 0 0 1.5rem 0; padding: 0; flex-grow: 1; line-height: 1.7; }
.testimonial-no-image blockquote::before, .testimonial-no-image blockquote::after { content: none; }
.testimonial-no-image cite { font-weight: 700; color: var(--primary-color); font-size: 0.95rem; margin-top: auto; display: block; font-style: normal; }
.testimonial-cta { text-align: center; }
.client-photo { display: none; }

/* --- Podcast Section --- */
.podcast-section { background-color: var(--section-bg-darker); }
.podcast-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; margin-top: 2rem; }
.podcast-image img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); max-width: 400px; margin: 0 auto; }
.podcast-text h3 { color: var(--primary-color); font-size: 2rem; margin-bottom: 1.5rem; }
.podcast-text p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.podcast-text .btn { margin-top: 1rem; }
.podcast-text .btn .fa-spotify { margin-right: 10px; font-size: 1.2em; vertical-align: middle; }

/* --- Charity Support Section - Enhanced --- */
.charity-section-enhanced { background-color: var(--bg-color); }
.charity-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; margin-top: 1.5rem; }
.charity-visual {}
.main-charity-image { display: block; width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: 10px; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4); margin-bottom: 0; }
.romp-logo-visual { display: block; max-width: 180px; width: 100%; height: auto; margin: 25px auto 0 auto; opacity: 0.9; transition: opacity var(--transition-fast); }
.romp-logo-visual:hover { opacity: 1; }
.charity-details h3 { color: var(--primary-color); font-size: 1.8rem; margin-bottom: 1.5rem; font-weight: 700; }
.charity-details p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.2rem; }
.charity-details strong { color: var(--primary-color); font-weight: 600; }
.charity-details a { color: var(--accent-color); font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--accent-color); transition: color var(--transition-fast), border-bottom-color var(--transition-fast); }
.charity-details a:hover { color: var(--secondary-accent); border-bottom-color: var(--secondary-accent); }
.fundraising-highlight { background-color: rgba(26, 26, 26, 0.6); border-left: 4px solid var(--accent-color); padding: 20px 25px; margin: 2rem 0; border-radius: 0 6px 6px 0; }
.fundraising-highlight h4 { color: var(--primary-color); font-size: 1.3rem; margin-bottom: 0.8rem; }
.fundraising-highlight p { font-size: 1rem; margin-bottom: 0; color: var(--text-muted); }
.accent-highlight { color: var(--accent-color) !important; font-weight: 700 !important; font-size: 1.1em; }
.charity-cta { margin-top: 2rem; }
/* --- MODIFICATION FOR .charity-cta BUTTON HOVER --- */
.charity-cta .btn-secondary { /* Targeting the .btn-secondary specifically inside .charity-cta */
    /* Inherits base .btn-secondary styles */
}
.charity-cta .btn-secondary:hover {
    background-color: var(--primary-color); /* White background */
    color: var(--accent-color);             /* Accent color text */
    border-color: var(--primary-color);     /* White border */
    /* transform: translateY(-3px); is already in base .btn-secondary:hover, kept */
}


/* --- CTA Section --- */
.cta-section { background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent)); text-align: center; color: var(--primary-color); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='26' viewBox='0 0 52 26'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.cta-section h2 { color: var(--primary-color); font-size: 2.6rem; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); }
.cta-section p { color: rgba(255, 255, 255, 0.9); max-width: 650px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }
.cta-section .btn-primary { background-color: var(--primary-color); color: var(--accent-color); border-color: var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.cta-section .btn-primary:hover { background-color: rgba(255, 255, 255, 0.9); color: var(--accent-color); border-color: rgba(255, 255, 255, 0.9); transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* --- Contact Form Section Styling --- */
.contact-form-section { background-color: var(--section-bg-darker); }
.contact-area { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 3rem; }
@media (min-width: 768px) { .contact-area { grid-template-columns: repeat(2, 1fr); gap: 50px; } }
.contact-option-box { background-color: var(--card-bg); border-radius: 8px; padding: 40px 35px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #2a2a2a; min-height: 320px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.contact-option-box:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.contact-icon-wrapper { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1.5rem; line-height: 1; }
.contact-option-box h4 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1rem; }
.contact-option-box p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.8rem; flex-grow: 1; max-width: 400px; }
.contact-option-box .btn { margin-top: auto; min-width: 200px; }
.google-calendar-button-container { width: 100%; display: flex; justify-content: center; }

/* --- Footer --- */
.main-footer { background-color: #0a0a0a; padding: 50px 0 30px; text-align: center; color: var(--text-darker-muted); font-size: 0.9rem; border-top: 1px solid #222; }
.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-areas: "logo links social" "copy copy copy"; gap: 30px 20px; align-items: center; max-width: 900px; margin: 0 auto; }
.footer-logo { grid-area: logo; font-family: var(--font-primary); font-size: 1.5rem; font-weight: 900; color: var(--primary-color); text-align: left; }
.footer-logo span { display: block; font-size: 0.8rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 2px; }
.footer-links { grid-area: links; text-align: center; }
.footer-links a { color: var(--text-muted); margin: 0 12px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent-color); }
.footer-social { grid-area: social; text-align: right; }
.social-icon { color: var(--text-muted); font-size: 1.4rem; margin-left: 18px; transition: color var(--transition-fast) ease, transform var(--transition-fast) ease; display: inline-block; }
.social-icon:hover { color: var(--accent-color); transform: scale(1.1); }
.footer-copy { grid-area: copy; margin-top: 30px; font-size: 0.85rem; border-top: 1px solid #2a2a2a; padding-top: 20px; }

/* --- Scroll Animations Base --- */
.animate-on-scroll { opacity: 0; transition: opacity 0.9s ease-out; transform: translateY(0); } /* Removed transform from base */
.animate-on-scroll.fade-in:not(.process-step) { transform: translateY(40px); transition-property: opacity, transform; transition-duration: 0.9s; transition-timing-function: ease-out; }
.animate-on-scroll.slide-in-left { transform: translateX(-60px); transition-property: opacity, transform; transition-duration: 0.9s; transition-timing-function: ease-out; }
.animate-on-scroll.slide-in-right { transform: translateX(60px); transition-property: opacity, transform; transition-duration: 0.9s; transition-timing-function: ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translate(0, 0); }


/* --- Responsive Adjustments (Combined) --- */
@media (max-width: 992px) {
    .intro-grid { grid-template-columns: 1fr; gap: 40px; align-items: center; }
    .intro-image { margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; width: 100%; }
    .image-column-wrapper { height: calc(var(--image-area-height) * 0.75); }
    .intro-text { text-align: center; max-width: 600px; margin: 0 auto; }
    .intro-text .section-subtitle { text-align: center; }
    .intro-pull-quote { max-width: 95%; }
    .podcast-grid { gap: 40px; } /* Already good, but explicit */
    .charity-grid { grid-template-columns: 1fr; gap: 40px; }
    .charity-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .charity-visual img.main-charity-image { max-height: 400px; }
    .charity-details { text-align: center; }
    .fundraising-highlight { text-align: left; margin-left: auto; margin-right: auto; max-width: 550px; }
    .footer-content { grid-template-columns: 1fr; grid-template-areas: "logo" "links" "social" "copy"; max-width: 100%; gap: 25px; }
    .footer-logo, .footer-links, .footer-social { text-align: center; }
    .footer-social a { margin: 0 15px; }
}

@media (max-width: 768px) {
    html { font-size: 16px; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .section-padding { padding: 70px 0; }
    .header-title { font-size: 1.5rem; margin: 0 8px; }
    .mobile-menu-toggle.always-visible { font-size: 1.8rem; }
    .desktop-cta-btn.always-visible { padding: 8px 12px; font-size: 0.8rem; }
    .hero-content p { font-size: 1.1rem; }
    .podcast-grid { grid-template-columns: 1fr; text-align: center; }
    .podcast-image { margin-bottom: 30px; order: -1; }
    .podcast-image img { max-width: 300px; }
    .podcast-text h3 { font-size: 1.8rem; }
    .process-grid { grid-template-columns: 1fr; }
    .step-image img { height: 240px; }
    .step-content { padding: 20px 25px 25px; }
    .step-content h4 { font-size: 1.3rem; }
    .contact-area { grid-template-columns: 1fr; gap: 30px; }
    .contact-option-box { padding: 30px 25px; min-height: auto; }
    .contact-option-box h4 { font-size: 1.4rem; }
    .contact-option-box p { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .charity-details h3 { font-size: 1.6rem; }
    .charity-details p { font-size: 1rem; }
    .fundraising-highlight h4 { font-size: 1.2rem; }
    .fundraising-highlight p { font-size: 0.95rem; }
    .charity-visual img.main-charity-image { max-height: 350px; }
    .intro-pull-quote { font-size: 1.1rem; margin: 2rem auto; }
    .page-banner h1 { font-size: 2.5rem; }
    .about-content-container h2 { font-size: 1.9rem; }
    .about-content-container p { font-size: 1rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
    .gallery-item img { height: 220px; }
}

@media (max-width: 600px) {
   .image-column-wrapper { height: calc(var(--image-area-height) * 0.6); }
   .step-image img { height: 200px; }
   .header-title { font-size: 0.8rem; margin: 0 8px; }
}

/* --- Booking Modal Styles --- */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.75); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s linear 0.4s; }
.modal-overlay.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.modal-content { background-color: var(--card-bg); border-radius: 10px; padding: 35px 40px; max-width: 850px; width: 100%; position: relative; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); transform: translateY(-20px); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; transition-delay: 0.1s; }
.modal-overlay.is-open .modal-content { transform: translateY(0); opacity: 1; }
.modal-close { position: absolute; top: 12px; right: 15px; background: none; border: none; color: var(--text-muted); font-size: 1.9rem; line-height: 1; cursor: pointer; padding: 5px; transition: color var(--transition-fast), transform 0.2s ease; }
.modal-close:hover { color: var(--primary-color); transform: rotate(90deg); }
.modal-title { text-align: center; font-size: 2rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.modal-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.1rem; }
.modal-options-container { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 650px) { .modal-options-container { grid-template-columns: 1fr 1fr; gap: 35px; } }
.modal-option { background-color: var(--section-bg-darker); border-radius: 8px; padding: 30px 25px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; border: 1px solid #333; min-height: 280px; }
.modal-icon-wrapper { font-size: 2.3rem; color: var(--accent-color); margin-bottom: 1rem; line-height: 1; }
.modal-option h4 { color: var(--primary-color); font-size: 1.4rem; margin-bottom: 0.8rem; }
.modal-option p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.modal-option .btn { margin-top: auto; min-width: 180px; }
.google-calendar-button-container-modal { width: 100%; display: flex; justify-content: center; margin-top: auto; padding-top: 10px; }
.mobile-nav-button { background: none; border: none; color: var(--primary-color); font-size: 1.4rem; font-weight: 700; padding: 10px 0; display: block; width: 100%; text-align: center; cursor: pointer; font-family: var(--font-primary); transition: color var(--transition-fast); }
.mobile-nav-button:hover { color: var(--accent-color); }
body.modal-open { overflow: hidden; }

/* --- About Page Specific Styles --- */
.page-banner { background-color: var(--section-bg-darker); padding: 60px 0 50px 0; text-align: center; border-bottom: 1px solid #222; }
.page-banner h1 { font-size: 3rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.page-banner .page-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 0; }
.about-bio-section { background-color: var(--bg-color); }
.about-content-container { max-width: 800px; margin-left: auto; margin-right: auto; }
.about-content-container h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 2rem; text-align: center; }
.about-content-container p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.about-content-container strong { color: var(--primary-color); }
.about-gallery-section { background-color: var(--section-bg-darker); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 1rem; }
.gallery-item { border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); line-height: 0; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-item img { display: block; width: 100%; height: 280px; object-fit: cover; }
.gallery-item:hover { transform: scale(1.04); box-shadow: 0 10px 25px rgba(0,0,0,0.4); z-index: 10; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
    .gallery-item img { height: 220px; }
}
