/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'IBM Plex Sans', sans-serif;

    /* Neutral Color Scheme with a touch of calm blue */
    --color-primary-dark: #2c3e50; /* Dark Slate Gray / Deep Blue */
    --color-secondary-dark: #34495e; /* Wet Asphalt / Another Dark Blue/Gray */
    --color-accent: #4A90E2; /* Calm, Professional Blue */
    --color-accent-darker: #357ABD; /* Darker Accent for hovers */
    --color-accent-light: #7BAAF7; /* Lighter Accent */

    --color-text: #333333; /* Main text color for light backgrounds */
    --color-text-light: #f8f9fa; /* Text color for dark backgrounds */
    --color-text-medium: #555555;
    --color-heading: #222222; /* Darker for headings */
    --color-subtle-text: #777777;

    --color-background: #f4f6f8; /* Very light gray */
    --color-background-alt: #ffffff; /* White for cards or sections */
    --color-border: #e0e0e0;
    --color-border-light: rgba(255, 255, 255, 0.18);

    /* Glassmorphism */
    --glass-bg-light-theme: rgba(255, 255, 255, 0.65); /* For light page backgrounds */
    --glass-bg-dark-theme: rgba(50, 50, 70, 0.45); /* For dark page backgrounds */
    --glass-blur: 10px;
    --glass-border-color: rgba(255, 255, 255, 0.2);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);

    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    /* Transitions */
    --transition-smooth: all 0.3s ease-in-out;
    --transition-elastic: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Sizing */
    --navbar-height: 70px; /* Example height */
}

/* Global Resets & 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-secondary);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.has-fixed-header {
    padding-top: var(--navbar-height);
}
body.privacy-page, body.terms-page {
    padding-top: 100px; /* Specific padding for these pages */
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.title, .subtitle { /* Targeting Bulma classes */
    font-family: var(--font-primary);
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.3;
}
.title { margin-bottom: 1rem; }
.subtitle { margin-top: -0.5rem; margin-bottom: 1.5rem; color: var(--color-text-medium); font-weight: 400; }

.title.is-1 { font-size: 3rem; }
.title.is-2, .section-title { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; }
.title.is-3 { font-size: 2rem; }
.title.is-4 { font-size: 1.5rem; }
.title.is-5 { font-size: 1.25rem; }
.subtitle.is-3 { font-size: 1.75rem; }
.subtitle.is-5, .section-subtitle { font-size: 1.1rem; line-height: 1.7; max-width: 700px; margin-left: auto; margin-right: auto;}

p {
    margin-bottom: 1rem;
    color: var(--color-text-medium);
}
.content p:not(:last-child),
.content ul:not(:last-child),
.content ol:not(:last-child) {
    margin-bottom: 1em;
}

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

strong {
    font-weight: 600;
    color: var(--color-text);
}

/* Bulma Overrides & Enhancements */
.section {
    padding: 4rem 1.5rem; /* Consistent padding */
    position: relative; /* For parallax or pseudo-elements */
}
.section:nth-of-type(odd) {
    /* background-color: var(--color-background-alt); */ /* Alternate background if needed */
}

.container {
    max-width: 1140px; /* Standard container width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Buttons - Global Styles */
.button, button, input[type='submit'], input[type='button'] {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.8em 1.8em;
    border-radius: var(--border-radius-md); /* Slightly more rounded */
    transition: var(--transition-bounce);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    font-size: 0.9rem;
}
.button:focus, button:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(var(--color-accent-rgb, 74, 144, 226), 0.5); /* Ensure --color-accent-rgb is defined if used */
}

.button.is-primary, button.is-primary, input[type='submit'].is-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
}
.button.is-primary:hover, button.is-primary:hover, input[type='submit'].is-primary:hover {
    background-color: var(--color-accent-darker);
    border-color: var(--color-accent-darker);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-md);
}

.button.is-link, button.is-link { /* Bulma .is-link */
    background-color: transparent;
    color: var(--color-accent);
    border-color: transparent; /* Assuming it's more like a text link */
}
.button.is-link:hover, button.is-link:hover {
    color: var(--color-accent-darker);
    background-color: rgba(var(--color-accent-rgb, 74, 144, 226), 0.1);
}

.button.is-outlined.is-primary {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}
.button.is-outlined.is-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.button.is-light.is-link { /* For buttons like "Más Información" */
    background-color: rgba(var(--color-accent-rgb, 74, 144, 226), 0.1);
    color: var(--color-accent);
}
.button.is-light.is-link:hover {
    background-color: rgba(var(--color-accent-rgb, 74, 144, 226), 0.2);
    color: var(--color-accent-darker);
}


.button.is-large {
    padding: 1em 2.5em;
    font-size: 1.1rem;
}
.button.is-small {
    padding: 0.5em 1em;
    font-size: 0.8rem;
}

/* Forms */
.input, .textarea {
    font-family: var(--font-secondary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    padding: 0.75em 1em;
    transition: var(--transition-smooth);
    background-color: rgba(255,255,255,0.8); /* Semi-transparent for glass forms */
}
.input:focus, .textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.125em rgba(var(--color-accent-rgb, 74, 144, 226), 0.25);
    background-color: #fff;
}
.label {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text); /* Ensure labels are readable */
}
.contact-form .label {
    color: var(--color-text-light); /* For dark contact section background */
}


/* Glassmorphism */
.glass-effect, .glass-card {
    background: var(--glass-bg-light-theme); /* Default for light theme */
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--border-radius-lg); /* More pronounced rounding for glass */
    border: 1px solid var(--glass-border-color);
    box-shadow: var(--shadow-md);
    position: relative; /* For pseudo-elements or absolute children */
    overflow: hidden; /* To contain blurs and pseudo-elements */
}
/* Adjust glass background for dark sections */
.contact-section .glass-card,
.hero .glass-card { /* If any glass cards are directly on dark hero */
    background: var(--glass-bg-dark-theme);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-section .glass-card .label {
    color: #e0e0e0;
}
.contact-section .glass-card .input,
.contact-section .glass-card .textarea {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--color-text-light);
}
.contact-section .glass-card .input::placeholder,
.contact-section .glass-card .textarea::placeholder {
    color: rgba(255,255,255,0.5);
}
.contact-section .glass-card .input:focus,
.contact-section .glass-card .textarea:focus {
    background-color: rgba(255,255,255,0.2);
    border-color: var(--color-accent-light);
}


/* Header & Navbar */
.header {
    padding: 0.5rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: var(--glass-bg-light-theme); /* Initial fixed header glass effect */
    box-shadow: var(--shadow-md);
}
.navbar-brand .logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}
.navbar-brand .logo-text strong {
    color: var(--color-accent);
}
.navbar-item {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-text-medium);
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}
.navbar-item:hover, .navbar-item.is-active {
    color: var(--color-accent);
    background-color: transparent; /* Override Bulma's hover bg */
}
.navbar-burger {
    color: var(--color-primary-dark);
}
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--glass-bg-light-theme); /* Glass effect for mobile menu */
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
        padding: 0.5rem 0;
    }
    .navbar-menu.is-active {
        display: block; /* Ensure it shows */
    }
    .navbar-item {
        padding: 0.75rem 1.5rem;
    }
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-text-light); /* STROGO: Text in hero section MUST BE WHITE */
}
.hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF !important; /* IMPORTANT: Override any other color */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.hero .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #FFFFFF !important; /* IMPORTANT: Override any other color */
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
.hero .hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: #FFFFFF !important;
}
.hero .button.is-primary.is-outlined {
    border-width: 2px;
    font-weight: 700;
    padding: 0.9em 2.2em;
    color: #FFFFFF;
    border-color: #FFFFFF;
    background-color: transparent;
}
.hero .button.is-primary.is-outlined:hover {
    background-color: #FFFFFF;
    color: var(--color-accent);
    border-color: #FFFFFF;
}
.parallax-layer { /* For hero foreground element */
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    will-change: transform;
    z-index: 1; /* ensure it's behind content if needed, or above bg */
}
.hero .hero-body {
    position: relative;
    z-index: 2; /* Above parallax layer */
    padding-top: 200px;
    padding-bottom: 100px;
}

.card {
    padding: 20px;
}

.p-5 {
    padding: 1rem !important;
}

.page-title-section {
    padding-top: 200px !important;
}

input, textarea, select {
    width: 100%;
}

.contact-form {
    padding: 20px;
}

.client-logos-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Card Styling */
.card.glass-card { /* This is the primary card style for glassmorphism */
    height: 100%; /* Make cards in a row equal height if using Bulma columns */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--transition-elastic), box-shadow 0.3s ease;
}
.card.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-lg);
}
.card .card-image {
    width: 100%; /* Ensure it spans the card width */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Important for image consistency */
}
.card .card-image .image-container {
    width: 100%;
    height: 220px; /* Default fixed height for card images */
    overflow: hidden; /* Crucial for object-fit */
    display: flex; /* Center image if it's smaller (though object-fit handles it) */
    justify-content: center;
    align-items: center;
    background-color: var(--color-border); /* Placeholder while image loads */
}
.card .card-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container, may crop */
    display: block;
}
.card .card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to expand and push footer (if any) down */
    display: flex;
    flex-direction: column;
    text-align: left; /* Default text alignment for card content */
}
.card .card-content .title {
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}
.card .card-content .content {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    flex-grow: 1;
}
.card .card-content .button,
.card .card-content a.button { /* Ensure buttons/links in cards are styled correctly */
    margin-top: auto; /* Pushes button to the bottom of the card content */
    align-self: flex-start; /* Align button to the left if content is flex */
}

/* Specific Card Types - Image Heights and Centering */
.service-card .card-image .image-container { height: 200px; }
.case-study-card .card-image .image-container { height: 250px; } /* Larger images */
.workshop-card .card-image .image-container { height: 180px; }
.news-card .card-image .image-container { height: 180px; }

/* Centering content within cards if specified by design */
.service-card .card-content,
.workshop-card .card-content,
.news-card .card-content {
    text-align: center; /* Center text content within these cards */
}
.service-card .card-content .button,
.workshop-card .card-content .button,
.news-card .card-content .button {
    align-self: center; /* Center button if card content is centered */
}


/* Testimonial Cards */
.testimonial-card .media-left img {
    border-radius: 50%;
    border: 2px solid var(--color-accent-light);
}
.testimonial-card .media-content .title { font-size: 1.1rem; margin-bottom: 0.25rem; }
.testimonial-card .media-content .subtitle { font-size: 0.9rem; color: var(--color-subtle-text); margin-top: 0;}
.testimonial-card .content { font-style: italic; font-size: 1rem; }

/* Case Studies Section with Progress Bars */
.case-study-card .impact-metrics {
    margin-top: 1rem;
    font-size: 0.9rem;
}
.case-study-card .impact-metrics span {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.progress.is-primary::-webkit-progress-value { background-color: var(--color-accent); }
.progress.is-primary::-moz-progress-bar { background-color: var(--color-accent); }
.progress.is-primary::-ms-fill { background-color: var(--color-accent); }

.progress.is-success::-webkit-progress-value { background-color: #23d160; } /* Bulma success */
.progress.is-success::-moz-progress-bar { background-color: #23d160; }
.progress.is-success::-ms-fill { background-color: #23d160; }

.progress.is-info::-webkit-progress-value { background-color: #3298dc; } /* Bulma info */
.progress.is-info::-moz-progress-bar { background-color: #3298dc; }
.progress.is-info::-ms-fill { background-color: #3298dc; }

.progress.is-warning::-webkit-progress-value { background-color: #ffdd57; } /* Bulma warning */
.progress.is-warning::-moz-progress-bar { background-color: #ffdd57; }
.progress.is-warning::-ms-fill { background-color: #ffdd57; }

/* Clientele Section */
.client-logos-gallery .image-container {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}
.client-logos-gallery .image-container:hover {
    transform: scale(1.1);
    opacity: 1;
}
.client-logos-gallery img {
    max-height: 60px; /* Control logo size */
    width: auto;
    filter: grayscale(50%); /* Subtle effect, remove if full color desired */
    transition: filter 0.3s ease;
}
.client-logos-gallery img:hover {
    filter: grayscale(0%);
}

/* Events Calendar Section */
.event-list .event-item {
    display: flex;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 5px solid var(--color-accent);
}
.event-item .event-date {
    margin-right: 1.5rem;
    text-align: center;
    color: var(--color-accent);
    min-width: 60px;
}
.event-item .event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}
.event-item .event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.event-item .event-details .title {
    margin-bottom: 0.5rem;
}

/* News & Press Section */
.news-card .is-size-7.has-text-grey {
    color: var(--color-subtle-text) !important; /* Override Bulma utility */
    margin-bottom: 0.5rem;
    display: block;
}
.press-mention {
    padding: 1.5rem;
    margin-bottom: 1rem; /* For columns */
}
.press-mention .title {
    margin-bottom: 0.75rem;
}

/* Resources Section */
.resource-card .card-content .title a {
    color: var(--color-heading);
}
.resource-card .card-content .title a:hover {
    color: var(--color-accent);
}

/* FAQ Section */
.faq-list .faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md); /* Ensure rounding if glass-card is not directly on faq-item */
}
.faq-item .faq-question {
    width: 100%;
    background: transparent; /* transparent for glass card */
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-heading);
}
.faq-item .faq-question .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--color-accent);
}
.faq-item .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-item .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: none; /* JS will toggle */
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item .faq-answer p {
    color: var(--color-text-medium);
}

/* Contact Section */
.contact-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--color-text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.contact-details h3 { color: #FFFFFF; }
.contact-details p, .contact-details a {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
}
.contact-details a:hover { color: var(--color-accent-light); }
.contact-details strong { color: #cccccc; }

/* Footer */
.footer {
    padding: 3rem 1.5rem 2rem;
    color: var(--color-text-medium); /* Text color in footer */
    font-size: 0.95rem;
}
.footer.glass-effect {
    background: var(--glass-bg-dark-theme); /* Footer on dark glass */
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cccccc; /* Light text for dark glass footer */
}
.footer.glass-effect .footer-title {
    color: #FFFFFF;
}
.footer.glass-effect a {
    color: var(--color-accent-light);
}
.footer.glass-effect a:hover {
    color: #FFFFFF;
}
.footer.glass-effect p {
    color: #b0b0b0;
}


.footer .footer-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-heading);
}
.footer ul {
    list-style: none;
    padding-left: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer ul li a {
    color: var(--color-text-medium); /* Default link color in footer */
    transition: color 0.3s ease;
}
.footer ul li a:hover {
    color: var(--color-accent);
}
.footer .social-links li a {
    font-weight: 500; /* Make social links slightly bolder */
}
.footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-subtle-text);
}
.footer.glass-effect .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaaaaa;
}

/* Animations & Transitions */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s var(--transition-elastic);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animated text fill (example for hero title) */
.animated-text-fill {
    /* Basic setup, JS might be needed for complex fill effects */
    position: relative;
    /* color: transparent;
    -webkit-text-stroke: 1px var(--color-text-light); */
}

/* Specific Page Styles */
/* Success Page */
body.success-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--color-background);
}
body.success-page .main-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
body.success-page main { /* Target main content area specifically */
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.success-message-container {
    background: var(--glass-bg-light-theme);
    padding: 3rem 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 100%;
}
.success-message-container .title {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.success-message-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-medium);
}

/* Privacy & Terms Page (content area, assuming a .content-page-wrapper) */
.privacy-page .container, .terms-page .container {
    padding-top: 2rem; /* Additional spacing if needed after body padding */
    padding-bottom: 4rem;
}
.privacy-page h2, .terms-page h2 { /* First main heading on the page */
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-heading);
    text-align: left;
}
.privacy-page h3, .terms-page h3 { /* Sub-headings */
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-heading);
}
.privacy-page .content-section, .terms-page .content-section {
    background-color: var(--color-background-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

/* Cookie Consent Popup */
#cookieConsentPopup {
    font-family: var(--font-secondary);
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2); /* More pronounced shadow */
}
#cookieConsentPopup p {
    color: #f0f0f0;
    margin-bottom: 1rem; /* Ensure spacing if text wraps */
    font-size: 0.95rem;
    line-height: 1.5;
}
#cookieConsentPopup button {
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
}
#acceptCookieButton {
    background-color: var(--color-accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: var(--border-radius-sm);
}
#acceptCookieButton:hover {
    background-color: var(--color-accent-darker);
}
#closeCookieButton {
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #777777;
    padding: 8px 20px;
    border-radius: var(--border-radius-sm);
}
#closeCookieButton:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: #aaaaaa;
}


/* Responsive Adjustments */
@media screen and (max-width: 1023px) { /* Bulma's $desktop breakpoint */
    .hero .hero-title { font-size: 2.8rem; }
    .hero .hero-subtitle { font-size: 1.5rem; }
    .title.is-1 { font-size: 2.5rem; }
    .title.is-2, .section-title { font-size: 2rem; }

    .columns.is-reversed-mobile {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 768px) { /* Bulma's $tablet breakpoint */
    .hero .hero-title { font-size: 2.2rem; }
    .hero .hero-subtitle { font-size: 1.3rem; }
    .hero .hero-text { font-size: 1rem; }
    .section { padding: 3rem 1rem; }
    .title.is-1 { font-size: 2rem; }
    .title.is-2, .section-title { font-size: 1.8rem; }
    .title.is-4 { font-size: 1.3rem; }

    .event-list .event-item {
        flex-direction: column;
        padding: 1rem;
    }
    .event-item .event-date {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: left; /* Align date left on mobile */
        display: flex;
        align-items: center;
    }
    .event-item .event-date .month { margin-right: 0.5rem; }
    .event-item .event-date .day { font-size: 1.5rem; }


    .contact-section .columns {
        flex-direction: column-reverse; /* Form above details on mobile */
    }
    .contact-section .column.is-one-third {
        margin-top: 2rem;
    }

    .footer .columns {
        text-align: center;
    }
    .footer .column:not(:last-child) {
        margin-bottom: 2rem;
    }
}