:root {
    /* Analogous Color Scheme with Accent */
    --color-primary: #007BA7; /* Cerulean Blue - Main interactive, links */
    --color-primary-dark: #005A8D; /* Deep Blue - Hover, darker accents */
    --color-primary-darker: #003E6B; /* Prussian Blue - Very dark, headings, footer bg */
    
    --color-accent: #FFA500; /* Orange - CTAs, highlights */
    --color-accent-dark: #E69500; /* Darker Orange - Hover for accent */

    /* Neutral Colors */
    --color-text-light: #FFFFFF;
    --color-text-base: #333333; /* Main body text */
    --color-text-heading: #222222; /* Main headings */
    --color-text-subtle: #555555; /* For less important text */
    --color-background-body: #F8F9FA; /* Very light gray for body */
    --color-background-light: #F0F4F8; /* Slightly off-white for alternate sections */
    --color-background-white: #FFFFFF; /* For cards, main content areas */
    --color-border: #DEE2E6; /* Light gray for borders */

    /* Semantic Colors */
    --color-success: #28A745;
    --color-error: #DC3545;
    --color-warning: #FFC107;
    --color-info: #17A2B8;

    /* Fonts */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Rubik', sans-serif;

    /* Shadows & Volumetric UI */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0,0,0,0.05);
    
    --shadow-volumetric-idle: 0 4px 6px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06), inset 0 -2px 1px rgba(0,0,0,0.05);
    --shadow-volumetric-hover: 0 7px 14px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.08), inset 0 -1px 1px rgba(0,0,0,0.03);
    --shadow-input-inset: inset 0 2px 4px rgba(0,0,0,0.06);

    /* Borders & Radii */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-width: 1px;

    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-base: all 0.3s ease-in-out;

    /* Header Height (for offsetting content) */
    --header-height: 70px; /* Adjust if header height changes */
    --header-height-mobile: 60px;
}

/* GENERAL RESETS & BASE STYLES */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px default */
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-base);
    background-color: var(--color-background-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
}

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

ul, ol {
    list-style: none;
}

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

a:hover {
    color: var(--color-primary-dark);
    text-decoration: none; /* Often prefer no underline on modern sites */
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.3;
    margin-bottom: 0.75em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); } /* Responsive font size */
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p {
    margin-bottom: 1.25rem;
}

.text-large { font-size: 1.15rem; line-height: 1.8; }
.text-center { text-align: center; }
.text-light { color: var(--color-text-light) !important; } /* For use on dark backgrounds */

/* LAYOUT */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.column {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%; /* Default for mobile */
}

@media (min-width: 768px) {
    .column.is-half { flex: 0 0 50%; max-width: 50%; }
    .column.is-one-third { flex: 0 0 33.3333%; max-width: 33.3333%; }
    .column.is-two-thirds { flex: 0 0 66.6666%; max-width: 66.6666%; }
    .column.is-one-quarter { flex: 0 0 25%; max-width: 25%; }
    .column.is-three-quarters { flex: 0 0 75%; max-width: 75%; }
}

/* GLOBAL COMPONENTS */

/* Buttons (Global Styles) */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75em 1.75em;
    border-radius: var(--border-radius-md);
    border: var(--border-width) solid transparent;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition-base);
    box-shadow: var(--shadow-volumetric-idle);
    transform: translateY(0);
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-volumetric-hover);
}

.btn:active, button:active, input[type="submit"]:active, input[type="button"]:active {
    transform: translateY(0px);
    box-shadow: var(--shadow-sm);
}

/* Primary Button Style */
.btn-primary,
.cta-button { /* Alias from HTML */
    background-color: var(--color-primary);
    color: var(--color-text-light);
}
.btn-primary:hover,
.cta-button:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}

/* Accent Button Style */
.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}
.btn-accent:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-text-light);
}
/* HTML uses cta-button for accent, let's ensure it's distinct */
.cta-button {
    background-color: var(--color-accent);
}
.cta-button:hover {
    background-color: var(--color-accent-dark);
}


/* Secondary/Outline Button Style */
.btn-secondary,
.cta-button-secondary { /* Alias from HTML */
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: none;
}
.btn-secondary:hover,
.cta-button-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-volumetric-idle); /* Add shadow on hover for outline */
    transform: translateY(-2px);
}
.cta-button-secondary { /* Reset for HTML alias */
    box-shadow: var(--shadow-sm);
}
.cta-button-secondary:hover {
    box-shadow: var(--shadow-md);
}


/* Cards (Global Styles) */
.card, .volumetric-element, .testimonial-card, .resource-card, .team-member-card { /* Common base for card-like elements */
    background-color: var(--color-background-white);
    border-radius: var(--border-radius-lg);
    padding: clamp(15px, 3vw, 25px); /* Responsive padding */
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height in grids */
    text-align: center; /* For centering inline/text content */
}

.card:hover, .volumetric-element:hover, .testimonial-card:hover, .resource-card:hover, .team-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.07);
}

.card-image, .image-container { /* Container for image within card */
    width: 100%;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: var(--border-radius-md); /* Rounded corners for image container */
    display: flex; /* For centering image */
    justify-content: center; /* For centering image */
    align-items: center; /* For centering image */
}

/* Ensure specific fixed height for image containers as requested in card types */
.services-grid .card-image,
.portfolio-grid .card-image,
.news-grid .card-image {
    height: 200px; /* Fixed height */
}
.team-grid .card-image {
    width: 150px; /* As per HTML */
    height: 150px; /* As per HTML */
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}


.card-image img, .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers container without distortion */
    transition: transform 0.4s ease;
}
.card:hover .card-image img, .card:hover .image-container img {
    transform: scale(1.05); /* Subtle zoom on card hover */
}

.card-content {
    flex-grow: 1; /* Allows content to fill remaining space if card has fixed height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content apart, good for action buttons at bottom */
    text-align: center; /* Centering text inside */
}
.card-content > *:last-child {
    margin-bottom: 0; /* Remove bottom margin from last element */
}

.card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--color-primary-darker);
    margin-bottom: 0.5em;
}

/* Forms (Global Styles) */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-heading);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85em 1em;
    font-family: var(--font-body);
    font-size: 1rem;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius-md);
    background-color: var(--color-background-white);
    color: var(--color-text-base);
    transition: var(--transition-base);
    box-shadow: var(--shadow-input-inset);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-input-inset), 0 0 0 3px rgba(var(--color-primary-rgb, 0, 123, 167), 0.25); /* Use RGB for alpha if primary is hex */
}
:root { /* Add RGB version of primary for box-shadow alpha */
    --color-primary-rgb: 0, 123, 167; 
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button { /* Ensure it uses global button styles but can be full-width */
    width: 100%;
}

/* Read More Links */
.read-more {
    display: inline-block;
    margin-top: 1em;
    padding: 0.6em 1.2em;
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition-base);
    text-decoration: none;
}
.read-more:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* HEADER & NAVIGATION */
.site-header {
    background-color: var(--color-background-white);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--color-primary-darker);
    text-decoration: none;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
}

.main-nav .nav-list li {
    margin-left: clamp(15px, 3vw, 30px);
}

.main-nav .nav-list a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-base);
    padding: 0.5em 0;
    position: relative;
    text-decoration: none;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
    width: 100%;
}
.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--color-primary);
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav list when it appears */
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-heading);
    position: relative;
    transition: var(--transition-base);
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-heading);
    left: 0;
    transition: var(--transition-base);
}
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { bottom: -8px; }

.nav-open .hamburger-icon { background-color: transparent; }
.nav-open .hamburger-icon::before { transform: rotate(45deg); top: 0; }
.nav-open .hamburger-icon::after { transform: rotate(-45deg); bottom: 0; }

/* SECTIONS */
.section-padding { padding: clamp(40px, 8vw, 80px) 0; }
.section-padding_alternate { 
    padding: clamp(40px, 8vw, 80px) 0; 
    background-color: var(--color-background-light);
}

.section-title {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    color: var(--color-primary-darker);
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-text-subtle);
}
.subsection-title {
    color: var(--color-primary-dark);
    margin-bottom: 0.8em;
}


/* Hero Section */
.hero-section, .page-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section {
    min-height: calc(80vh - var(--header-height)); /* Ensure it's not too tall */
    padding: clamp(60px, 10vw, 120px) 0;
}
.page-hero {
    min-height: 40vh;
    padding: clamp(50px, 8vw, 100px) 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)); /* Darkened background for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 15px;
}

.hero-title {
    color: var(--color-text-light); /* Explicitly white as requested */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6); /* Ensure readability */
    margin-bottom: 0.6em;
}

.hero-subtitle {
    color: var(--color-text-light); /* Explicitly white as requested */
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.8em;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Ensure readability */
    opacity: 0.9;
}
.hero-section .cta-button {
    font-size: clamp(1rem, 2vw, 1.15rem);
    padding: 0.8em 2em;
}

/* About Us Summary Section */
.about-us-summary-section .image-column .image-container img {
    border-radius: var(--border-radius-lg);
}

/* Services, Portfolio, News Grids */
.services-grid, .portfolio-grid, .news-grid, .resources-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 100%/3 - 30px, 350px), 1fr)); /* Responsive columns */
    gap: clamp(20px, 4vw, 30px);
}

/* Behind the Scenes Section */
.behind-scenes-section .image-container img {
    border-radius: var(--border-radius-lg);
}
.behind-scenes-section .content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .behind-scenes-section .content-column {
        padding-left: 30px;
    }
}


/* Testimonials Section */
.testimonials-slider { /* Base for JS slider, currently grid */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 100%/2 - 30px, 400px), 1fr));
    gap: clamp(20px, 4vw, 30px);
}
.testimonial-card {
    background-color: var(--color-background-light); /* Slightly different bg for testimonials */
    border-left: 5px solid var(--color-accent);
    text-align: left; /* Testimonials usually left-aligned text */
}
.testimonial-quote {
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 1em;
    color: var(--color-text-subtle);
}
.testimonial-author {
    font-weight: 600;
    color: var(--color-primary-dark);
    text-align: right;
    margin-top: auto; /* Push author to bottom if card content varies */
}

/* News Card Specifics */
.news-date {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    margin-bottom: 0.5em;
    display: block; /* Ensure it's on its own line */
}

/* External Resources Section */
.resource-card h4 a {
    color: var(--color-primary-dark);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}
.resource-card h4 a:hover {
    color: var(--color-accent);
}
.resource-card p {
    font-size: 0.95rem;
    color: var(--color-text-subtle);
    margin-top: 0.5em;
    text-align: left;
}


/* Contact Section */
.contact-form-container {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.contact-details {
    text-align: center;
}
.contact-details p {
    margin-bottom: 0.6em;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
}
.contact-details strong {
    color: var(--color-text-heading);
}

/* Contact Page Specifics (contacts.html) */
.contact-page-section .contact-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, 5vw, 50px);
}
.contact-page-section .contact-content-wrapper > div {
    flex: 1;
    min-width: clamp(280px, 100%, 400px); /* Min width for columns */
}
.contact-info-container .subsection-title {
    text-align: left;
}
.contact-info-item {
    display: flex;
    align-items: flex-start; /* Align icon with first line of text */
    margin-bottom: 1.25rem;
    text-align: left;
}
.contact-info-item .contact-icon {
    margin-right: 15px;
    margin-top: 4px; /* Fine-tune vertical alignment */
    color: var(--color-primary);
    flex-shrink: 0; /* Prevent icon from shrinking */
}
.map-placeholder {
    margin-top: 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-placeholder img {
    border-radius: var(--border-radius-lg);
}

/* Privacy & Terms Pages */
.legal-content-section {
    padding-top: calc(var(--header-height) + 40px); /* Offset for fixed header */
    padding-bottom: clamp(40px, 8vw, 80px);
}
.legal-content-section .text-content h3 {
    margin-top: 2em;
    color: var(--color-primary-darker);
}
.legal-content-section .text-content ul {
    padding-left: 25px;
    margin-bottom: 1.5em;
}
.legal-content-section .text-content li {
    margin-bottom: 0.75em;
    list-style: disc;
}

/* Success Page (success.html) */
.success-page-section {
    min-height: calc(100vh - var(--header-height) - var(--footer-height, 150px)); /* Approximate footer height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
}
.success-page-section .success-icon {
    margin-bottom: 2rem;
    /* Inline styles from HTML are okay for this unique element, but could be moved */
}
.success-page-section .section-title {
    color: var(--color-success);
}
.success-page-section .cta-button,
.success-page-section .cta-button-secondary {
    margin-top: 1rem;
}
/* Define a CSS variable for footer height if it's consistent, or use a JS calculation */
:root { --footer-height: 250px; /* Estimate, adjust based on actual footer content */ }


/* About Page - Team Grid */
.team-grid {
    margin-top: 2.5rem;
}
.team-member-card .card-image img { /* Overrides global card-image for circular */
    border: 4px solid var(--color-background-light);
}
.team-member-name {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    color: var(--color-primary-darker);
}
.team-member-title {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--color-accent);
    margin-bottom: 0.5em;
    font-weight: 500;
}
.team-member-bio {
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
    color: var(--color-text-subtle);
    flex-grow: 1; /* Ensures bio takes up space if titles are short */
}
.mission-vision-values .card-title {
    text-align: center;
}
.mission-vision-values ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left; /* Specific to list items */
    margin-top: 0.5em;
}
.mission-vision-values ul li {
    margin-bottom: 0.5em;
}

/* FOOTER */
.site-footer {
    background-color: var(--color-primary-darker);
    color: var(--color-text-light);
    opacity: 0.95;
    padding: clamp(40px, 6vw, 60px) 0;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(30px, 4vw, 40px);
}

.site-footer h4 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-light);
    margin-bottom: 1.2em;
    position: relative;
    padding-bottom: 0.5em;
}
.site-footer h4::after { /* Subtle underline for footer titles */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.site-footer ul li {
    margin-bottom: 0.8em;
}

.site-footer ul li a {
    color: #B0BEC5; /* Lighter shade for links */
    text-decoration: none;
    transition: var(--transition-fast);
}

.site-footer ul li a:hover {
    color: var(--color-text-light);
    padding-left: 5px; /* Subtle hover effect */
}

/* Footer Social Links (Text-based) */
.footer-social ul {
    display: flex;
    flex-direction: column; /* Stack vertically as per example in HTML */
}
.footer-social ul li a {
    /* General styling from .site-footer ul li a applies */
    /* Add specific styling if needed, e.g., icons via ::before if desired later, but prompt says text */
    font-weight: 500;
}

.footer-copyright {
    grid-column: 1 / -1; /* Span all columns */
    text-align: center;
    margin-top: clamp(30px, 5vw, 50px);
    padding-top: clamp(20px, 3vw, 30px);
    border-top: 1px solid var(--color-primary-dark);
    font-size: 0.9rem;
    color: #90A4AE;
}
.footer-copyright p {
    margin-bottom: 0.5em;
}

/* UTILITY CLASSES */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Example (apply to an overlay or specific element) */
.glass-effect {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* Parallax Background (Simple CSS version, JS needed for more complex) */
.parallax-bg {
    background-attachment: fixed; /* Note: Can have performance implications and issues on mobile */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .column.is-two-thirds,
    .column.is-one-third,
    .column.is-half { /* Stack columns */
        flex-basis: 100%;
        max-width: 100%;
    }
    .behind-scenes-section .content-column {
        padding-left: 15px; /* Keep consistent padding */
        margin-top: 2rem;
    }
    .contact-page-section .contact-content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }
    
    .main-nav .nav-list {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: var(--header-height-mobile); 
        left: 0;
        width: 100%;
        background-color: var(--color-background-white);
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
        border-top: 1px solid var(--color-border);
    }
    .main-nav .nav-list.nav-open { /* Class added by JS */
        display: flex;
    }
    .main-nav .nav-list li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .main-nav .nav-list a {
        display: block;
        padding: 0.8em 1.5em;
        width: 100%;
        border-bottom: 1px solid var(--color-background-light);
    }
    .main-nav .nav-list li:last-child a {
        border-bottom: none;
    }
    .main-nav .nav-list a::after { display: none; } /* No underline animation for mobile nav items */

    .nav-toggle { display: block; }

    .footer-container {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }
    .site-footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social ul {
        justify-content: center; /* Center social links if they become flex-row */
        flex-direction: row; /* Optionally horizontal on mobile */
        gap: 15px;
    }
    .legal-content-section {
        padding-top: calc(var(--header-height-mobile) + 30px);
    }
}

/* Cookie Consent Popup (Minimal styles as requested in HTML generation) */
/* #cookieConsentPopup styles are defined inline in HTML as per prompt */