/* ═══════════════════════════════════════════════════════
   RBC Beaverton — Church Website Styles
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
    /* Colors */
    --navy: #1B2A4A;
    --navy-light: #2A3D66;
    --navy-dark: #111D33;
    --gold: #D4A843;
    --gold-light: #E4C06A;
    --gold-dark: #B8922E;
    --accent: #C45B3E;
    --accent-light: #D4714F;
    --cream: #F8F6F0;
    --cream-dark: #EDE9DF;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow: rgba(27, 42, 74, 0.08);
    --shadow-lg: rgba(27, 42, 74, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 19.2px;
    /* 20% bigger than default 16px */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--navy);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

/* ── Section Common ── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}

/* ── Scroll Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27, 42, 74, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(27, 42, 74, 0.98);
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    display: none;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Romanian flag letter colors — disabled */
.ro-blue,
.ro-yellow,
.ro-red {
    color: inherit;
}

.nav-logo-text span:last-child {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: block;
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ── Dropdown ── */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Schedule callout annotation — positioned by JS */
.schedule-callout {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.callout-text {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold-light);
    max-width: 160px;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.3px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    padding: 12px 8px 8px;
    border: 1px solid var(--border);
}

/* Invisible bridge to prevent hover gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
    display: none;
}

.dropdown:hover::after {
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
}

.dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--navy);
}

.dropdown-menu li a .dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--cream);
    flex-shrink: 0;
}

.dropdown-menu li a:hover .dropdown-icon {
    background: var(--gold);
    color: var(--white);
}

/* ── Give Button ── */
.btn-give {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    letter-spacing: 0.3px;
}

.btn-give:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

/* ── Lang Toggle ── */
.lang-toggle {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.lang-toggle .lang-en,
.lang-toggle .lang-ro {
    transition: opacity 0.3s ease, color 0.3s ease;
}

.lang-toggle.active-ro .lang-en {
    opacity: 0.5;
}

.lang-toggle.active-ro .lang-ro {
    opacity: 1;
    color: var(--gold);
}

.lang-toggle:not(.active-ro) .lang-ro {
    opacity: 0.5;
}

.lang-toggle:not(.active-ro) .lang-en {
    opacity: 1;
    color: var(--gold);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1E3A5F 100%);
    overflow: hidden;
    padding-top: 75px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 91, 62, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 24px;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(212, 168, 67, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(8px);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
    font-size: 2em;
    line-height: 1;
}

/* ── Hero Rotating Text Animation ── */
.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    flex-wrap: wrap;
}

.hero-rotating-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.25em;
    vertical-align: bottom;
}

.hero-rotating {
    display: block;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.68, -0.15, 0.27, 1.15);
}

.hero-rotating-item {
    display: block;
    height: 1.25em;
    line-height: 1.25;
    color: var(--white);
    white-space: nowrap;
}

.hero-rotating-item.active {
    color: var(--white);
}

.hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-teal {
    background: var(--accent);
    color: var(--white);
}

.btn-teal:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 91, 62, 0.35);
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ═══════════════════════════════════════════════════════
   DONATION SECTION
   ═══════════════════════════════════════════════════════ */
.donation-section {
    padding: 80px 0;
    background: var(--white);
}

.donation-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
}

.donation-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.donation-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.donation-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 500px;
    margin-bottom: 30px;
}

.donation-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.donation-actions .btn-primary {
    font-size: 1.05rem;
    padding: 16px 40px;
}

.donation-actions .secure-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════════
   LIVE SERVICE SECTION
   ═══════════════════════════════════════════════════════ */
.live-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.live-visual {
    position: relative;
}

.live-player-mock {
    background: var(--navy);
    border-radius: 20px;
    aspect-ratio: 16/9;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.25);
}

.live-player-mock::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.2) 0%, rgba(27, 42, 74, 0.8) 100%);
}

/* YouTube iframe embed */
.live-player-mock.playing {
    background: #000;
}

.live-player-mock.playing::before {
    display: none;
}

.live-player-mock iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    z-index: 3;
}

.play-button {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.5);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent var(--navy);
    margin-left: 5px;
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: #E53E3E;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.live-info h2 {
    margin-bottom: 16px;
}

.live-info p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.service-time-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px var(--shadow);
}

.service-time-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-time-details h4 {
    color: var(--navy);
    margin-bottom: 4px;
}

.service-time-details p {
    font-size: 0.9rem;
    margin: 0;
}

.live-info .btn {
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════
   CORE VALUES
   ═══════════════════════════════════════════════════════ */
.values-section {
    padding: var(--section-padding);
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--gold);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.value-card:nth-child(1) .value-card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.value-card:nth-child(2) .value-card-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--navy);
}

.value-card p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.value-card .highlight {
    color: var(--navy);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   WEEKLY SCHEDULE
   ═══════════════════════════════════════════════════════ */
.schedule-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.schedule-section .section-header h2 {
    color: var(--white);
}

.schedule-section .section-header h2::after {
    background: var(--gold);
}

.schedule-section .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.schedule-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.schedule-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
}

/* Larger service time card for single-item emphasis */
.service-time-card-lg {
    padding: 32px;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--white), var(--cream));
}

.service-time-card-lg .service-time-icon {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
}

.service-time-card-lg .service-time-details h4 {
    font-size: 1.15rem;
}

.service-time-card-lg .service-time-details p {
    font-size: 1rem;
}

.schedule-card-day {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
}

.schedule-item+.schedule-item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    min-width: 75px;
    padding-top: 2px;
}

/* === Highlighted Sunday Card === */
.schedule-card-highlight {
    border: 2px solid var(--gold);
    background: rgba(212, 168, 67, 0.08);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
}

.schedule-card-highlight:hover {
    background: rgba(212, 168, 67, 0.14);
    border-color: var(--gold-light);
}

/* Day icon in schedule cards */
.schedule-day-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    font-size: 1.1rem;
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle;
}

.schedule-event {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.contact-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info>p {
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 12px var(--shadow);
}

.contact-detail h4 {
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.contact-detail p {
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 30px var(--shadow);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-message.error {
    display: block;
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   SCHEDULE PAGES
   ═══════════════════════════════════════════════════════ */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}

.page-content {
    padding: 80px 0;
}

.schedule-table-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.schedule-table-wrapper h3 {
    margin-bottom: 8px;
}

.schedule-table-wrapper>p {
    margin-bottom: 30px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table thead th {
    text-align: left;
    padding: 14px 20px;
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border);
}

.schedule-table thead th:first-child {
    border-radius: 10px 0 0 0;
}

.schedule-table thead th:last-child {
    border-radius: 0 10px 0 0;
}

.schedule-table tbody td {
    padding: 16px 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.schedule-table tbody tr:hover {
    background: var(--cream);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-note {
    margin-top: 30px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.schedule-note p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 30px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: var(--transition-slow);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links>li>a {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 8px;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8);
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
    }

    .dropdown-menu li a .dropdown-icon {
        background: rgba(255, 255, 255, 0.1);
    }

    .live-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .donation-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .donation-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .schedule-table-wrapper {
        padding: 30px 20px;
    }

    .donation-card {
        padding: 30px 20px;
    }
}