/* ════════════════════════════════════════════════════════════
   BAISAKHI OPEN WORLD CUP GOLF – Premium Design System
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Core palette */
    --c-forest: #1a3c28;
    --c-forest-deep: #0e2619;
    --c-sage: #3d6b4f;
    --c-gold: #c9a84c;
    --c-gold-light: #e4ce82;
    --c-gold-dark: #9e7e2e;
    --c-cream: #faf8f3;
    --c-ivory: #f0ece3;
    --c-sand: #e5ddd0;
    --c-charcoal: #2c2c2c;
    --c-slate: #5a5a5a;
    --c-white: #ffffff;
    --c-red-accent: #b44a3f;

    /* Typography */
    --f-display: 'Playfair Display', Georgia, serif;
    --f-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2.5rem;
    --sp-xl: 4rem;
    --sp-2xl: 6rem;

    /* Sizes */
    --max-w: 1200px;
    --radius: 6px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-charcoal);
    background: var(--c-cream);
    overflow-x: hidden;
}

a { color: var(--c-sage); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--c-gold-dark); }

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-md); }

/* ─── Topbar ─────────────────────────────────────────────── */
.topbar {
    background: var(--c-forest-deep);
    color: var(--c-gold-light);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 500;
}

/* ─── Header / Navbar ────────────────────────────────────── */
.site-header {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-sand);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo img {
    height: 55px;
    width: auto;
}

.site-logo .logo-placeholder {
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-forest);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo .logo-placeholder .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--c-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 1rem;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav a {
    color: var(--c-charcoal);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s var(--ease);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--c-gold);
    transition: width 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--c-forest);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--c-white);
    border: 1px solid var(--c-sand);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeDown 0.2s var(--ease);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--c-slate);
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--c-ivory);
    color: var(--c-forest);
}

.dropdown-menu a::after { display: none; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-charcoal);
    margin: 5px 0;
    transition: all 0.3s var(--ease);
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--c-forest-deep) 0%, var(--c-forest) 40%, var(--c-sage) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,168,76,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--sp-xl) var(--sp-md);
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--c-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    margin-bottom: var(--sp-md);
}

.hero h1 {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.1;
    margin-bottom: var(--sp-md);
}

.hero h1 em {
    color: var(--c-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto var(--sp-lg);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--f-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--c-gold);
    color: var(--c-forest-deep);
    border-color: var(--c-gold);
}

.btn-primary:hover {
    background: var(--c-gold-dark);
    border-color: var(--c-gold-dark);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--c-white);
    color: var(--c-forest);
    border-color: var(--c-white);
}

.btn-forest {
    background: var(--c-forest);
    color: var(--c-white);
    border-color: var(--c-forest);
}

.btn-forest:hover {
    background: var(--c-forest-deep);
    border-color: var(--c-forest-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 0.55rem 1.4rem;
    font-size: 0.78rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}

/* ─── Section Styling ────────────────────────────────────── */
.section {
    padding: var(--sp-2xl) 0;
}

.section-alt {
    background: var(--c-white);
}

.section-dark {
    background: var(--c-forest-deep);
    color: var(--c-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-xl);
}

.section-header .overline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: var(--sp-xs);
    display: block;
}

.section-header h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--c-forest-deep);
    margin-bottom: var(--sp-sm);
    line-height: 1.2;
}

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

.section-header p {
    font-size: 1.05rem;
    color: var(--c-slate);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

.divider-line {
    width: 60px;
    height: 3px;
    background: var(--c-gold);
    margin: var(--sp-sm) auto 0;
    border-radius: 2px;
}

/* ─── Tournament Gallery Grid ────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sp-md);
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,38,25,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--sp-md);
    transition: background 0.3s var(--ease);
}

.gallery-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(14,38,25,0.95) 0%, rgba(14,38,25,0.2) 60%);
}

.gallery-card .card-year {
    font-family: var(--f-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-gold);
}

.gallery-card .card-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Featured tournament (2025) */
.gallery-featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-featured .card-year {
    font-size: 3rem;
}

/* ─── About / CTA Banner ────────────────────────────────── */
.cta-banner {
    background: var(--c-forest);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: center;
}

.cta-text {
    padding: var(--sp-xl) 0;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--c-white);
    line-height: 1.2;
    margin-bottom: var(--sp-md);
}

.cta-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--sp-lg);
}

.cta-image {
    height: 100%;
    min-height: 400px;
}

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

/* ─── Community Section ──────────────────────────────────── */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
}

.community-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease);
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-card .comm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--sp-md);
}

.community-card .comm-overlay span {
    color: var(--c-white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ─── Page Content (dynamic pages) ───────────────────────── */
.page-hero {
    background: linear-gradient(160deg, var(--c-forest-deep) 0%, var(--c-forest) 100%);
    padding: var(--sp-xl) 0 var(--sp-lg);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--c-white);
    font-weight: 700;
}

.page-hero .breadcrumb {
    margin-top: var(--sp-sm);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.page-hero .breadcrumb a {
    color: var(--c-gold-light);
}

.page-content {
    padding: var(--sp-xl) 0;
}

.page-content .content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
}

.page-content .content-body h2,
.page-content .content-body h3 {
    font-family: var(--f-display);
    color: var(--c-forest-deep);
    margin: var(--sp-lg) 0 var(--sp-sm);
}

.page-content .content-body h2 { font-size: 1.8rem; }
.page-content .content-body h3 { font-size: 1.4rem; }

.page-content .content-body p {
    margin-bottom: var(--sp-md);
    color: var(--c-slate);
}

.page-content .content-body img {
    border-radius: var(--radius-lg);
    margin: var(--sp-lg) 0;
    box-shadow: var(--shadow-md);
}

.page-content .content-body strong {
    color: var(--c-charcoal);
}

/* ─── Contact Page ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    padding: var(--sp-lg);
}

.contact-info-card h3 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--c-forest-deep);
    margin-bottom: var(--sp-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
    font-size: 0.95rem;
    color: var(--c-slate);
}

.contact-info-item .info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--c-ivory);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-forest);
    font-weight: 700;
}

/* ─── Sponsors Page ──────────────────────────────────────── */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--sp-md);
}

.sponsor-card {
    background: var(--c-white);
    border: 1px solid var(--c-sand);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.sponsor-card:hover {
    border-color: var(--c-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.sponsor-card img {
    max-height: 80px;
    margin: 0 auto var(--sp-sm);
}

.sponsor-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-charcoal);
}

.sponsor-tier {
    margin-bottom: var(--sp-xl);
}

.sponsor-tier-label {
    text-align: center;
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--c-forest-deep);
    margin-bottom: var(--sp-md);
    font-weight: 600;
}

/* ─── Form Styling ───────────────────────────────────────── */
.form-group {
    margin-bottom: var(--sp-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-charcoal);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--f-body);
    font-size: 0.95rem;
    border: 1.5px solid var(--c-sand);
    border-radius: var(--radius);
    background: var(--c-cream);
    color: var(--c-charcoal);
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-control:focus {
    border-color: var(--c-sage);
    background: var(--c-white);
    box-shadow: 0 0 0 3px rgba(61,107,79,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-control.is-invalid {
    border-color: var(--c-red-accent);
}

.invalid-feedback {
    font-size: 0.8rem;
    color: var(--c-red-accent);
    margin-top: 0.25rem;
}

/* ─── Alerts ─────────────────────────────────────────────── */
.alert {
    padding: var(--sp-sm) var(--sp-md);
    border-radius: var(--radius);
    margin-bottom: var(--sp-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-danger {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--c-forest-deep);
    color: rgba(255,255,255,0.7);
    padding: var(--sp-xl) 0 var(--sp-md);
}

.footer-grid {
    display: grid;
    /* grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--sp-xl); */
    margin-bottom: var(--sp-xl);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: var(--sp-sm);
    color: rgba(255,255,255,0.5);
}

.footer-col h4 {
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-gold-light);
    margin-bottom: var(--sp-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    padding: 0.3rem 0;
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.footer-col a:hover {
    color: var(--c-gold);
    padding-left: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--sp-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-social {
    display: flex;
    gap: var(--sp-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--c-gold);
    color: var(--c-forest-deep);
}

/* ─── Login Page ─────────────────────────────────────────── */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--c-forest-deep) 0%, var(--c-forest) 100%);
    padding: var(--sp-md);
}

.auth-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: var(--sp-xl);
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.auth-card h2 {
    font-family: var(--f-display);
    font-size: 1.8rem;
    color: var(--c-forest-deep);
    margin-bottom: 0.5rem;
}

.auth-card .auth-subtitle {
    color: var(--c-slate);
    font-size: 0.9rem;
    margin-bottom: var(--sp-lg);
}

.auth-card .form-group {
    text-align: left;
}

.remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-md);
    font-size: 0.85rem;
}

.remember-row label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--c-slate);
    cursor: pointer;
}

/* ─── Admin Panel ────────────────────────────────────────── */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--c-forest-deep);
    padding: var(--sp-md);
    color: var(--c-white);
}

.admin-sidebar .sidebar-logo {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--c-gold);
    padding: var(--sp-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--sp-md);
    font-weight: 700;
}

.admin-sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem var(--sp-sm);
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius);
    margin-bottom: 2px;
    transition: all 0.2s var(--ease);
}

.admin-sidebar .nav-item:hover,
.admin-sidebar .nav-item.active {
    background: rgba(255,255,255,0.08);
    color: var(--c-gold-light);
}

.admin-sidebar .nav-item .nav-icon {
    width: 20px;
    text-align: center;
    font-weight: 700;
}

.admin-main {
    background: var(--c-ivory);
    overflow-y: auto;
}

.admin-topbar {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-sand);
    padding: var(--sp-sm) var(--sp-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-topbar h1 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--c-forest-deep);
    font-weight: 600;
}

.admin-content {
    padding: var(--sp-lg);
}

/* Admin cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-md);
    margin-bottom: var(--sp-lg);
}

.stat-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: var(--sp-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--c-gold);
}

.stat-card .stat-value {
    font-family: var(--f-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-forest-deep);
}

.stat-card .stat-label {
    font-size: 0.82rem;
    color: var(--c-slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Admin tables */
.admin-table-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-md);
    border-bottom: 1px solid var(--c-sand);
}

.admin-table-header h3 {
    font-family: var(--f-display);
    font-size: 1.1rem;
    color: var(--c-forest-deep);
}

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

.admin-table th {
    background: var(--c-ivory);
    padding: 0.75rem var(--sp-md);
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-slate);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--c-sand);
}

.admin-table td {
    padding: 0.75rem var(--sp-md);
    border-bottom: 1px solid var(--c-ivory);
    font-size: 0.9rem;
    color: var(--c-charcoal);
}

.admin-table tr:hover td {
    background: var(--c-cream);
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-success { background: #e8f5e9; color: #2e7d32; }
.badge-danger { background: #fce4ec; color: #c62828; }
.badge-warning { background: #fff3e0; color: #e65100; }
.badge-info { background: #e3f2fd; color: #1565c0; }

.action-btns {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    border-radius: var(--radius);
    border: 1px solid var(--c-sand);
    background: var(--c-white);
    color: var(--c-slate);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--f-body);
}

.action-btn:hover {
    background: var(--c-ivory);
    color: var(--c-charcoal);
}

.action-btn.danger {
    color: var(--c-red-accent);
    border-color: rgba(180,74,63,0.2);
}

.action-btn.danger:hover {
    background: #fce4ec;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-image { min-height: 300px; }
    .gallery-featured { grid-column: span 1; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--c-white);
        flex-direction: column;
        padding: var(--sp-sm) 0;
        border-top: 1px solid var(--c-sand);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.open { display: flex; }

    .main-nav a {
        padding: 0.75rem var(--sp-md);
        width: 100%;
    }

    .main-nav a::after { display: none; }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: var(--sp-md);
    }

    .hero { min-height: 70vh; }

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

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

    .footer-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
    .footer-bottom { flex-direction: column; gap: var(--sp-sm); text-align: center; }

    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        bottom: 0;
        width: 250px;
        z-index: 2000;
        transition: left 0.3s var(--ease);
    }
    .admin-sidebar.open { left: 0; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.6s var(--ease) both;
}

.fade-in {
    animation: fadeIn 0.5s var(--ease) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── Event Info Specific ────────────────────────────────── */
.event-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--sp-lg);
    border-left: 2px solid var(--c-sand);
    padding-bottom: var(--sp-sm);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0.25rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-gold);
    border: 2px solid var(--c-white);
}

.timeline-item h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--c-forest-deep);
    margin-bottom: 0.25rem;
}

.timeline-item .timeline-date {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ─── Pagination ─────────────────────────────────────────── */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--sp-lg);
    gap: 0.25rem;
}

.pagination-wrapper .page-link {
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--c-sand);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--c-slate);
    background: var(--c-white);
    transition: all 0.2s var(--ease);
}

.pagination-wrapper .page-link:hover,
.pagination-wrapper .page-link.active {
    background: var(--c-forest);
    color: var(--c-white);
    border-color: var(--c-forest);
}

/* ─── Utility ────────────────────────────────────────────── */
.text-gold { color: var(--c-gold); }
.text-center { text-align: center; }
.mt-lg { margin-top: var(--sp-lg); }
.mb-lg { margin-bottom: var(--sp-lg); }
.pt-0 { padding-top: 0; }


/* ════════════════════════════════════════════════════════════
   ADDITIONS – paste at the BOTTOM of public/css/app.css
   ════════════════════════════════════════════════════════════ */

/* ── Base resets ─────────────────────────────────────────── */
html, body { width:100%; max-width:100%; overflow-x:hidden; margin:0; padding:0; }
main { padding:0; margin:0; }

/* ── Header – black, NOT sticky ─────────────────────────── */
.site-header {
    position: relative !important;
    top: unset !important;
    width: 100%;
    background: #000;
    border-bottom: none;
    box-shadow: none;
    z-index: 100;
}
.header-inner {
    width:100%; max-width:100%;
    margin:0; padding:0 1.5rem;
    height:90px; display:flex; align-items:center; background:#000; gap:0;
}
.site-logo--left, .site-logo--right { flex-shrink:0; line-height:0; }
.site-logo--left img, .site-logo--right img { height:68px; width:auto; display:block; }
.site-logo--right { margin-left:1rem; }

.main-nav { flex:1; display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:nowrap; }
.main-nav > a,
.main-nav > .nav-dropdown > a { color:#fff; font-size:0.78rem; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; padding:0.5rem 0.8rem; white-space:nowrap; }
.main-nav > a:hover, .main-nav > a.active { color:#c9a84c; }
.main-nav > a::after,
.main-nav > .nav-dropdown > a::after { background:#c9a84c; }
.nav-dropdown .dropdown-menu { background:#111; border:1px solid #333; }
.nav-dropdown .dropdown-menu a { color:#ccc; }
.nav-dropdown .dropdown-menu a:hover { background:#222; color:#c9a84c; }
.mobile-toggle span { background:#fff; }

/* ── Action Bar (Registration Closed / Book Hotel / Guest) ── */
.action-bar { display:grid; grid-template-columns:1fr 1fr 1fr; width:100%; }
.action-bar__btn {
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:0.8rem 1rem; font-size:0.88rem; font-weight:700;
    letter-spacing:0.06em; text-transform:uppercase; color:#fff; line-height:1.3;
    min-height:54px; text-decoration:none; transition:filter .2s ease; border:none; outline:none;
}
.action-bar__btn span { font-size:0.73rem; font-weight:400; text-transform:none; letter-spacing:0; opacity:.92; display:block; margin-top:2px; }
.action-bar__btn:hover        { filter:brightness(1.12); color:#fff; }
.action-bar__btn--gold        { background:#c9a84c; color:#111; }
.action-bar__btn--gold:hover  { color:#111; }
.action-bar__btn--blue        { background:#1565c0; }
.action-bar__btn--green       { background:#2e7d32; }

/* ── Video Hero – NO cropping ────────────────────────────── */
.video-hero { display:block; width:100%; line-height:0; font-size:0; background:#000; overflow:hidden; }
.video-hero video { display:block; width:100%; height:auto; object-fit:unset; max-height:none; }

/* ── Tournament bar (Registered / Grouping / Leaderboard) ── */
.tournament-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    background: #111;
    position: relative;
    z-index: 50;
}
@media (max-width: 650px) {
    .tournament-bar {
        display: block;
    }
}
.tbar__btn {
    display:flex; align-items:center; justify-content:center; gap:0.4rem;
    width:100%; padding:1rem 1.5rem; font-family:inherit; font-size:0.92rem;
    font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
    color:#fff; background:transparent; border:none;
    border-right:1px solid rgba(255,255,255,0.08);
    cursor:pointer; text-decoration:none;
    transition:background .2s ease, color .2s ease; white-space:nowrap;
}
.tbar__btn:hover        { background:rgba(255,255,255,0.07); color:#fff; }
a.tbar__btn             { display:flex; }
.tbar__btn--red         { background:#b71c1c; }
.tbar__btn--red:hover   { background:#c62828; }
.tbar__btn--dark        { background:#1a1a1a; border-right:1px solid #333; }
.tbar__btn--dark:hover  { background:#2a2a2a; }
.tbar__arrow            { font-size:0.7rem; opacity:.7; transition:transform .2s ease; display:inline-block; }
.tbar__dropdown         { position:relative; }
.tbar__dropdown .tbar__btn { width:100%; }
.tbar__menu {
    display:none; position:absolute; top:100%; left:0;
    min-width:100%; background:#1e1e1e;
    border:1px solid #333; border-top:3px solid #c9a84c;
    box-shadow:0 8px 24px rgba(0,0,0,.4); z-index:200; white-space:nowrap;
}
.tbar__menu--right { left:auto; right:0; }
.tbar__dropdown.open .tbar__menu { display:block; }
.tbar__dropdown.open .tbar__arrow { transform:rotate(180deg); }
.tbar__menu a {
    display:block; padding:0.75rem 1.25rem; font-size:0.88rem;
    font-weight:500; color:#ddd; text-decoration:none;
    border-bottom:1px solid #2a2a2a;
    transition:background .15s ease, color .15s ease, padding-left .15s ease;
}
.tbar__menu a:last-child  { border-bottom:none; }
.tbar__menu a:hover       { background:#2a2a2a; color:#c9a84c; padding-left:1.5rem; }
.tbar__divider            { height:1px; background:#c9a84c; opacity:.3; margin:.25rem 0; }

/* ════════════════════════════════════════════════════════════
   PREVIOUS TOURNAMENTS GALLERY GRID
   ════════════════════════════════════════════════════════════ */
.pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

/* 2025 spans full width on first row */
.pg-card--featured {
    grid-column: 1 / -1;   /* full width */
}

/* Each card */
.pg-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #111;
    text-decoration: none;
}

/* Fixed aspect ratio for consistent grid */
.pg-card::before {
    content: '';
    display: block;
    padding-top: 62%;   /* ~16:10 ratio */
}

.pg-card--featured::before {
    padding-top: 42%;   /* wider featured card is shorter */
}

.pg-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;  /* show top of image (faces) */
    transition: transform 0.5s ease;
    display: block;
}

.pg-card:hover img { transform: scale(1.04); }

/* Dark gradient overlay */
.pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.2) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem 1.5rem;
    transition: background 0.3s ease;
}

.pg-card:hover .pg-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.35) 60%,
        transparent 100%
    );
}

/* Simple overlay (non-featured cards) – year only */
.pg-overlay--simple {
    align-items: flex-start;
}

/* Year badge */
.pg-year {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #c9a84c;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.pg-card--featured .pg-year {
    font-size: 2.8rem;
    align-self: flex-end;
}

/* Sub-album buttons on 2025 featured card */
.pg-sub-albums {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.75rem;
    flex: 1;
    align-items: flex-end;
}

.pg-sub-btn {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.pg-sub-btn:hover {
    background: rgba(201,168,76,0.35);
    border-color: #c9a84c;
    color: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .site-logo--right { display:none; }
    .main-nav > a,
    .main-nav > .nav-dropdown > a { padding:0.5rem 0.55rem; font-size:0.72rem; }

    .pg-grid { grid-template-columns: repeat(2, 1fr); }
    .pg-card--featured { grid-column: 1 / -1; }
    .pg-card--featured::before { padding-top: 50%; }
}

@media (max-width: 768px) {
    /* Header */
    .header-inner { height:64px; padding:0 1rem; }
    .site-logo--left img { height:48px; }
    .mobile-toggle { display:flex; flex-direction:column; gap:5px; padding:0.5rem; }
    .main-nav {
        display:none; position:absolute; top:64px; left:0; right:0;
        flex-direction:column; align-items:stretch; background:#111;
        padding:0.5rem 0; border-top:1px solid #333; z-index:999;
    }
    .main-nav.open { display:flex; }
    .main-nav > a,
    .main-nav > .nav-dropdown > a { padding:0.85rem 1.25rem; font-size:0.85rem; width:100%; text-align:left; border-bottom:1px solid #222; }
    .main-nav > a::after { display:none; }
    .nav-dropdown .dropdown-menu { position:static; box-shadow:none; border:none; padding-left:1.5rem; background:#0a0a0a; }

    /* Bars */
    .action-bar    { grid-template-columns:1fr; }
    .action-bar__btn { min-height:46px; font-size:0.82rem; }
    .tournament-bar { grid-template-columns:1fr; }
    .tbar__btn { border-right:none; border-bottom:1px solid #333; font-size:0.82rem; }
    .tbar__menu { position:static; border:none; border-top:2px solid #c9a84c; box-shadow:none; }
    .tbar__dropdown.open .tbar__menu { display:block; }

    /* Gallery */
    .pg-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .pg-card--featured { grid-column: 1 / -1; }
    .pg-card--featured::before { padding-top: 56%; }
    .pg-year { font-size:1.6rem; }
    .pg-card--featured .pg-year { font-size:2rem; }
    .pg-sub-btn { font-size:0.72rem; padding:0.35rem 0.7rem; }
    .pg-sub-albums { gap:6px; }
}

@media (max-width: 480px) {
    .pg-grid { grid-template-columns: 1fr; }
    .pg-card--featured { grid-column: 1; }
    .pg-card::before { padding-top: 65%; }
    .pg-card--featured::before { padding-top: 65%; }
    .pg-year { font-size:1.8rem; }
    .pg-sub-btn { font-size:0.7rem; }
}

/* ════════════════════════════════════════════════════════════
   COMMUNITY SECTION – Facebook + YouTube embeds
   ════════════════════════════════════════════════════════════ */

.community-section {
    background: #f7f7f7;
}

.community-embeds {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: start;
    justify-items: center;
}

/* Facebook wrapper */
.embed-wrap--fb {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    /* Make Facebook plugin fill the wrapper */
    display: flex;
    justify-content: center;
}

.embed-wrap--fb .fb-page,
.embed-wrap--fb .fb-page span,
.embed-wrap--fb .fb-page span iframe {
    width: 100% !important;
    min-width: 100% !important;
}

/* YouTube wrapper */
.embed-wrap--yt {
    width: 100%;
}

/* 16:9 responsive iframe container */
.yt-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.yt-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.yt-label {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
    .community-embeds {
        grid-template-columns: 1fr;
    }
    .embed-wrap--fb {
        max-width: 100%;
        width: 100%;
    }
}

/* ════════════════════════════════════════════════════════════
   COMMUNITY SECTION – Facebook + YouTube card
   ════════════════════════════════════════════════════════════ */
.community-section { background: #f5f5f5; }

.community-embeds {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ── Facebook ── */
.embed-wrap--fb {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* ── YouTube card ── */
.yt-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.yt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* Thumbnail area */
.yt-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    overflow: hidden;
}
.yt-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.yt-card:hover .yt-thumb img { transform: scale(1.03); }

/* Red play button */
.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
    transition: transform 0.2s ease, filter 0.2s ease;
}
.yt-card:hover .yt-play {
    transform: translate(-50%, -50%) scale(1.12);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

/* Info bar below thumbnail */
.yt-info {
    padding: 1rem 1.25rem;
    background: #fff;
}
.yt-channel {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 0.4rem;
}
.yt-icon { color: #ff0000; font-size: 0.9rem; }
.yt-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 0.35rem;
}
.yt-sub {
    font-size: 0.8rem;
    color: #ff0000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .community-embeds { grid-template-columns: 1fr; }
    .embed-wrap--fb { min-height: auto; }
}



/* ════════════════════════════════════════════════════════════
   SPONSORS PAGE  – append to bottom of public/css/app.css
   ════════════════════════════════════════════════════════════ */

/* ── Page layout: two-column ─────────────────────────────── */
.sp-page {
    padding: 3rem 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.sp-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 2.5rem;
    align-items: start;
}

/* ── Tier Cards Grid ─────────────────────────────────────── */
.sp-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #ddd;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.sp-tier-card {
    background: #fff;
    padding: 1.8rem 1.5rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.sp-tier-card::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 20px solid rgba(0,0,0,0.04);
    pointer-events: none;
}

.sp-tier-card:hover {
    background: #f0f8f0;
    transform: scale(1.01);
    z-index: 2;
}

.sp-tier-card.selected {
    background: #e8f5e9;
    box-shadow: inset 0 0 0 3px #2e7d32;
}

.sp-tier-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.sp-tier-price {
    font-size: 2.4rem;
    font-weight: 300;
    color: #222;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.sp-dollar { font-size: 1.8rem; vertical-align: top; margin-top: 0.3rem; display: inline-block; }
.sp-cents  { font-size: 1rem; font-weight: 400; color: #666; }

.sp-tier-perks {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: none; /* shown on hover via JS */
}

.sp-select-btn {
    display: none; /* shown on hover */
    padding: 0.4rem 1rem;
    background: #1a3c28;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sp-tier-card:hover .sp-select-btn,
.sp-tier-card:hover .sp-tier-perks { display: block; }
.sp-select-btn:hover { background: #c9a84c; }

/* ── Form Card ───────────────────────────────────────────── */
.sp-form-wrap {
    position: sticky;
    top: 20px;
}

.sp-form-card {
    background: #111;
    border-radius: 10px;
    padding: 2rem;
    color: #fff;
}

.sp-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

.sp-form-card .form-group label {
    color: #ccc;
    font-size: 0.82rem;
}

.sp-form-card .form-control {
    background: #222;
    border-color: #444;
    color: #fff;
    font-size: 0.88rem;
}

.sp-form-card .form-control:focus {
    background: #2a2a2a;
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.sp-form-card .form-control option { background: #222; }

.sp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.req { color: #ef5350; }

/* Upload box */
.sp-upload-box {
    border: 2px dashed #444;
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: #1a1a1a;
}

.sp-upload-box:hover,
.sp-upload-box.dragging { border-color: #c9a84c; background: #222; }

.sp-upload-icon  { font-size: 1.8rem; margin-bottom: 0.4rem; }
.sp-upload-label { color: #ccc; font-size: 0.88rem; font-weight: 600; }
.sp-upload-sub   { color: #666; font-size: 0.78rem; margin-top: 0.2rem; }
.sp-upload-fname { color: #c9a84c; font-size: 0.8rem; margin-top: 0.5rem; word-break: break-all; }

/* Perks info box */
.sp-perks-list {
    margin: 1rem 0;
    font-size: 0.76rem;
    color: #888;
    line-height: 1.6;
}

.sp-perks-list p { margin-bottom: 0.4rem; }
.sp-perks-list strong { color: #bbb; }

/* Terms checkbox */
.sp-terms-row { margin-top: 0.5rem; }
.sp-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #ccc;
    cursor: pointer;
    line-height: 1.4;
}

.sp-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #c9a84c;
}

/* Payment section */
.sp-payment-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #333;
}

.sp-payment-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    background: #1a1a1a;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.sp-payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sp-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #ccc;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    border: 1px solid #333;
    transition: border-color 0.2s ease;
}

.sp-radio-label:hover { border-color: #555; }
.sp-radio-label input[type="radio"] { accent-color: #c9a84c; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sp-layout { grid-template-columns: 1fr; }
    .sp-form-wrap { position: static; }
    .sp-tiers { max-width: 700px; }
}

@media (max-width: 600px) {
    .sp-tiers { grid-template-columns: 1fr; }
    .sp-field-row { grid-template-columns: 1fr; }
}
/* ════════════════════════════════════════════════════════════
   SPONSORS PAGE  – append to bottom of public/css/app.css
   ════════════════════════════════════════════════════════════ */

.sp-page {
    padding: 3rem 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.sp-layout {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 2.5rem;
    align-items: start;
}

/* ── Tier Cards Grid ─────────────────────────────────────── */
.sp-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #d0d0d0;
    border: 2px solid #d0d0d0;
    border-radius: 10px;
    overflow: hidden;
}

.sp-tier-card {
    background: #fff;
    padding: 2rem 1.5rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

/* Decorative circle (like screenshot) */
.sp-tier-card::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 18px solid rgba(0,0,0,0.05);
    pointer-events: none;
}

.sp-tier-card:hover  { background: #f0f7f0; }
.sp-tier-card.active { background: #e8f5e9; box-shadow: inset 0 0 0 3px #2e7d32; }

.sp-tier-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.6rem;
}

.sp-tier-price {
    font-size: 2.6rem;
    font-weight: 300;
    color: #222;
    line-height: 1;
}

.sp-dollar { font-size: 1.8rem; vertical-align: super; font-weight: 300; }
.sp-cents  { font-size: 1rem; color: #888; font-weight: 400; }

/* ── Form Card ───────────────────────────────────────────── */
.sp-form-wrap { position: sticky; top: 20px; }

.sp-form-card {
    background: #111;
    border-radius: 10px;
    padding: 2rem;
    color: #fff;
}

.sp-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #2a2a2a;
}

.sp-form-card .form-group label { color: #bbb; font-size: 0.82rem; font-weight: 600; }
.sp-form-card .form-control { background: #1e1e1e; border-color: #333; color: #fff; font-size: 0.88rem; }
.sp-form-card .form-control:focus { background: #252525; border-color: #c9a84c; box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.sp-form-card .form-control option { background: #1e1e1e; }
.sp-form-card .form-control::placeholder { color: #555; }

.sp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.req { color: #ef5350; }

/* Amount with USD badge */
.sp-amount-wrap { position: relative; }
.sp-amount-wrap .form-control { padding-right: 3.5rem; }
.sp-usd {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.78rem;
    font-weight: 700;
    color: #888;
    pointer-events: none;
}

/* Upload box */
.sp-upload-box {
    border: 2px dashed #333;
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    background: #1a1a1a;
    transition: border-color 0.2s ease;
}
.sp-upload-box:hover, .sp-upload-box.dragging { border-color: #c9a84c; }
.sp-upload-icon  { font-size: 1.8rem; margin-bottom: 0.3rem; }
.sp-upload-label { color: #aaa; font-size: 0.85rem; font-weight: 600; }
.sp-upload-sub   { color: #555; font-size: 0.75rem; margin-top: 0.2rem; }
.sp-upload-fname { color: #c9a84c; font-size: 0.78rem; margin-top: 0.5rem; word-break: break-all; }

/* Perks list */
.sp-perks-list { margin: 0.75rem 0; font-size: 0.73rem; color: #666; line-height: 1.6; }
.sp-perks-list p { margin-bottom: 0.3rem; }
.sp-perks-list strong { color: #999; }

/* Terms */
.sp-terms-row { margin: 0.5rem 0; }
.sp-checkbox-label {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.82rem; color: #ccc; cursor: pointer; line-height: 1.5;
}
.sp-checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: #c9a84c; }

/* ── Payment Methods Box (matches screenshot) ────────────── */
.sp-payment-box {
    background: #2a3040;       /* steel-blue dark panel like screenshot */
    border-radius: 8px;
    padding: 1.25rem 1.25rem 1rem;
    margin: 1.25rem 0 1rem;
}

.sp-payment-box-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

/* Each payment method row */
.sp-method-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.3rem 0;
}

.sp-method-row input[type="radio"] { accent-color: #4a90d9; width: 16px; height: 16px; flex-shrink: 0; }

.sp-method-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 500;
}

.sp-method-icon { font-size: 1rem; }

/* ── Card Fields (shown under Debit/Credit option) ───────── */
.sp-card-fields {
    background: #1e2535;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 0.75rem;
    display: block;
}

.sp-card-input {
    background: #fff !important;
    border: 1px solid #ccc !important;
    color: #111 !important;
    border-radius: 4px !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.9rem !important;
}

.sp-card-input::placeholder { color: #999 !important; }

.sp-card-input:focus {
    border-color: #4a90d9 !important;
    box-shadow: 0 0 0 2px rgba(74,144,217,0.15) !important;
    outline: none !important;
}

/* ── Submit button – always below payment box ────────────── */
.sp-submit-btn {
    display: block;
    width: 100%;
    padding: 0.95rem;
    background: #1565c0;       /* blue like screenshot */
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, transform 0.1s ease;
    margin-top: 0;
}

.sp-submit-btn:hover  { background: #1976d2; }
.sp-submit-btn:active { transform: scale(0.99); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sp-layout { grid-template-columns: 1fr; }
    .sp-form-wrap { position: static; }
}

@media (max-width: 600px) {
    .sp-tiers { grid-template-columns: 1fr; }
    .sp-field-row { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   DYNAMIC CMS PAGES – append to bottom of public/css/app.css
   ════════════════════════════════════════════════════════════ */

.dynamic-page-section {
    padding: 3.5rem 0 4rem;
    background: #fff;
}

/* ── Image + Text layout (when page has featured_image) ───── */
.dp-image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.dp-image {
    position: sticky;
    top: 100px;
}

.dp-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    object-fit: cover;
}

/* ── Text styling (used in both layouts) ─────────────────── */
.dp-text,
.dp-full {
    font-size: 0.97rem;
    line-height: 1.95;
    color: #444;
}

.dp-full {
    max-width: 860px;
    margin: 0 auto;
}

/* Paragraphs */
.dp-text p,
.dp-full p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.dp-text p:last-child,
.dp-full p:last-child { margin-bottom: 0; }

/* Headings inside content */
.dp-text h2, .dp-full h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-forest-deep, #0e2619);
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}

.dp-text h3, .dp-full h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-forest, #1a3c28);
    margin: 1.5rem 0 0.5rem;
}

/* Inline emphasis */
.dp-text em, .dp-full em {
    font-style: italic;
    color: #1a3c28;
    font-weight: 500;
}

.dp-text strong, .dp-full strong {
    color: #222;
    font-weight: 700;
}

/* Images inside content body */
.dp-text img, .dp-full img {
    max-width: 100%;
    border-radius: 6px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Lists */
.dp-text ul, .dp-full ul,
.dp-text ol, .dp-full ol {
    margin: 0 0 1.25rem 1.5rem;
    line-height: 1.9;
}

.dp-text li, .dp-full li { margin-bottom: 0.35rem; }

/* Tables */
.dp-text table, .dp-full table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.92rem;
}

.dp-text th, .dp-full th {
    background: #f0f0f0;
    padding: 0.65rem 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #ddd;
}

.dp-text td, .dp-full td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #eee;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .dp-image-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dp-image {
        position: static;
        max-width: 560px;
        margin: 0 auto;
    }

    .dp-text p { text-align: left; }
}

@media (max-width: 480px) {
    .dynamic-page-section { padding: 2rem 0 2.5rem; }
    .dp-text, .dp-full { font-size: 0.93rem; line-height: 1.85; }
}





/* ════════════════════════════════════════════════════════════
   REGISTRATION + MODAL + FOOTER FIX
   Append to bottom of public/css/app.css
   ════════════════════════════════════════════════════════════ */

/* ── Registration Modal ──────────────────────────────────── */
.reg-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(3px);
}

.reg-modal.open {
    display: flex;
}

.reg-modal__box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.25s ease;
}

@keyframes modalSlideIn {
    from { opacity:0; transform: translateY(-20px) scale(0.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}

.reg-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background 0.2s ease;
}
.reg-modal__close:hover { background: #e0e0e0; color: #111; }

.reg-modal__header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.reg-modal__header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--c-forest-deep, #0e2619);
    margin-bottom: 0.4rem;
}

.reg-modal__header p {
    font-size: 0.88rem;
    color: var(--c-slate, #5a5a5a);
    line-height: 1.6;
}

.reg-modal__form .form-control {
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
}

/* ── Registration Full Page ──────────────────────────────── */
.reg-section {
    padding: 3rem 0 4rem;
    background: var(--c-cream, #faf8f3);
}

.reg-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.reg-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--c-ivory, #f0ece3);
}

.reg-badge {
    display: inline-block;
    background: var(--c-forest, #1a3c28);
    color: var(--c-gold, #c9a84c);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.reg-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--c-forest-deep, #0e2619);
    margin-bottom: 0.4rem;
}

.reg-header p {
    font-size: 0.9rem;
    color: var(--c-slate, #5a5a5a);
}

.reg-section-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-forest, #1a3c28);
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--c-ivory, #f0ece3);
}

.reg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.reg-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
.req { color: #ef5350; }

/* ── Sponsor page perks on hover ─────────────────────────── */
.sp-tier-card .sp-tier-perks {
    display: none;
    font-size: 0.76rem;
    color: #777;
    line-height: 1.5;
    margin-top: 0.5rem;
}
.sp-tier-card:hover .sp-tier-perks { display: block; }
.sp-tier-card.active {
    background: #e8f5e9;
    box-shadow: inset 0 0 0 3px #2e7d32;
}

/* ── Footer – fix spacing & social icons ─────────────────── */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: var(--c-gold, #c9a84c);
    color: var(--c-forest-deep, #0e2619);
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .reg-grid-2 { grid-template-columns: 1fr; }
    .reg-grid-3 { grid-template-columns: 1fr 1fr; }
    .reg-wrap { padding: 1.5rem; }
    .reg-modal__box { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .reg-grid-3 { grid-template-columns: 1fr; }
}



/* ════════════════════════════════════════════════════════════
   INDIVIDUAL PAGES CSS – append to bottom of public/css/app.css
   ════════════════════════════════════════════════════════════ */

.dp-section { padding: 3.5rem 0 4rem; background: #fff; }

/* Image + Text side by side */
.dp-image-text { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.dp-image { position: sticky; top: 100px; }
.dp-image img { width:100%; height:auto; display:block; border-radius:6px; box-shadow:0 4px 24px rgba(0,0,0,.10); object-fit:cover; }

/* Full width text */
.dp-full { max-width: 860px; margin: 0 auto; }

/* Shared text */
.dp-text, .dp-full { font-size:.97rem; line-height:1.95; color:#444; }
.dp-text p, .dp-full p { margin-bottom:1.25rem; }
.dp-text p:last-child, .dp-full p:last-child { margin-bottom:0; }
.dp-text p { text-align:justify; }

.dp-text h2, .dp-full h2 { font-family:'Playfair Display',Georgia,serif; font-size:1.7rem; font-weight:700; color:var(--c-forest-deep,#0e2619); margin:2rem 0 .75rem; line-height:1.3; }
.dp-text h3, .dp-full h3 { font-family:'Playfair Display',Georgia,serif; font-size:1.15rem; font-weight:600; color:var(--c-forest,#1a3c28); margin:1.75rem 0 .5rem; }
.dp-text em, .dp-full em { font-style:italic; color:#1a3c28; font-weight:500; }
.dp-text strong, .dp-full strong { color:#222; font-weight:700; }
.dp-text a, .dp-full a { color:var(--c-sage,#3d6b4f); text-decoration:underline; }
.dp-text a:hover, .dp-full a:hover { color:var(--c-gold-dark,#9e7e2e); }
.dp-text ul, .dp-full ul, .dp-text ol, .dp-full ol { margin:0 0 1.25rem 1.5rem; line-height:1.9; }
.dp-text li, .dp-full li { margin-bottom:.4rem; }

/* Invitation letter style */
.dp-letter { background:var(--c-cream,#faf8f3); border-left:4px solid var(--c-gold,#c9a84c); padding:2.5rem 3rem; border-radius:0 8px 8px 0; box-shadow:0 2px 12px rgba(0,0,0,.06); }

/* Fee card */
.fee-card { background:var(--c-ivory,#f0ece3); border:1px solid var(--c-sand,#e5ddd0); border-radius:12px; padding:3rem 2rem; max-width:500px; margin:2rem auto; box-shadow:0 4px 20px rgba(0,0,0,.07); }
.fee-label { font-size:1rem; font-weight:600; color:var(--c-slate,#5a5a5a); text-transform:uppercase; letter-spacing:.1em; margin-bottom:.75rem; }
.fee-amount { font-family:'Playfair Display',Georgia,serif; font-size:4rem; font-weight:700; color:var(--c-forest-deep,#0e2619); line-height:1; margin-bottom:1.5rem; }
.fee-amount span { font-size:1.5rem; color:var(--c-slate,#5a5a5a); font-weight:400; }
.fee-includes { font-size:.92rem; color:var(--c-slate,#5a5a5a); line-height:1.8; }
.fee-includes ul { text-align:left; margin:.5rem 0 0 1.5rem; }

/* Special guest badge */
.guest-badge { display:inline-block; background:var(--c-gold,#c9a84c); color:#111; font-size:.78rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; padding:.35rem 1.2rem; border-radius:50px; margin-bottom:1rem; }

/* Responsive */
@media (max-width:900px) {
    .dp-image-text { grid-template-columns:1fr; gap:2rem; }
    .dp-image { position:static; max-width:560px; margin:0 auto; }
    .dp-text p { text-align:left; }
    .dp-letter { padding:1.75rem 1.5rem; }
}
@media (max-width:480px) {
    .dp-section { padding:2rem 0 2.5rem; }
    .dp-text, .dp-full { font-size:.93rem; line-height:1.85; }
    .fee-amount { font-size:3rem; }
}


/* ── About Us Layout ─────────────────────────────────────── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-img-col {
    position: sticky;
    top: 110px;
}

.about-txt-col {
    font-size: 0.97rem;
    line-height: 1.95;
    color: #444;
}

.about-txt-col p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.about-txt-col p:last-child { margin-bottom: 0; }

.about-txt-col em {
    font-style: italic;
    color: #1a3c28;
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-img-col {
        position: static;
        max-width: 560px;
        margin: 0 auto;
    }
    .about-txt-col p { text-align: left; }
}



/* ── Pagination ─────────────────────────────────────────────
   Append to bottom of public/css/app.css
   ──────────────────────────────────────────────────────────── */

/* Override Laravel's default pagination */
.pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pagination li a,
.pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--c-sand, #e5ddd0);
    background: #fff;
    color: var(--c-charcoal, #1a1a1a);
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.pagination li a:hover {
    background: var(--c-ivory, #f0ece3);
    border-color: var(--c-forest, #1a3c28);
    color: var(--c-forest, #1a3c28);
}

/* Active page */
.pagination li.active span,
.pagination li span[aria-current="page"] {
    background: var(--c-forest, #1a3c28);
    border-color: var(--c-forest, #1a3c28);
    color: #fff;
    font-weight: 700;
    cursor: default;
}

/* Disabled (prev/next when not available) */
.pagination li.disabled span,
.pagination li span[aria-disabled="true"] {
    background: var(--c-ivory, #f0ece3);
    border-color: var(--c-sand, #e5ddd0);
    color: #bbb;
    cursor: default;
}

/* Dots (...) */
.pagination li span.page-link[aria-label="..."],
.pagination li span:not([aria-current]) {
    background: #fff;
    color: var(--c-slate, #5a5a5a);
}

/* Wrapper */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--c-sand, #e5ddd0);
    font-size: 0.82rem;
    color: var(--c-slate, #5a5a5a);
}


