/* ==========================================================================
   CSS Variables & Tokens (White and Gold Theme)
   ========================================================================== */
:root {
    /* Color Palette - Modern White and Gold */
    --primary-color: #0f2b48;
    /* Marian Navy */
    --primary-hover: #17385c;
    /* Darker Gold */
    --secondary-color: #fcf9f2;
    /* Very Light Gold/Cream */
    --text-main: #2d2d2d;
    /* Soft Black for readable text */
    --text-muted: #666666;
    /* Gray for secondary text */
    --text-light: #ffffff;
    /* White text */
    --bg-main: #ffffff;
    /* Pure White */
    --bg-light: #fafafa;
    /* Off White */
    --bg-dark: #f0ebd8;
    /* Muted Gold/Beige for contrast areas */

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', 'Cinzel', serif;

    /* Spacing & Layout */
    --nav-height: 90px;
    --section-padding: 6rem 0;
    --container-width: 1200px;

    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 15px rgba(72, 154, 210, 0.08);
    --shadow-md: 0 10px 30px rgba(72, 154, 210, 0.12);
    --shadow-lg: 0 20px 40px rgba(72, 154, 210, 0.15);
}

/* ==========================================================================
   Global Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    background-color: #f7f5ee;
    /* Soft cream beige background */
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-box {
    background: #ffffff;
    border: 1px solid rgba(15, 43, 72, 0.15);
    border-radius: 24px;
    padding: 4.5rem 3.5rem;
    box-shadow: 0 12px 40px rgba(15, 43, 72, 0.04);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Playfair Display looks great at lighter weights */
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 {
    font-size: 5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

h2,
.section-header h2,
#mass-timing h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f2b48;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0f2b48;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: transparent;
}

.mt-2 {
    margin-top: 2rem;
}

.heading-line {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.heading-line.center {
    margin: 0 auto 2.5rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    /* Sharper corners for modern look */
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.875rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.link-arrow:hover {
    border-bottom: 1px solid var(--primary-color);
    transform: translateX(5px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: #0f2b48 !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    height: 80px;
}

.navbar .logo {
    color: var(--text-light);
    white-space: nowrap;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links .btn-primary,
.navbar .btn-primary,
.navbar.scrolled .nav-links .btn-primary {
    background-color: #ffffff !important;
    color: #0f2b48 !important;
    border: 1px solid #ffffff !important;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-links .btn-primary:hover,
.navbar .btn-primary:hover,
.navbar.scrolled .nav-links .btn-primary:hover {
    background-color: #489ad2 !important;
    color: #ffffff !important;
    border-color: #489ad2 !important;
    box-shadow: 0 6px 20px rgba(72, 154, 210, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading) !important;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
    margin-right: 1.5rem;
    color: #0f2b48 !important;
    text-shadow: none;
}

.logo span {
    color: #0f2b48 !important;
    font-weight: 800;
    text-shadow: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.65rem;
}

.nav-links a:not(.btn) {
    color: #0f2b48 !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: none;
}

.nav-links a:not(.btn):hover {
    color: #489ad2 !important;
}

.navbar.scrolled .logo,
.navbar.scrolled .logo span,
.navbar.scrolled .nav-links a:not(.btn) {
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .nav-links a:not(.btn):hover {
    color: #489ad2 !important;
    text-shadow: 0 0 10px rgba(72, 154, 210, 0.5);
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0f2b48 !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 240px;
    box-shadow: 0 12px 35px rgba(15, 43, 72, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0;
    z-index: 1001;
    margin-top: 5px;
}

.nav-links .dropdown-content a,
.nav-links .dropdown-content a:visited,
.navbar .nav-links .dropdown-content a,
body:not(.subpage) .navbar:not(.scrolled) .nav-links .dropdown-content a {
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-align: left;
    white-space: nowrap;
}

.nav-links .dropdown-content a:hover,
.navbar .nav-links .dropdown-content a:hover,
body:not(.subpage) .navbar:not(.scrolled) .nav-links .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #489ad2 !important;
    padding-left: 1.8rem;
}

.nav-links .dropdown:hover .dropdown-content {
    display: block;
}

.nav-links a:not(.btn):hover {
    color: #489ad2 !important;
    text-shadow: 0 0 10px rgba(72, 154, 210, 0.4);
}

.navbar .btn-outline {
    color: var(--text-light);
    border-color: var(--primary-color);
}

.navbar .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: 
        radial-gradient(circle at 12% 35%, rgba(218, 165, 32, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 25% 65%, rgba(72, 154, 210, 0.08) 0%, transparent 45%),
        linear-gradient(135deg, #fdfbf7 0%, #f5f1e6 100%) !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1.5%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 1%;
    width: 50%;
    height: calc(100% - 40px);
    background-image: url('../images/blessed_mother_mary_hero.png?v=1');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

/* Bright overlay instead of dark */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.5) 30%, rgba(255, 255, 255, 0) 55%) !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.hero-title-white {
    font-family: 'Cinzel', serif !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    letter-spacing: 6px !important;
    color: #0f2b48 !important;
    display: block;
    text-align: left;
    text-shadow: none !important;
    margin-bottom: 0.75rem !important;
}

.hero-title-yellow {
    font-family: 'Cinzel', serif !important;
    font-size: 3.0rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    color: #0f2b48 !important;
    -webkit-text-fill-color: #0f2b48 !important;
    background: none !important;
    display: block;
    text-align: left;
    text-shadow: none !important;
    margin-left: 0;
    margin-top: 0;
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #489ad2;
    margin-bottom: 3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero-buttons .btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--text-light);
    color: #000;
    border-color: var(--text-light);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section {
    padding: 3rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--primary-color);
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   Ministries Section
   ========================================================================== */
.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.ministry-card {
    background: var(--bg-main);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 43, 72, 0.12);
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(20%);
}

.ministry-card:hover .card-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.ministry-card:hover .card-overlay {
    opacity: 1;
}

.icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.card-content {
    padding: 2.5rem;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* ==========================================================================
   Service Times Section
   ========================================================================== */
.service-section {
    background-color: transparent;
    color: var(--text-main);
}

.service-section h2 {
    color: #0f2b48;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0f2b48;
    display: inline-block;
}

.service-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-top: none;
}

.service-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.time-slot {
    border-left: 2px solid var(--primary-color);
    padding-left: 1.5rem;
}

.time-slot h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.time-slot p {
    color: var(--text-muted);
    margin: 0;
}

.service-location h3 {
    margin-bottom: 1.5rem;
}

.service-location p {
    color: var(--text-muted);
}

/* ==========================================================================
   News & Events Section (Layered Layout)
   ========================================================================== */
.news-layered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
    /* space for overlapping boxes */
}

.news-layered-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-image-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.news-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.badge-yellow {
    background-color: #0f2b48;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 43, 72, 0.25);
}

.news-content-box {
    position: relative;
    width: 90%;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    margin-top: -60px;
    /* Pull it up over the image */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 3;
}

/* Accent Borders */
.border-yellow {
    border-top: 5px solid #0f2b48;
}

.border-gold {
    border-top: 5px solid #0f2b48;
}

.news-date {
    display: block;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-content-box h3 {
    color: #000;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.news-content-box p {
    color: #000;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

.read-more:hover {
    transform: translateX(5px);
}

/* ==========================================================================
   Gallery Section (Bento Grid)
   ========================================================================== */
.gallery-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 43, 72, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-bento-item:hover img {
    transform: scale(1.05);
}

/* Bento Grid Spans */
.gallery-bento-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-bento-item.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-bento-item.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-bento-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .gallery-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-bento-item.item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-bento-item.item-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
    .gallery-bento-item.item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .gallery-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 1rem;
    }
    .gallery-bento-item.item-large,
    .gallery-bento-item.item-tall,
    .gallery-bento-item.item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================================================
   Leadership Section
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    text-align: center;
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.team-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.team-card .role {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-main);
    color: var(--text-main);
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(15, 43, 72, 0.15);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.footer-section h3 {
    margin-bottom: 2rem;
    color: var(--text-main);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: var(--bg-light);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(15, 43, 72, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Animations
   ========================================================================== */
/* Keyframes for Hero (Initial Load) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
    opacity: 0;
    will-change: transform, opacity, filter;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

/* specific directions */
.reveal-up {
    transform: translateY(80px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-blur {
    filter: blur(15px);
    transform: translateY(40px);
}

/* Delay modifiers for stagger */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Responsive */
@media (max-width: 768px) {

    .about-grid,
    .service-box {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: unset;
    }

    .hero-title-gradient {
        font-size: 3.5rem;
    }

    .service-box {
        padding: 3rem 2rem;
    }

    .service-times {
        grid-template-columns: 1fr;
    }

    /* Hero mobile responsive styling */
    .hero {
        background: 
            radial-gradient(circle at 50% 25%, rgba(218, 165, 32, 0.08) 0%, transparent 45%),
            radial-gradient(circle at 50% 45%, rgba(72, 154, 210, 0.08) 0%, transparent 45%),
            linear-gradient(to bottom, #fdfbf7 0%, #f5f1e6 100%) !important;
        justify-content: center;
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}