/* style.css */

:root {
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Monochromatic Color Scheme with Neo-Brutalism Influence */
    --color-black: #111111;
    --color-darkest-grey: #222222; /* For very dark elements or text */
    --color-dark-grey: #333333;   /* Primary text color */
    --color-medium-grey: #555555; /* Secondary text, borders */
    --color-light-grey: #CCCCCC;  /* Lighter borders, subtle backgrounds */
    --color-off-white: #F5F5F5;   /* Card backgrounds, subtle page elements */
    --color-white: #FFFFFF;     /* Primary background, text on dark */

    --primary-bg: var(--color-white);
    --primary-text: var(--color-dark-grey);
    --heading-text-color: var(--color-darkest-grey);
    --secondary-text-color: var(--color-medium-grey);

    --card-bg: var(--color-off-white);
    --card-border-color: var(--color-medium-grey); /* Neo-brutalism border */
    --card-shadow-color: var(--color-black);

    --accent-color: var(--color-black); /* For buttons, CTAs */
    --accent-text-color: var(--color-white);
    --accent-hover-bg: var(--color-dark-grey);
    --accent-hover-text: var(--color-white);

    --link-color: var(--color-black);
    --link-hover-color: var(--color-medium-grey);

    --border-radius-sharp: 0px; /* Neo-brutalism */
    --border-radius-subtle: 4px;

    --transition-speed: 0.3s;
    --transition-easing: ease-in-out;

    --container-width: 1200px;
    --padding-sm: 10px;
    --padding-md: 20px;
    --padding-lg: 40px;
    --section-padding: 60px 0;

    /* For fixed header */
    --header-height: 80px;
}

/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    color: var(--primary-text);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Apply padding for fixed header on specific content pages */
body.privacy-page .main-container > main,
body.terms-page .main-container > main,
body.about-page .main-container > main,
body.contacts-page .main-container > main,
body.success-page .main-container > main {
    padding-top: var(--header-height);
}


/* Particle Container */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind all content */
    pointer-events: none; /* Allow clicks to pass through */
}

/* Main Container for overall structure */
.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--padding-md);
    padding-right: var(--padding-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-text-color);
    margin-bottom: var(--padding-md);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: var(--padding-md);
    color: var(--primary-text);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-easing);
}

a:hover, a:focus {
    color: var(--link-hover-color);
    text-decoration: underline;
}

/* Section Styling */
.section-padding {
    padding-top: var(--padding-lg);
    padding-bottom: var(--padding-lg);
}
@media (min-width: 768px) {
    .section-padding {
        padding-top: calc(var(--padding-lg) * 1.5);
        padding-bottom: calc(var(--padding-lg) * 1.5);
    }
}


.section-title {
    text-align: center;
    margin-bottom: calc(var(--padding-lg) * 0.75);
    color: var(--heading-text-color); /* Dark color for contrast */
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--padding-lg);
    color: var(--secondary-text-color);
    font-size: 1.1rem;
}

/* Global Button Styles */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 2px solid var(--accent-color); /* Neo-brutalism border */
    padding: 0.75em 1.5em;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius-sharp); /* Sharp edges */
    transition: all var(--transition-speed) var(--transition-easing);
    text-decoration: none; /* Remove underline from <a> styled as button */
    color: var(--accent-color); /* Default text color for outlined buttons */
}

.btn-primary,
button[type="submit"].btn-primary, /* For forms */
input[type="submit"].btn-primary {
    background-color: var(--accent-color);
    color: var(--accent-text-color);
    border-color: var(--accent-color);
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover,
.btn-primary:hover, button[type="submit"].btn-primary:hover, input[type="submit"].btn-primary:hover {
    background-color: var(--accent-hover-bg);
    color: var(--accent-hover-text);
    border-color: var(--accent-hover-bg);
    transform: translateY(-2px); /* Subtle lift */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--accent-text-color);
}

/* Header & Navigation */
.site-header {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    backdrop-filter: blur(5px); /* Glassmorphism effect */
    border-bottom: 1px solid var(--color-light-grey);
    padding: var(--padding-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
}
.logo:hover {
    color: var(--color-medium-grey);
}

.main-navigation .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-navigation .nav-list li {
    margin-left: var(--padding-md);
}

.main-navigation .nav-list a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-dark-grey);
    text-decoration: none;
    padding: 0.5em 0.8em;
    border-radius: var(--border-radius-subtle);
    transition: background-color var(--transition-speed) var(--transition-easing), color var(--transition-speed) var(--transition-easing);
}

.main-navigation .nav-list a:hover,
.main-navigation .nav-list a:focus,
.main-navigation .nav-list a.active { /* Add .active class via JS for current page/section */
    color: var(--color-black);
    background-color: var(--color-off-white);
    text-decoration: none;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark-grey);
    position: relative;
    transition: background-color 0s var(--transition-speed) var(--transition-easing); /* Delay bg color change */
}
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark-grey);
    position: absolute;
    left: 0;
    transition: transform var(--transition-speed) var(--transition-easing), top var(--transition-speed) var(--transition-easing);
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Mobile Menu Active State */
.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent; /* Center line disappears */
}
.menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}


/* Hero Section */
.hero-section {
    position: relative;
    color: var(--color-white); /* Default text color for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - var(--header-height)); /* Full viewport height minus header */
    padding: var(--padding-lg) var(--padding-md);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem; /* Larger for hero */
    margin-bottom: var(--padding-md);
    color: var(--color-white); /* Ensure white text as per requirement */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* Enhance readability */
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--padding-lg);
    line-height: 1.7;
    color: var(--color-white); /* Ensure white text */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Enhance readability */
}

/* Card Styles (Generic for Services, Press, Community Carousel Items) */
.card {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border-color); /* Neo-brutalism border */
    border-radius: var(--border-radius-sharp); /* Sharp edges */
    padding: 0; /* Remove padding for full-width image */
    text-align: center;
    transition: transform var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center image and content block */
    overflow: hidden; /* Ensure content stays within borders */
    box-shadow: 5px 5px 0px var(--card-shadow-color); /* Neo-brutalism shadow */
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 8px 8px 0px var(--card-shadow-color), 0 10px 20px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 250px; /* Fixed height for image container */
    overflow: hidden; /* Crop image if it doesn't fit */
    margin-bottom: 0; /* Remove default margin from img if any */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, may crop */
    display: block; /* Remove bottom space */
    border-radius: 0; /* Remove if card has sharp edges */
}

.card-content {
    padding: var(--padding-md);
    width: 100%; /* Ensure content block takes full width within card padding */
}

.card-title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: var(--padding-sm);
    color: var(--heading-text-color);
}

.card p {
    font-size: 1rem;
    color: var(--secondary-text-color);
    margin-bottom: var(--padding-md);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--padding-lg);
}

.progress-indicator-container {
    margin-top: var(--padding-md);
    font-size: 0.9rem;
}
.progress-indicator-container span {
    display: inline-block;
    margin-right: 5px;
}
.progress-bar {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid var(--color-medium-grey);
    border-radius: var(--border-radius-subtle);
    overflow: hidden; /* Ensures the fill stays within the rounded borders */
    margin: 5px 0;
}
.progress-bar::-webkit-progress-bar {
    background-color: var(--color-light-grey);
    border-radius: var(--border-radius-subtle);
}
.progress-bar::-webkit-progress-value {
    background-color: var(--accent-color);
    border-radius: var(--border-radius-subtle);
    transition: width var(--transition-speed) ease-in-out;
}
.progress-bar::-moz-progress-bar { /* Firefox */
    background-color: var(--accent-color);
    border-radius: var(--border-radius-subtle);
    transition: width var(--transition-speed) ease-in-out;
}


/* Community Section */
.community-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white); /* Default text for this section */
}
.community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)); /* Dark overlay */
    z-index: 1;
}
.community-section .container {
    position: relative;
    z-index: 2;
}
.community-section .section-title,
.community-section .section-intro,
.community-section .gallery-title {
    color: var(--color-white); /* Ensure text is white on dark background */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.community-section .card { /* Override generic card for this section if needed */
    background-color: var(--color-off-white); /* Light cards on dark bg */
    border-color: var(--color-medium-grey);
    box-shadow: 5px 5px 0px var(--color-black);
}
.community-section .card .card-title,
.community-section .card p {
    color: var(--primary-text); /* Dark text inside light cards */
}


.content-carousel-container {
    position: relative;
    margin-bottom: var(--padding-lg);
}
.carousel {
    display: flex;
    overflow-x: auto; /* Or use JS for proper sliding */
    scroll-snap-type: x mandatory;
    gap: var(--padding-md);
    padding-bottom: var(--padding-md); /* For scrollbar or shadow */
}
.carousel-item {
    flex: 0 0 calc(100% - var(--padding-md)); /* Full width on mobile */
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 calc(50% - var(--padding-md));
    }
}
@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - var(--padding-md));
    }
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.5em 0.8em;
    cursor: pointer;
    z-index: 10;
    border-radius: var(--border-radius-subtle);
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.image-gallery-container .gallery-title {
    text-align: center;
    margin-bottom: var(--padding-md);
    font-size: 1.6rem;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--padding-md);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-subtle);
    border: 2px solid var(--color-light-grey);
    transition: transform var(--transition-speed) var(--transition-easing);
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* External Links Section */
.external-links-section {
    background-color: var(--color-off-white); /* Subtle background difference */
}
.links-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.links-list li {
    margin-bottom: var(--padding-sm);
    padding: var(--padding-sm);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--border-radius-subtle);
    transition: background-color var(--transition-speed);
}
.links-list li:hover {
    background-color: var(--color-white);
}
.links-list a {
    font-weight: 500;
    color: var(--color-dark-grey);
}
.links-list a:hover {
    color: var(--color-black);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: var(--padding-sm);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--border-radius-subtle);
}
.faq-question {
    width: 100%;
    background-color: var(--color-off-white);
    border: none;
    padding: var(--padding-md);
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark-grey);
    border-radius: var(--border-radius-subtle);
}
.faq-question:hover {
    background-color: var(--color-light-grey);
}
.faq-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) var(--transition-easing);
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 var(--padding-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) var(--transition-easing), padding var(--transition-speed) var(--transition-easing);
}
.faq-answer p {
    padding: var(--padding-md) 0;
    margin-bottom: 0;
}
.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: var(--padding-sm) var(--padding-md) var(--padding-md);
}

/* Press Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--padding-lg);
}
.press-link {
    margin-top: var(--padding-md);
    display: inline-block; /* To respect margins */
}

/* Contact Section */
.contact-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
}
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)); /* Dark overlay */
    z-index: 1;
}
.contact-section .container {
    position: relative;
    z-index: 2;
}
.contact-section .section-title,
.contact-section .section-intro {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--padding-lg);
    align-items: start;
}
@media (min-width: 992px) {
    .contact-form-container {
        grid-template-columns: 2fr 1fr; /* Form takes more space */
    }
}

.contact-form .form-group {
    margin-bottom: var(--padding-md);
}
.contact-form label {
    display: block;
    margin-bottom: var(--padding-sm) / 2;
    font-weight: 500;
    color: var(--color-off-white);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8em 1em;
    border: 2px solid var(--color-light-grey); /* Neo-brutalism border */
    border-radius: var(--border-radius-sharp);
    background-color: var(--color-white);
    color: var(--color-dark-grey);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.form-submit-btn {
    width: 100%;
    padding: 0.9em 1.5em; /* Slightly larger padding for main action button */
    font-size: 1.1rem;
}
@media (min-width: 768px) {
    .form-submit-btn {
        width: auto; /* Allow button to size to content on larger screens */
    }
}


.contact-details h3 {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: var(--padding-md);
}
.contact-details p {
    color: var(--color-off-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: var(--padding-sm);
    font-size: 1.1rem;
}
.contact-details strong {
    color: var(--color-white);
}

/* Footer */
.site-footer {
    background-color: var(--color-darkest-grey);
    color: var(--color-light-grey);
    padding: var(--padding-lg) 0;
    text-align: center;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--padding-lg);
    text-align: left; /* Align text left within columns */
}
.site-footer h4 {
    color: var(--color-white);
    margin-bottom: var(--padding-md);
    font-size: 1.3rem;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer ul li {
    margin-bottom: var(--padding-sm);
}
.site-footer ul a {
    color: var(--color-light-grey);
    text-decoration: none;
}
.site-footer ul a:hover {
    color: var(--color-white);
    text-decoration: underline;
}
.footer-social ul a {
    /* For text links, no special icon styling needed beyond standard <a> */
    font-weight: 500;
}
.footer-contact p {
    margin-bottom: var(--padding-sm);
    font-size: 0.95rem;
}
.footer-copyright {
    grid-column: 1 / -1; /* Span all columns */
    text-align: center;
    margin-top: var(--padding-lg);
    padding-top: var(--padding-md);
    border-top: 1px solid var(--color-medium-grey);
    font-size: 0.9rem;
}


/* Success Page Specific Styles */
body.success-page .main-container > main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height)); /* Full viewport minus header */
    text-align: center;
}
.success-content {
    background-color: var(--card-bg);
    padding: var(--padding-lg) calc(var(--padding-lg) * 1.5);
    border-radius: var(--border-radius-subtle);
    border: 2px solid var(--card-border-color);
    box-shadow: 5px 5px 0px var(--card-shadow-color);
}
.success-content h1 {
    color: var(--accent-color);
    margin-bottom: var(--padding-md);
}
.success-content p {
    margin-bottom: var(--padding-lg);
    font-size: 1.2rem;
}

/* Scroll Animations (Initial States - JS will add 'visible' class) */
[data-scroll-animation] {
    /*opacity: 0;*/
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition-easing), transform 0.6s var(--transition-easing);
}
[data-scroll-animation].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Backgrounds (Basic CSS version, JS can enhance) */
[data-parallax-bg] {
    background-attachment: fixed; /* Simple parallax effect */
}


/* Responsive Adjustments */
@media (max-width: 991px) { /* Medium devices (tablets, less than 992px) */
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
}

@media (max-width: 767px) { /* Small devices (landscape phones, 767px and down) */
    :root {
        --header-height: 70px;
    }

    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .main-navigation .nav-list {
        display: none; /* Hide on mobile by default */
        flex-direction: column;
        position: absolute;
        top: var(--header-height); /* Position below header */
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        border-top: 1px solid var(--color-light-grey);
        border-bottom: 1px solid var(--color-light-grey);
        padding: var(--padding-sm) 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .main-navigation .nav-list.is-active {
        display: flex; /* Show when active */
    }
    .main-navigation .nav-list li {
        margin-left: 0;
        width: 100%;
    }
    .main-navigation .nav-list a {
        display: block;
        padding: var(--padding-md);
        text-align: center;
        border-bottom: 1px solid var(--color-off-white);
    }
    .main-navigation .nav-list li:last-child a {
        border-bottom: none;
    }
    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .footer-container {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }
    .site-footer div:not(:last-child) {
        margin-bottom: var(--padding-md);
    }
    .site-footer h4 { text-align: center; }

    /* For parallax on mobile, fixed attachment can be problematic.
       It's often better to use scroll or disable it.
       This is a simple override if issues arise.
    */
    [data-parallax-bg] {
        background-attachment: scroll;
    }
}
.menu-toggle{
    display: none;
}