/* style.css */

:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Work Sans', sans-serif;

    /* Pastel Color Palette */
    --color-primary: #A7C7E7;         /* Soft Blue */
    --color-primary-darker: #8DA8C5;  /* Darker Soft Blue */
    --color-accent: #FFDAB9;          /* Soft Peach (Pastel Orange) */
    --color-accent-darker: #FFC4A0;   /* Darker Soft Peach */
    --color-success: #C8E6C9;         /* Soft Green */
    --color-success-darker: #A9D1AA;  /* Darker Soft Green */
    --color-info: #B2EBF2;            /* Soft Cyan */
    --color-info-darker: #92DDE8;     /* Darker Soft Cyan */
    --color-warning: #FFECB3;         /* Soft Yellow */

    /* Neutral & Text Colors */
    --color-background-body: #F8F9FA; /* Very light gray/off-white for overall page */
    --color-background-section: #FFFFFF; /* White for section backgrounds for clean look */
    --color-text-headings: #2c3e50;   /* Dark Blue-Gray */
    --color-text-body: #4a647a;       /* Slightly softer Dark Blue-Gray for body */
    --color-text-muted: #7f8c9b;      /* Muted Gray */
    --color-text-on-primary: #2c3e50; /* Dark text on light primary buttons */
    --color-text-on-dark-bg: #FFFFFF; /* White text for dark backgrounds (hero) */
    --color-border: #DDE2E8;          /* Light Border */
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.45); /* Increased opacity for better readability on pastel */
    --glass-border-color: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 24px rgba(176, 191, 222, 0.2); /* Softer shadow with a hint of blue */
    --glass-blur: 8px; /* Slightly less blur can look crisper with pastels */

    /* UI Elements */
    --border-radius-soft: 8px;
    --border-radius-round: 15px;
    --border-radius-card: var(--border-radius-round);
    --border-radius-button: var(--border-radius-soft);
    --border-radius-input: var(--border-radius-soft);

    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-smooth: 0.35s ease-in-out;

    /* Spacing */
    --navbar-height: 3.25rem; /* Default Bulma navbar height */
    --section-padding-vertical: 4rem;
    --section-padding-horizontal: 1.5rem;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-background-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--navbar-height); /* Offset for fixed navbar */
}

h1, h2, h3, h4, h5, h6,
.title,
.subtitle {
    font-family: var(--font-primary);
    color: var(--color-text-headings);
    font-weight: 600; /* Default Poppins weight */
}

.title { /* Bulma .title override for consistency */
    color: var(--color-text-headings);
    font-weight: 700;
}
.subtitle { /* Bulma .subtitle override */
    color: var(--color-text-muted);
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-body);
}

a {
    color: var(--color-primary-darker);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--color-accent-darker);
}

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

/* === Layout === */
.section { /* Bulma section override */
    padding: var(--section-padding-vertical) var(--section-padding-horizontal);
    background-color: var(--color-background-section);
}
/* Alternating section backgrounds for visual rhythm if desired */
.section:nth-of-type(even) {
    background-color: var(--color-background-body); /* Or another light pastel */
}
#hero.section { /* Hero is fullheight, so standard padding doesn't apply the same way */
    background-color: transparent; /* Background is via style attr */
}


.container { /* Bulma container */
    max-width: 1140px; /* Common max-width */
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--section-padding-horizontal);
    padding-right: var(--section-padding-horizontal);
}

/* === Navbar === */
.navbar.is-fixed-top {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border-color);
}

.navbar-item, .navbar-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--color-text-headings) !important;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.navbar-item:hover, .navbar-link:hover, .navbar-item.is-active {
    background-color: rgba(0,0,0,0.03) !important;
    color: var(--color-primary-darker) !important;
}
.navbar-burger span {
    background-color: var(--color-text-headings) !important;
}
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background: var(--glass-bg);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 0 0 var(--border-radius-round) var(--border-radius-round);
        padding: 0.5rem 0;
    }
}

/* === Hero Section === */
#hero {
    color: var(--color-text-on-dark-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .hero-body {
    padding: 2rem; /* Ensure some padding even on full height */
}
#hero .title.is-1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    color: var(--color-text-on-dark-bg) !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 1rem;
}
#hero .subtitle.is-3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    color: var(--color-text-on-dark-bg) !important;
    opacity: 0.9;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}
#hero p { /* Paragraph in hero */
    color: var(--color-text-on-dark-bg) !important;
    opacity: 0.85;
    font-size: 1.1rem;
    max-width: 650px; /* Control line length for readability */
    margin-left: auto;
    margin-right: auto;
}
#hero .button.is-primary {
    margin-top: 1.5rem;
    transform: perspective(500px) translateZ(0); /* Prepare for 3D effect */
}
#hero .button.is-primary:hover {
    transform: perspective(500px) translateZ(20px) translateY(-2px); /* Subtle 3D lift */
}

/* === Page Hero (for inner pages like about, contact) === */
.page-hero {
    padding-top: calc(var(--navbar-height) + 2rem); /* Ensure it's below fixed navbar */
    padding-bottom: 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: calc(-1 * var(--navbar-height)); /* Pull it up to fill space under transparent/glass navbar */
}
.page-hero .hero-body{
    padding-top: 4rem; /* Additional padding for content */
    padding-bottom: 2rem;
}
.page-hero .title.is-1 {
    color: var(--color-text-on-dark-bg) !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.page-hero .subtitle.is-4 {
    color: var(--color-text-on-dark-bg) !important;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* === Section Title Styling (from HTML structure) === */
.section-title { /* This class is applied to h2 in the HTML */
    margin-bottom: 3rem !important; /* Bulma override */
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

/* === Buttons (Global) === */
.button, button, input[type="submit"], input[type="button"], input[type="reset"] {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.8em 1.8em; /* Slightly more padding */
    border-radius: var(--border-radius-button);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    will-change: transform, box-shadow; /* Optimize for animations */
    transform: perspective(1px) translateZ(0); /* Base for 3D */
}

.button:active, button:active, input[type="submit"]:active, input[type="button"]:active, input[type="reset"]:active {
    transform: translateY(1px) scale(0.97); /* More subtle press */
    box-shadow: none !important; /* Remove shadow on press */
}

/* Bulma Button Overrides & Theming */
.button.is-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-on-primary);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb, 167,199,231), 0.3); /* Softer shadow */
}
:root { --color-primary-rgb: 167,199,231; } /* Define RGB for primary color for shadow */

.button.is-primary:hover {
    background-color: var(--color-primary-darker);
    border-color: var(--color-primary-darker);
    color: var(--color-text-on-primary);
    transform: translateY(-3px) scale(1.03); /* More pronounced hover lift */
    box-shadow: 0 7px 18px rgba(var(--color-primary-rgb, 167,199,231), 0.4);
}

.button.is-primary.is-outlined {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}
.button.is-primary.is-outlined:hover {
    background-color: var(--color-primary);
    color: var(--color-text-on-primary);
    border-color: var(--color-primary);
    /* transform: translateY(-2px); No transform or very subtle for outlined */
}
.button.is-info { background-color: var(--color-info); border-color: var(--color-info); color: var(--color-text-on-primary); }
.button.is-info:hover { background-color: var(--color-info-darker); border-color: var(--color-info-darker); }
.button.is-success { background-color: var(--color-success); border-color: var(--color-success); color: var(--color-text-on-primary); }
.button.is-success:hover { background-color: var(--color-success-darker); border-color: var(--color-success-darker); }


/* === Cards (General Glassmorphism) === */
.glassmorphism-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--border-radius-card);
    border: 1px solid var(--glass-border-color);
    box-shadow: var(--glass-shadow);
    padding: 1.5rem; /* Default padding for glass cards */
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    will-change: transform, box-shadow;
    overflow: hidden; /* Important for child elements with border-radius */
    display: flex; /* For STROGO requirement */
    flex-direction: column; /* For STROGO requirement */
    /* align-items: center; /* This centers .card-image and .card-content blocks */
    /* text-align: center; /* This centers inline/inline-block content within the card, use Bulma's has-text-centered for blocks */
}

.card.glassmorphism-card { /* If Bulma .card is also a glassmorphism-card */
     padding: 0; /* Bulma card has its own padding structure */
}

.card:hover, .glassmorphism-card:hover { /* General card hover, not just glassmorphism */
    transform: translateY(-8px) scale(1.02); /* More noticeable 3D lift */
    box-shadow: 0 12px 30px rgba(176, 191, 222, 0.3);
}

.card .card-image { /* Bulma card-image */
    width: 100%; /* Ensure it spans the card width if align-items:center is on .card */
    border-top-left-radius: var(--border-radius-card); /* Match card rounding if image is at the top */
    border-top-right-radius: var(--border-radius-card);
    overflow: hidden; /* Clip image within rounded corners */
}
.card .card-image img {
    width: 100%;
    height: 100%; /* If figure has fixed height */
    object-fit: cover; /* Crucial for aspect ratio figures or fixed height containers */
    display: block;
    border-radius: 0; /* Remove if parent has overflow:hidden and border-radius */
}
.card .card-content {
    padding: 1.5rem; /* Standard Bulma card content padding */
    width: 100%; /* Ensure it spans the card width */
    flex-grow: 1; /* Allow content to take available space */
}
.card .card-content .title,
.card .card-content .subtitle {
    color: var(--color-text-headings);
}
.card .card-content .subtitle {
    color: var(--color-text-muted);
}
.card .card-content p {
    color: var(--color-text-body);
    font-size: 0.95rem;
}

/* Specific Card Type Centering based on STROGO rules */
/* .card, .item, .testimonial, .team-member, .product-card and similar elements */
.card, .award-card, .team-member-card, .testimonial-card, .event-card, .resource-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers .card-image and .card-content if they are not full width */
}
.card .card-content, .award-card .card-content, .team-member-card .card-content,
.testimonial-card .card-content, .event-card .card-content, .resource-card .card-content {
    text-align: center; /* Centers text and inline elements inside card-content */
}
/* Ensure .card-image or image containers behave as expected */
.card .card-image, .card .image-container {
     width: 100%; /* Usually, image containers span full width */
}
.card .card-image figure.image, /* Bulma figure inside card-image */
.card .image-container figure.image {
    margin-left: auto; /* Center the figure if it's not full width (e.g. is-128x128) */
    margin-right: auto;
}

/* Image container with fixed height as per STROGO */
.image-container-fixed-height { /* Use this class on the div wrapping the img */
    width: 100%;
    height: 200px; /* Example fixed height, adjust as needed */
    overflow: hidden;
    margin-bottom: 1rem; /* Space below image */
    border-radius: var(--border-radius-soft); /* Optional rounding for the container */
}
.image-container-fixed-height img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === Accordions (History Section) === */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item { /* Each item can be a glassmorphism card */
    margin-bottom: 1rem;
    /* Glassmorphism applied by .glassmorphism-card if used on accordion-item */
}
.accordion-header {
    background-color: rgba(255,255,255,0.1); /* Light touch if inside a glass card */
    color: var(--color-text-headings);
    cursor: pointer;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    border: none; /* Removed default button border */
    border-bottom: 1px solid var(--glass-border-color); /* Subtle separator */
    border-radius: 0; /* Headers not individually rounded if part of a list */
    transition: background-color var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 600;
}
.accordion-item:first-child .accordion-header {
    border-top-left-radius: var(--border-radius-card); /* Round top of first item */
    border-top-right-radius: var(--border-radius-card);
}
.accordion-item:last-child .accordion-header.collapsed { /* If no content shown */
    border-bottom-left-radius: var(--border-radius-card);
    border-bottom-right-radius: var(--border-radius-card);
    border-bottom: none;
}
.accordion-header:hover {
    background-color: rgba(255,255,255,0.2);
}
.accordion-header .icon {
    transition: transform var(--transition-smooth);
}
.accordion-item.is-active .accordion-header .icon i {
    transform: rotate(45deg); /* Plus to X */
}
.accordion-content {
    padding: 0 1.5rem; /* Match header padding */
    background-color: transparent; /* Content bg is part of card */
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
    color: var(--color-text-body);
}
.accordion-item.is-active .accordion-content {
    /* max-height set by JS */
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}
.accordion-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === Progress Bars (Events Section) === */
.progress { /* Bulma progress bar */
    border-radius: var(--border-radius-soft);
    background-color: var(--color-border); /* Track color */
    height: 0.75rem; /* Slimmer progress bar */
}
.progress::-webkit-progress-bar {
    background-color: var(--color-border);
    border-radius: var(--border-radius-soft);
}
.progress::-webkit-progress-value {
    border-radius: var(--border-radius-soft);
    transition: width 0.5s ease-in-out;
}
.progress.is-primary::-webkit-progress-value { background-color: var(--color-primary); }
.progress.is-primary::-moz-progress-bar { background-color: var(--color-primary); }
.progress.is-info::-webkit-progress-value { background-color: var(--color-info); }
.progress.is-info::-moz-progress-bar { background-color: var(--color-info); }
.progress.is-success::-webkit-progress-value { background-color: var(--color-success); }
.progress.is-success::-moz-progress-bar { background-color: var(--color-success); }


/* === Forms (Contact Page) === */
.form-container { /* This is a .glassmorphism-card */
    padding: 2rem;
}
.modern-input, .modern-textarea {
    font-family: var(--font-secondary);
    border-radius: var(--border-radius-input);
    border: 1px solid var(--color-border);
    padding: 0.8em 1em;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.8); /* Slightly opaque for better contrast */
    color: var(--color-text-body);
    width: 100%;
    font-size: 1rem;
}
.modern-input:focus, .modern-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.15rem rgba(var(--color-primary-rgb, 167,199,231), 0.25);
    outline: none;
    background-color: var(--color-white);
}
.modern-input::placeholder, .modern-textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}
.field .label { /* Bulma label */
    color: var(--color-text-headings);
    font-weight: 500;
    margin-bottom: 0.5em;
}
.field .checkbox { /* Bulma checkbox */
    font-family: var(--font-secondary);
    color: var(--color-text-body);
}
.field .checkbox input[type="checkbox"] {
    margin-right: 0.5em;
}
.field .checkbox a {
    color: var(--color-primary-darker);
    text-decoration: underline;
}
.field .checkbox a:hover {
    color: var(--color-accent-darker);
}
.control.has-icons-left .input { padding-left: 2.5em; } /* Bulma default */
.control.has-icons-left .icon { height: 2.5em; width: 2.5em; } /* Bulma default */

/* === Footer === */
.footer.glassmorphism-footer {
    padding-top: 3rem;
    padding-bottom: 2rem; /* Reduce bottom padding */
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 3rem; /* Space above footer */
}
.footer .title.is-5 {
    font-family: var(--font-primary);
    color: var(--color-text-headings);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.footer p, .footer ul li {
    color: var(--color-text-body); /* Body text for paragraphs in footer */
    margin-bottom: 0.5rem;
}
.footer a {
    color: var(--color-primary-darker);
    transition: color var(--transition-fast);
}
.footer a:hover {
    color: var(--color-accent);
}
/* Styling for text-based social media links */
.footer .column ul li a[target="_blank"] { /* Assuming social links are external */
    display: inline-block; /* For padding and potential future icons */
    padding: 0.2em 0; /* Minimal padding */
}
/* Copyright text */
.footer .content.has-text-centered p {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === Specific Page Styles === */
/* success.html */
body.success-page { /* Add class="success-page" to body tag of success.html */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.success-page main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
body.success-page .page-hero { /* Ensure hero doesn't prevent centering if it's small */
    margin-top: 0; /* Override default page-hero margin-top */
    padding-top: var(--navbar-height);
}
body.success-page .section:not(.page-hero) { /* The content section after hero */
    width: 100%;
}
body.success-page .icon.has-text-success i {
    font-size: 4rem; /* Larger icon */
    color: var(--color-success-darker) !important;
}

/* privacy.html & terms.html */
/* The body padding-top handles navbar offset globally. */
/* If specific content sections on these pages need more top spacing AFTER a page hero: */
body.privacy-page main > .section:nth-of-type(2), /* Second section, assuming first is page-hero */
body.terms-page main > .section:nth-of-type(2) {
    padding-top: 2rem; /* Additional padding if needed */
}
/* If no page-hero on these pages, the global body padding-top should suffice. */
/* For the case with .page-hero then .section */
.privacy-page .section:not(.page-hero),
.terms-page .section:not(.page-hero) {
    /* Bulma's section already has padding. If more is needed to clear header elements beyond the navbar itself: */
    /* padding-top: calc(var(--section-padding-vertical) + 2rem); /* Example */
}
/* The main content text block style for legal pages */
.legal-content-container .content { /* Assuming container has .content class from Bulma */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.legal-content-container .content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}
.legal-content-container .content ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1rem;
}
.legal-content-container .content ul li {
    margin-bottom: 0.3em;
}


/* === Shaded Images (Text on Image) === */
.shaded-image {
    position: relative;
    border-radius: var(--border-radius-soft);
    overflow: hidden;
}
.shaded-image::after { /* Darkening overlay */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35));
    pointer-events: none;
}
.shaded-image img {
    display: block;
    width: 100%;
}
.image-caption { /* Text on the shaded image */
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: var(--color-text-on-dark-bg);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    z-index: 1;
}

/* === 'Read More' Link Style === */
.read-more-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-accent-darker); /* Distinct color */
    text-decoration: none;
    display: inline-block;
    padding: 0.25em 0;
    position: relative;
    transition: color var(--transition-smooth), letter-spacing var(--transition-smooth);
}
.read-more-link::after {
    content: '→';
    margin-left: 0.4em;
    display: inline-block;
    transition: transform var(--transition-smooth);
}
.read-more-link:hover {
    color: var(--color-primary-darker);
    letter-spacing: 0.5px; /* Subtle spread */
}
.read-more-link:hover::after {
    transform: translateX(4px);
}

/* Parallax Scrolling Placeholder Class (JS driven) */
.parallax-background {
    background-attachment: fixed; /* Simple CSS parallax, limited */
    /* For JS parallax, this class would be a target */
}

/* === Biomorphic Design Elements (Subtle) === */
/* Example: A decorative biomorphic blob */
.biomorphic-blob {
    position: absolute;
    z-index: -1; /* Behind content */
    opacity: 0.1; /* Very subtle */
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border-radius: var(--border-radius-biomorphic-1);
    animation: morph-blob 15s ease-in-out infinite alternate;
    filter: blur(30px); /* Soften the blob */
}

@keyframes morph-blob {
    0% {
        transform: scale(1) rotate(0deg);
        border-radius: var(--border-radius-biomorphic-1);
    }
    100% {
        transform: scale(1.2) rotate(20deg);
        border-radius: var(--border-radius-biomorphic-2);
    }
}

/* === Utility Classes === */
.has-text-shadow-soft {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* === Responsive Adjustments for Bulma (if needed) === */
@media screen and (max-width: 768px) {
    .section {
        padding: calc(var(--section-padding-vertical) * 0.75) var(--section-padding-horizontal);
    }
    .title.is-1 { font-size: 2rem; }
    .title.is-2 { font-size: 1.75rem; }
    .subtitle { font-size: 1rem; }

    #hero .title.is-1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    #hero .subtitle.is-3 {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    #hero p {
        font-size: 1rem;
    }
    .button {
        padding: 0.7em 1.5em; /* Slightly smaller padding on mobile */
    }
}