/* style.css */

/* -------------------------------------------------------------------------
   0. CSS VARIABLES
-------------------------------------------------------------------------- */
:root {
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Lato', sans-serif;

    /* Analogous Color Scheme with Futurist Vibe */
    --color-primary: #0A4D68; /* Deep Blue/Teal - Main structural color */
    --color-primary-light: #088395; /* Medium Teal - Secondary elements */
    --color-primary-lighter: #05BFDB; /* Bright Cyan - Highlights, accents */
    
    --color-accent: #FF6700; /* Bright Orange - CTAs, important actions */
    --color-accent-dark: #e05a00; /* Darker Orange for hover */

    --color-text-light: #FFFFFF;
    --color-text-dark: #333333;
    --color-text-darker: #222222; /* For main headings on light bg */
    --color-text-medium: #555555; /* For body text */
    --color-text-subtle: #777777; /* For less important text */

    --color-background-body: #f0f2f5; /* Light grey for overall page background */
    --color-background-section-alt: #e9f1f7; /* Slightly different light for alternating sections */
    --color-background-card: #ffffff;
    
    --color-border: #dddddd;
    --color-shadow-light: rgba(0, 0, 0, 0.05);
    --color-shadow-medium: rgba(0, 0, 0, 0.1);
    --color-shadow-dark: rgba(0, 0, 0, 0.15);

    --color-success: #28a745;
    --color-error: #dc3545;

    --gradient-futuristic: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    --gradient-accent: linear-gradient(45deg, var(--color-accent), var(--color-accent-dark));
    
    --overlay-dark: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    --overlay-dark-strong: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));

    --transition-smooth: all 0.3s ease-in-out;
    --transition-fast: all 0.2s ease-in-out;

    --border-radius-small: 3px;
    --border-radius-medium: 5px;
    --border-radius-large: 8px;

    --section-padding: 60px 0;
    --container-max-width: 1200px;
    --header-height: 70px;
}

/* -------------------------------------------------------------------------
   1. RESET & BASE STYLES
-------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px; /* Base font size for rem calculation */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.site-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* -------------------------------------------------------------------------
   2. TYPOGRAPHY
-------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-darker);
    margin-bottom: 0.75em; /* Default margin, can be overridden */
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); } /* Used for .section-title */
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }

p {
    margin-bottom: 1rem;
    font-size: 1rem; /* Lato regular */
}

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

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

/* -------------------------------------------------------------------------
   3. LAYOUT (Container, Columns)
-------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    padding: var(--section-padding);
    position: relative; /* For pseudo-elements or absolute positioned children */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text-darker);
    text-shadow: 1px 1px 2px var(--color-shadow-light);
}
/* Section titles on dark backgrounds will be styled inline or via specific classes in HTML */

.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px; /* Gutter compensation */
    margin-right: -10px; /* Gutter compensation */
}

.column {
    padding-left: 10px; /* Gutter */
    padding-right: 10px; /* Gutter */
    box-sizing: border-box;
    width: 100%; /* Default for mobile */
}

/* Example column sizes (add more as needed) */
@media (min-width: 769px) {
    .is-full { flex: 0 0 100%; max-width: 100%; }
    .is-two-thirds { flex: 0 0 66.6666%; max-width: 66.6666%; }
    .is-half { flex: 0 0 50%; max-width: 50%; }
    .is-one-third { flex: 0 0 33.3333%; max-width: 33.3333%; }
    .is-one-quarter { flex: 0 0 25%; max-width: 25%; }
}

/* -------------------------------------------------------------------------
   4. UTILITY CLASSES
-------------------------------------------------------------------------- */
.has-text-centered { text-align: center; }
.has-text-right { text-align: right; }
.has-text-left { text-align: left; }

.reveal-item { /* For ScrollReveal animations */
    /*visibility: hidden;*/
}

.margin-bottom-small { margin-bottom: 1rem; }
.margin-bottom-medium { margin-bottom: 2rem; }
.margin-bottom-large { margin-bottom: 3rem; }

/* -------------------------------------------------------------------------
   5. GLOBAL COMPONENTS (Buttons, Cards, Forms)
-------------------------------------------------------------------------- */

/* Buttons */
.button, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    padding: 12px 28px; /* Slightly more padding */
    font-family: var(--font-secondary);
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase; /* Futurist touch */
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent; /* For consistent sizing with outline buttons */
    background-color: var(--color-accent);
    color: var(--color-text-light);
    box-shadow: 0 2px 5px var(--color-shadow-medium);
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 10px var(--color-shadow-dark);
    color: var(--color-text-light); /* Ensure text color stays light on hover */
}

.button-secondary {
    background-color: var(--color-primary-light);
    color: var(--color-text-light);
    border-color: var(--color-primary-light);
}
.button-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.button-outline {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
.button-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

/* Cards */
.card {
    background-color: var(--color-background-card);
    border-radius: var(--border-radius-large);
    box-shadow: 0 5px 20px var(--color-shadow-medium);
    overflow: hidden;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards in a row have same height */
    /* As per STROGO: align-items: center; - this centers .card-image and .card-content blocks.
       If these blocks are width:100%, this has no effect on their position. */
    align-items: center; 
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--color-shadow-dark);
}

.card-image {
    width: 100%; /* Make image container full width of card */
    overflow: hidden;
    position: relative;
    text-align: center; /* Centers inline images */
}
.card-image img {
    width: 100%;
    height: 220px; /* Fixed height for images in cards */
    object-fit: cover; /* Ensures image covers the area, might crop */
    display: block;
    transition: transform 0.4s ease;
    margin: 0 auto; /* Centers block images if not 100% width (redundant with width:100%) */
}
.card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 25px;
    flex-grow: 1; /* Allows content to fill remaining space */
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure content block takes full width of card */
    text-align: left; /* Default text alignment */
}
.card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem; /* Adaptive */
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 10px;
}
.card-content p {
    font-size: 0.95rem; /* Adaptive */
    color: var(--color-text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
    flex-grow: 1; /* Push button to bottom */
}
.card-content .button {
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-top: auto; /* Pushes button to bottom of card-content */
    align-self: flex-start; /* Aligns button to left if card-content is flex */
}
.card-content .read-more-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
    position: relative;
}
.card-content .read-more-link::after {
    content: ' →';
    transition: transform 0.2s ease;
    display: inline-block;
}
.card-content .read-more-link:hover::after {
    transform: translateX(3px);
}


/* Forms (General styling for contact page etc.) */
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    font-family: var(--font-secondary);
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: #fff; /* Slightly off-white for depth */
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-medium);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: inset 0 1px 3px var(--color-shadow-light);
}
.form-control:focus {
    border-color: var(--color-accent);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(var(--color-accent), 0.25), inset 0 1px 3px var(--color-shadow-light);
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
/* Placeholder styling */
.form-control::placeholder {
    color: var(--color-text-subtle);
    opacity: 1; /* Firefox */
}


/* -------------------------------------------------------------------------
   6. HEADER & NAVIGATION
-------------------------------------------------------------------------- */
.header {
    background-color: rgba(10, 77, 104, 0.85); /* var(--color-primary) with alpha for slight transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--color-shadow-medium);
    height: var(--header-height);
    transition: background-color 0.3s ease;
}
/* Add a class on scroll if needed for different header bg */
/* .header.scrolled { background-color: var(--color-primary); } */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav-logo {
    font-family: var(--font-primary);
    font-size: 1.0rem;
    font-weight: 900; /* Bolder for logo */
    color: var(--color-text-light);
    text-decoration: none;
    letter-spacing: -0.5px; /* Tighten spacing */
}
.nav-logo:hover {
    color: var(--color-primary-lighter);
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    margin-left: 25px; /* Spacing between nav items */
}
.nav-menu li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: bold;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}
.nav-menu li a:hover,
.nav-menu li a.active { /* Add 'active' class via JS for current page */
    color: var(--color-accent);
    text-decoration: none;
}
.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.nav-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-light);
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 1px;
}

/* Active state for burger icon (JS toggled class 'is-active') */
.nav-toggle.is-active .icon-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-active .icon-bar:nth-child(2) {
    /*opacity: 0;*/
}
.nav-toggle.is-active .icon-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* -------------------------------------------------------------------------
   7. FOOTER
-------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-primary); /* Dark background for footer */
    color: var(--color-text-light);
    padding: 50px 0 20px;
    font-size: 0.9rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* Gap between columns */
    margin-bottom: 30px;
}
.footer-column {
    flex: 1;
    min-width: 220px; /* Ensure columns don't get too squished */
}
.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}
.footer-column h4::after { /* Underline effect for footer headings */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}
.footer-column p {
    color: #cccccc; /* Lighter shade of white for paragraph text */
    line-height: 1.7;
    margin-bottom: 10px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul li a {
    color: #cccccc; /* Lighter shade for links */
    text-decoration: none;
    transition: color var(--transition-fast), padding-left 0.2s ease;
}
.footer-column ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px; /* Slight indent on hover */
    text-decoration: none;
}

.footer .social-links {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 15px; /* Space between social links */
    padding-top: 5px;
}
.footer .social-links li a { /* Text links as per requirement */
    font-weight: bold; /* Make text links more prominent */
    font-size: 0.9rem;
    /* No icons needed if text-only */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #aaaaaa;
}

/* -------------------------------------------------------------------------
   8. SECTION SPECIFIC STYLES
-------------------------------------------------------------------------- */

/* Hero Section */
.hero {
    min-height: 85vh; /* Slightly less than full for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: var(--header-height); /* Account for fixed header */
}
.hero-content {
    max-width: 800px;
    animation: fadeInHero 1s ease-out forwards;
}
@keyframes fadeInHero {
    /*from { opacity: 0; transform: translateY(20px); }*/
    to { opacity: 1; transform: translateY(0); }
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem); /* Responsive title */
    font-weight: 900; /* Very bold for impact */
    color: var(--color-text-light); /* Ensured white by HTML inline style, reinforce here */
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7); /* Stronger shadow for readability */
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem); /* Responsive subtitle */
    color: var(--color-text-light); /* Ensured white by HTML inline style */
    margin-bottom: 1.5em;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.hero-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Our Process Section */
.our-process .process-step {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px; /* If columns stack */
}
.process-icon-placeholder img {
    width: 70px; /* Size from HTML is 80px, slightly smaller for design */
    height: 70px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* filter: drop-shadow(0 0 10px var(--color-primary-lighter)); */ /* Optional glow */
}
.process-step:hover .process-icon-placeholder img {
    transform: scale(1.15) rotate(3deg);
}
.process-step h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
}

/* Research Section */
.research {
    background-color: var(--color-background-section-alt);
}
.research p {
    font-size: 1.05rem; /* Slightly larger for readability */
    color: var(--color-text-dark);
    max-width: 900px; /* For better line length on wide screens */
    margin-left: auto;
    margin-right: auto;
}

/* Blog, Workshops Sections (use .card styling) */
/* Additional styling for specific card types if needed */

/* Success Stories Section */
.success-stories {
    background-color: var(--color-primary); /* Dark background from HTML */
}
.success-stories .section-title {
    color: var(--color-text-light); /* Override default for dark bg */
}
.success-stories .card {
    background-color: var(--color-primary-light); /* Slightly lighter card BG */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.success-stories .card-content h3 {
    color: var(--color-primary-lighter); /* Bright title */
}
.success-stories .card-content p {
    color: #e0e0e0; /* Light grey text */
    font-size: 0.95rem;
}
.success-stories .card-content p:last-of-type { /* Italicized text */
    color: #c0c0c0; 
    font-size: 0.9rem;
}


/* Events Section */
.events {
    background-color: var(--color-background-section-alt);
}
.event-item {
    display: flex;
    background-color: var(--color-background-card);
    border-radius: var(--border-radius-large);
    box-shadow: 0 5px 20px var(--color-shadow-medium);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--color-shadow-dark);
}
.event-date-box {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px; /* Ensure date box has some width */
}
.event-day {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}
.event-month {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.event-details {
    padding: 25px;
    flex-grow: 1;
}
.event-details h3 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 8px;
}
.event-meta {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    margin-bottom: 15px;
    display: block; /* Make meta info take full line */
}
.event-details p:not(.event-meta) { /* Regular paragraph description */
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.event-details .button {
    font-size: 0.9rem;
}


/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}
.partner-logo {
    text-align: center;
}
.partner-logo img {
    max-height: 75px; /* As per HTML, ensure consistency */
    width: auto; /* Maintain aspect ratio */
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}
.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


/* External Resources Section */
.external-resources {
    background-color: var(--color-primary-light); /* From HTML (was #088395) */
}
.external-resources .section-title {
    color: var(--color-text-light);
}
.resource-card { /* This is not standard .card, but custom divs in HTML */
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle card on dark BG */
    padding: 20px;
    border-radius: var(--border-radius-medium);
    margin-bottom: 20px; /* Space between cards */
    border: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s ease;
}
.resource-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.resource-card h3 {
    color: var(--color-text-light); /* From HTML */
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.resource-card p {
    color: #e0e0e0; /* From HTML */
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.resource-card .button {
    background-color: var(--color-accent);
    font-size: 0.85rem;
    padding: 8px 15px;
}
.resource-card .button:hover {
    background-color: var(--color-accent-dark);
}

/* Contact Banner Section (on ./) */
.contact-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0; /* More padding for impact */
    color: var(--color-text-light);
}
.contact-banner .section-title {
    color: var(--color-text-light); /* From HTML */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* From HTML */
}
.contact-banner p {
    font-size: 1.2rem; /* From HTML */
    margin-bottom: 30px; /* From HTML */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* From HTML */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.contact-banner .hero-button { /* Using hero-button class from HTML */
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Contact Form Page specific styling (contacts.html) */
.contact-section { /* Assuming a section on contacts.html */
    padding-top: calc(var(--header-height) + 40px); /* Space for fixed header */
}
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-background-card);
    padding: 30px 40px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px var(--color-shadow-medium);
}
.contact-form-container .section-title {
    margin-bottom: 30px;
}


/* -------------------------------------------------------------------------
   9. PAGE SPECIFIC STYLES
-------------------------------------------------------------------------- */

/* Privacy & Terms Pages */
.page-content-privacy,
.page-content-terms,
.page-content-about { /* Add for about.html too */
    padding-top: calc(var(--header-height) + 40px); /* Adjust based on fixed header height */
    padding-bottom: 60px;
    min-height: calc(100vh - var(--header-height)); /* Ensure content area can fill screen */
}
.page-content-privacy .container h1,
.page-content-terms .container h1,
.page-content-about .container h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}
.page-content-privacy .container h2,
.page-content-terms .container h2,
.page-content-about .container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--color-primary);
}
.page-content-privacy .container p,
.page-content-terms .container p,
.page-content-about .container p {
    margin-bottom: 15px;
    line-height: 1.7;
}
.page-content-privacy .container ul,
.page-content-terms .container ul,
.page-content-about .container ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

/* Success Page (success.html) */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
    padding: 20px;
    background-color: var(--color-background-body);
}
.success-page-container .success-icon { /* Assuming an icon will be added */
    font-size: 5rem; /* Example for icon */
    color: var(--color-success);
    margin-bottom: 20px;
}
.success-page-container h1 {
    color: var(--color-success);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}
.success-page-container p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    color: var(--color-text-dark);
    max-width: 600px;
}
.success-page-container .button {
    font-size: 1.1rem;
}

/* -------------------------------------------------------------------------
   10. ANIMATIONS (ScrollReveal handled by JS, but can add base for items)
-------------------------------------------------------------------------- */
.reveal-item {
    /*opacity: 0;*/
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-item.is-visible { /* Class added by ScrollReveal */
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------------------------------------------------------
   11. MEDIA QUERIES (Responsiveness)
-------------------------------------------------------------------------- */

/* Tablet and smaller */
@media (max-width: 992px) {
    .nav-menu li {
        margin-left: 15px;
    }
    .nav-logo {
        font-size: 1.0rem;
    }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
}


/* Mobile Nav Toggle */
@media (max-width: 768px) {
    html {
        font-size: 15px; /* Slightly smaller base for smaller screens */
    }

    .section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 2.2rem; /* Adjust section title size */
        margin-bottom: 30px;
    }

    .nav-toggle {
        display: block; /* Show burger icon */
    }
    .nav-menu {
        display: none; /* Hide menu by default */
        position: absolute;
        top: var(--header-height); /* Position below header */
        left: 0;
        width: 100%;
        background-color: rgba(10, 77, 104, 0.98); /* Slightly more opaque for mobile menu */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu.is-active { /* JS toggles this class */
        display: flex;
    }
    .nav-menu li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    .nav-menu li a {
        padding: 10px 0;
        display: block; /* Make links take full width */
        font-size: 1.1rem;
    }
    .nav-menu li a::after { /* Hide underline effect on mobile for simplicity or keep it */
        display: none; 
    }
    .nav-menu li a:hover, .nav-menu li a.active {
        background-color: rgba(var(--color-accent-rgb), 0.1); /* Use RGB if --color-accent is hex */
        color: var(--color-accent);
    }

    .columns {
        margin-left: 0;
        margin-right: 0;
    }
    .column {
        padding-left: 0;
        padding-right: 0;
        flex: 0 0 100%; /* Stack columns */
        max-width: 100%;
        margin-bottom: 20px; /* Add space between stacked columns */
    }
    .column:last-child {
        margin-bottom: 0;
    }
    .is-two-thirds, .is-half, .is-one-third, .is-one-quarter {
        margin-bottom: 20px;
    }

    .hero { min-height: 70vh; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }

    .event-item {
        flex-direction: column;
    }
    .event-date-box {
        min-width: 100%;
        padding: 15px;
    }
    .event-day { font-size: 2rem; }
    .event-month { font-size: 0.9rem; }
    .event-details { padding: 20px; }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        min-width: 100%;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer .social-links {
        justify-content: center;
    }

    .contact-form-container {
        padding: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .button { padding: 10px 20px; font-size: 0.9rem; }
    .hero-button { padding: 12px 25px; font-size: 1rem; }
    .card-content h3 { font-size: 1.2rem; }
    .card-content p { font-size: 0.9rem; }
    .card-content .button { font-size: 0.8rem; padding: 8px 15px; }
}