.gallery-column.tall figure:first-child {
    height: 260px;
}

.gallery-column.tall figure:last-child {
    height: 200px;
}

.error-help-block{
    color: red;
}
.gallery-column.medium figure {
    height: 200px;
}

.gallery-column.wide {
    grid-template-rows: 100%;
    align-items: center;
}

.wide-image {
    height: 100%;
}
/* CSS Variables */
:root {
    --font-heading: "Playfair Display", serif;
    --font-body: "Playfair Display", serif;

    /* Theme color system (NEW) */
    --theme-bg: #2e4972;
    --theme-accent: #E6C77A;
    --theme-text: #fff;

    /* Common variants */
    --theme-accent-light: #F0D9A8;
    --theme-accent-dark: #D4B568;
    --theme-accent-medium: #496dd2;
    --theme-accent-dark: #1a3e6a;
    --theme-bg-light: #4d77a8;
    --theme-bg-dark: #1a3e6a;

    /* Light backgrounds for cards and content areas */
    --theme-surface: #f5f5f5;
    --theme-surface-light: #ffffff;
    --theme-surface-dark: #e8e8e8;

    /* Text colors for contrast */
    --theme-text-dark: #2d2a32;
    --theme-text-light: rgba(255, 255, 255, 0.9);

    /* Existing variable names (aliases) */
    --color-background: var(--theme-bg);
    --color-button: var(--theme-accent);
    --color-font: var(--theme-text);
    --color-heading: var(--theme-accent);
}

input {
    font-family: var(--font-heading);
}

button {
    font-family: var(--font-heading);
}

a {
    font-family: var(--font-heading);
}

p {
    font-family: var(--font-heading);
}
b {
    font-family: var(--font-heading);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

ul {
    font-family: var(--font-heading);
}

ol {
    font-family: var(--font-heading);
}


li {
    font-family: var(--font-heading);
}


span {
    font-family: var(--font-heading);
}


small {
    font-family: var(--font-heading);
}

label {
    font-family: var(--font-heading);
}

strong {
    font-family: var(--font-heading);
}

em {
    font-family: var(--font-heading);
}


code {
    font-family: var(--font-heading);
}


pre {
    font-family: var(--font-heading);
}


blockquote {
    font-family: var(--font-heading);
}


hr {
    font-family: var(--font-heading);
}

select {
    font-family: var(--font-heading);
}

option {
    font-family: var(--font-heading);
}

optgroup {
    font-family: var(--font-heading);
}

/* Global reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--color-font);
    background-color: var(--theme-surface);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section h2,
.feature-intro h2,
.feature-card h3,
.story-title,
.steps-title,
.activities-title,
.cta-title,
.auth-intro h1,
.organizer-hero-top h1,
.organizer-step h3,
.organizer-form-header h2,
.camp-detail-header h1,
.panel h2,
.registrations-hero-card h1 {
    font-family: var(--font-heading);
    color: var(--color-heading);
}

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-button);
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--theme-surface-light);
    height: 80px;
    border-bottom: 1px solid #e5e5e5;
    overflow: visible;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 40px;
    position: relative;
    overflow: visible;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 120px;
    flex-shrink: 0;
    flex: 1;
    min-width: 0;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-surface);
    white-space: nowrap;
}

.nav-brand img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.nav-brand-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    font-size: 20px;
    line-height: 22px;
    background: transparent;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-brand:hover .nav-brand-text {
    color: #585858;
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--theme-bg);
}

.nav-divider {
    width: 1px;
    height: 22px;
    background: var(--theme-surface-dark);
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav-menu {
    display: none;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    padding-left: 20px;
    border-left: 1px solid #dddddd;
    flex-shrink: 0;
    position: relative;
}

.logout-form {
    margin: 0;
}

.logout-form button {
    background: var(--theme-surface);
    color: var(--theme-accent);
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(230, 199, 122, 0.45);
}

.logout-form button:hover,
.logout-form button:focus {
    background: var(--theme-accent);
    color: #fff;
}

.nav-brand img,
.footer-logo img {
    border-radius: 0;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 400;
    color: #000;
    font-size: 16px;
    line-height: 22px;
    background: transparent;
    transition: color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-login-btn:hover {
    color: var(--theme-bg);
}

.nav-user {
    position: relative;
    display: inline-block;
}

.nav-user-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    font-weight: 400;
    color: var(--theme-surface);
    transition: transform 0.2s ease;
}

.nav-user-trigger:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.2);
    outline-offset: 2px;
    border-radius: 50%;
}

.nav-user-trigger:hover {
    transform: scale(1.05);
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-surface);
    color: var(--theme-surface);
    font-weight: 500;
    font-size: 16px;
    border: 2px solid #e5e5e5;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-user-trigger:hover .avatar {
    border-color: var(--theme-accent);
    background: var(--theme-surface);
}

.nav-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    background: var(--theme-surface-light);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    min-width: 200px;
    width: max-content;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e5e5e5;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.menu-user-info {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.5rem;
}

.menu-user-name {
    font-weight: 500;
    color: var(--theme-surface);
    font-size: 14px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1728px) {
    .nav-user-menu {
        right: 0;
    }
}

@media (max-width: 1600px) {
    .nav-user-menu {
        right: 0;
    }
}

.nav-user-menu[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-user-menu hr {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    margin: 0.25rem 0;
}

.menu-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    font-weight: 400;
    color: #585858;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.menu-item:hover {
    background: var(--theme-surface);
    color: var(--theme-surface);
}

.menu-item.logout {
    color: var(--theme-accent);
}

.menu-item.logout:hover {
    background: var(--theme-surface);
    color: var(--theme-accent);
}

@media (max-width: 1400px) {
    .nav-bar {
        padding: 0 30px;
        gap: 30px;
    }

    .nav-left {
        gap: 80px;
    }
}

@media (max-width: 1200px) {
    .nav-bar {
        padding: 0 20px;
        gap: 20px;
    }

    .nav-left {
        gap: 50px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-brand {
        font-size: 14px;
    }

    .nav-login-btn {
        font-size: 14px;
    }
}

@media (max-width: 960px) {
    .site-header {
        height: auto;
    }

    .nav-bar {
        height: 70px;
        padding: 0 20px;
        gap: 0;
    }

    .section {
        scroll-margin-top: 90px;
    }

    .nav-left {
        gap: 0;
        flex: 1;
        min-width: 0;
    }

    .nav-brand {
        flex-shrink: 0;
        min-width: 0;
    }

    .nav-brand-text {
        display: inline-flex !important;
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: static;
        transform: none;
    }

    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--theme-surface-light);
        width: 100%;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
        gap: 0;
    }

    .mobile-nav-menu[data-mobile-menu-open="true"] {
        max-height: 600px;
        padding: 20px;
    }

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0.5rem;
    }

    .mobile-brand-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: inherit;
    }

    .mobile-brand-link img {
        flex-shrink: 0;
    }

    .mobile-brand-text {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--theme-bg-dark);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .mobile-user-info {
        display: block;
        width: 100%;
        padding: 12px 0 8px 0;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0;
    }

    .mobile-user-name {
        display: block;
        font-weight: 600;
        font-size: 16px;
        color: var(--theme-surface);
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
    }

    .mobile-nav-link {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 14px 0;
        text-decoration: none;
        color: #585858;
        transition: color 0.2s ease, background-color 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }

    .mobile-nav-link:first-child {
        padding-top: 0;
    }

    .mobile-nav-link:last-child {
        border-bottom: none;
    }

    .mobile-nav-link:hover {
        color: var(--theme-surface);
        background-color: #f9f9f9;
    }

    .mobile-nav-divider {
        display: none;
    }

    .mobile-menu-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--theme-surface-dark);
        margin: 12px 0;
    }

    .mobile-logout-form {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .mobile-logout-btn {
        width: 100%;
        text-align: left;
        font-size: 16px;
        padding: 12px 0;
        border: none;
        background: transparent;
        color: #585858;
        cursor: pointer;
        transition: color 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-logout-btn:hover {
        color: var(--theme-surface);
    }

    .mobile-login-link {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 12px 0;
        text-decoration: none;
        color: #585858;
        transition: color 0.2s ease;
        font-weight: 600;
        text-align: left;
    }

    .mobile-login-link:hover {
        color: var(--theme-surface);
    }

    .mobile-logout-form {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .mobile-logout-btn {
        width: 100%;
        text-align: left;
        font-size: 16px;
        padding: 12px 0;
        border: none;
        background: transparent;
        color: #585858;
        cursor: pointer;
        transition: color 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-logout-btn:hover {
        color: var(--theme-surface);
    }

    .nav-right {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-bar {
        padding: 12px 15px;
        height: 65px;
    }

    .nav-brand {
        font-size: 11px;
        gap: 0.5rem;
    }

    .nav-brand-text {
        display: block;
        font-size: 1rem;
        white-space: nowrap;
        letter-spacing: 0.02em;
    }

    .nav-brand img {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }

    .mobile-nav-menu {
        top: 65px;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-login-btn {
        font-size: 13px;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 12px 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

.btn-outline:hover,
.btn-outline:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.hero {
    position: relative;
    background: url('../img/maine-image-krishna.jpg') center/cover;
    color: #fff;
    padding: 14.6rem 0 4.2rem;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 1.6rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

.hero-title span {
    display: block;
}

.hero-title .accent {
    color: var(--theme-accent);
}

.hero p {
    margin: 0;
    font-size: 2.05rem;
}

.hero-tagline {
    max-width: 720px;
    color: #fff;
    font-size: 1.05rem;
}

.hero-description {
    max-width: 720px;
    color: #fff;
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.hero-content h1,
.hero-content p {
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    height:10px;
}

.section {
    padding: 2.1rem 0;
    scroll-margin-top: 100px;
}

.section.light {
    /* background: var(--color-background); */
    background: var(--theme-surface);
}

.section.cream {
    background: var(--color-background);
}

.pill-title {
    display: inline-flex;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 146, 52, 0.15);
    color: var(--theme-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.section h2 {
    margin: 1rem 0;
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: var(--theme-surface);
}

.section p.section-lead {
    max-width: 700px;
    margin: 0 auto 1.75rem;
    color: var(--theme-surface);
}

.feature-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 1.75rem;
}

.feature-highlight-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
}

.feature-intro,
.feature-card {
    background: var(--theme-surface-light);
    padding: 1.7rem 1.7rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 28px 42px rgba(45, 42, 50, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feature-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--theme-surface);
}

.feature-intro p {
    margin: 0;
    color: var(--theme-surface);
    line-height: 1.5;
}

.feature-card {
    justify-content: flex-start;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--theme-bg);
}

.feature-card p {
    margin: 0;
    color: rgba(45, 42, 50, 0.72);
    line-height: 1.4;
}

.feature-card-image {
    width: calc(100% + 3.4rem);
    height: 200px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    margin: -1.7rem -1.7rem 0.85rem -1.7rem;
    display: block;
    max-width: none;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(50, 62, 113, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--theme-accent);
}

.feature-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.feature-link:hover::after,
.feature-link:focus::after {
    transform: translateX(4px);
}

.two-column {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
}

.story-layout {
    display: grid;
    gap: 2.1rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.story-media {
    display: grid;
    gap: 1.4rem;
}

.story-title {
    font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    line-height: 1.05;
    font-weight: 700;
    color: var(--theme-surface);
}

.story-title .accent {
    color: var(--theme-accent);
}

.story-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 252px;
    box-shadow: 0 35px 55px rgba(45, 42, 50, 0.28);
}

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

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
}

.story-video {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 252px;
    box-shadow: 0 35px 55px rgba(45, 42, 50, 0.28);
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    max-width: 100%;
}

.story-content {
    display: grid;
    gap: 0.8rem;
    color: var(--theme-surface);
}

.story-content p {
    margin: 0;
}

.story-lead {
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme-surface);
}

.story-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.story-cta {
    justify-self: start;
}

.steps {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/bg-image.jpg') center/cover;
    padding: 4.2rem 0;
    border-radius: 48px 48px 0 0;
}

.steps-container {
    display: grid;
    gap: 2.1rem;
}

.steps-header {
    text-align: center;
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    gap: 0.7rem;
}

.steps-header p {
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.05;
    display: inline-block;
    position: relative;
    padding-bottom: 0.4rem;
}

.steps-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 82px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(230, 199, 122, 0), var(--theme-accent) 45%, var(--theme-accent-light) 90%, rgba(255, 255, 255, 0));
}

.steps-title .accent {
    color: var(--theme-accent);
}

.steps-header p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
}

.pill-on-dark {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

/* .steps-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
} */


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    align-items: stretch; /* important */
}

.steps-grid > .step {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.steps-card {
    background: var(--theme-surface-light);
    color: var(--theme-bg);
    padding: 1.7rem 1.7rem;
    border-radius: 26px;
    display: grid;
    gap: 0.8rem;
    box-shadow: 0 22px 40px rgba(12, 9, 16, 0.35);
}

.steps-card .steps-pill {
    margin: 0;
}

.steps-card h3 {
    margin: 0;
    color: var(--theme-text-dark);
    font-size: 1.4rem;
}

.steps-card p {
    margin: 0;
}

.steps-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    width: fit-content;
}

.steps-plan {
    background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-light));
}

.steps-materials {
    background: linear-gradient(135deg, #2794ff, #45b1ff);
}

.steps-share {
    background: linear-gradient(135deg, #f7b500, #fbd861);
}

.steps-list {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.35rem;
    color: rgba(45, 42, 50, 0.8);
}

.steps-list li::marker {
    color: var(--theme-accent);
}

.activities {
    background: var(--theme-surface);
    /* border-radius: 48px; */
}

.activities-layout {
    display: grid;
    gap: 2.1rem;
    grid-template-columns: 1fr;
}

.activities-intro {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.activities-title {
    margin: 0;
    font-size: clamp(2.4rem, 4.2vw, 3.2rem);
    line-height: 1.05;
}

.activities-title .base {
    color: var(--theme-bg-dark);
}

.activities-title .accent {
    color: var(--theme-accent);
}

.activities-lead {
    margin: 0;
    font-size: 1.05rem;
    color: var(--theme-bg-dark);
    line-height: 1.6;
}

.activities-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.activity-card {
    background: var(--theme-surface-light);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 200px 1fr;
    box-shadow: 0 30px 45px rgba(21, 75, 146, 0.18);
    border: 1px solid rgba(50, 62, 113, 0.1);    
}

.activity-card figure {
    margin: 0;
    position: relative;
}

.activity-card figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
}

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

.activity-card div {
    padding: 1.8rem 1.7rem 1.7rem;
    display: grid;
    gap: 0.6rem;
}

.activity-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--theme-text-dark);
}

.activity-tagline {
    margin: 0;
    font-weight: 600;
    color: var(--theme-accent);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.activity-card p {
    margin: 0;
    color: var(--theme-text-dark);
    line-height: 1.5;
}

.cta {
    position: relative;
    padding: 0;
}

.cta-overlay {
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)),
        url('../img/bg-image.jpg') center/cover;
    border-radius: 48px;
    overflow: hidden;
    padding: 4rem 0;
}

.cta-content {
    color: var(--theme-surface);
    text-align: center;
    display: grid;
    gap: 1.2rem;
    max-width: 820px;
    margin: 0 auto;
}

.cta-title {
    margin: 0;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.05;
}

.cta-title span {
    display: block;
    color: var(--theme-accent);
}

.cta-lead {
    margin: 0 auto;
    max-width: 620px;
    color: var(--theme-surface);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--theme-surface);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: var(--theme-surface);
}

.auth-section {
    padding: 4rem 0 5rem;
    background: radial-gradient(circle at top left, rgba(50, 62, 113, 0.18), transparent 45%),
        radial-gradient(circle at bottom right, rgba(50, 62, 113, 0.12), transparent 40%),
        var(--color-background);
}

.auth-wrapper {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.auth-intro {
    display: grid;
    gap: 1.2rem;
    align-content: start;
}

.auth-intro h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--theme-bg-dark);
    line-height: 1.05;
}

.auth-lead {
    margin: 0;
    color: var(--theme-bg-dark);
    line-height: 1.6;
}

.auth-benefits {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--theme-bg-dark);
    display: grid;
    gap: 0.4rem;
}

.auth-benefits li::marker {
    color: var(--theme-accent);
}

.auth-card {
    background: var(--theme-surface-light);
    border-radius: 28px;
    padding: 2rem 2.2rem;
    box-shadow: 0 30px 48px rgba(12, 9, 16, 0.18);
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--theme-accent);
    font-size: 1.05rem;
}

.auth-tabs {
    display: inline-flex;
    background: rgba(50, 62, 113, 0.12);
    border-radius: 999px;
    padding: 0.3rem;
    gap: 0.3rem;
}

.auth-tab {
    border: none;
    background: transparent;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    color: var(--theme-accent);
    transition: background 0.2s ease, color 0.2s ease;
}

.auth-tab.active {
    background: var(--theme-accent);
    color: #fff;
}

.auth-status,
.auth-errors {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

.auth-status {
    background: rgba(36, 165, 93, 0.1);
    color: #218148;
}

.auth-errors {
    background: rgba(230, 199, 122, 0.12);
    color: #b9370a;
    text-align: left;
}

.auth-errors ul {
    margin: 0.4rem 0 0 1rem;
    padding: 0;
}

.auth-form {
    display: grid;
    gap: 1.1rem;
}

.auth-form.is-hidden {
    display: none;
}

.form-field {
    display: grid;
    gap: 0.4rem;
    text-align: left;
}

.form-field label {
    font-weight: 600;
    color: var(--theme-bg-dark);
}

.form-field input,
.form-field select {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(50, 62, 113, 0.12);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 4px rgba(230, 199, 122, 0.16);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: space-between;
    align-items: center;
}

.auth-link {
    font-size: 0.9rem;
    color: var(--theme-bg-dark);
}

.auth-terms {
    font-size: 0.8rem;
    color: var(--theme-bg-dark);
}

.auth-terms a {
    color: var(--theme-bg-dark);
}

.organizer-hero {
    background: linear-gradient(135deg, rgba(50, 63, 113, 0.35), var(--theme-accent-medium));
}

.organizer-hero-content {
    display: grid;
    gap: 1.75rem;
    text-align: center;
    max-width: 940px;
    margin: 0 auto;
}

.organizer-hero-top h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--theme-bg);
    line-height: 1.1;
}

.organizer-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.organizer-step {
    background: var(--theme-surface-light);
    padding: 1.5rem 1.7rem;
    border-radius: 20px;
    box-shadow: 0 18px 35px rgba(122, 17, 28, 0.12);
    width: min(280px, 100%);
    text-align: left;
    display: grid;
    gap: 0.8rem;
    border: 1px solid rgba(122, 17, 28, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.organizer-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(122, 17, 28, 0.18);
}

.organizer-step.is-active {
    background: linear-gradient(145deg, #FFA85F, var(--theme-accent));
    border-color: rgba(255, 255, 255, 0.2);
    color: #5a2e0e;
}

.organizer-step.is-active h3 {
    color: #5a2e0e;
}

.organizer-step.is-active p {
    color: var(--theme-bg-dark) !important;
}

.organizer-step.is-upcoming {
    background: var(--theme-surface-light);
    border-color: rgba(122, 17, 28, 0.12);
}

.organizer-step.is-upcoming:hover {
    transform: translateY(-4px);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(230, 199, 122, 0.12);
    color: var(--theme-accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.organizer-step.is-active .step-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.organizer-step h3 {
    margin: 0;
    color: var(--theme-bg);
}

.organizer-step p {
    margin: 0.2rem 0 0;
    color: var(--theme-surface);
}

.organizer-form-section {
    background: var(--theme-surface-light);
}

.organizer-form-card {
    /* background: linear-gradient(180deg, #FFA85F, var(--theme-accent)); */
    border-radius: 30px;
    padding: 0.2rem;
    box-shadow: 0 30px 45px rgba(12, 9, 16, 0.22);
    background-color: var(--theme-bg);

}

.organizer-form-header {
    text-align: center;
    color: #fff;
    padding: 2.5rem 2rem 2rem;
}

.organizer-form-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.organizer-form-header p {
    margin: 0.8rem auto 0;
    max-width: 680px;
    line-height: 1.6;
}

.organizer-form {
    background: var(--theme-surface-light);
    border-radius: 24px;
    padding: 2.5rem 2.8rem;
    display: grid;
    gap: 2rem;
}

.organizer-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.2rem;
}

.organizer-form legend {
    font-weight: 700;
    color: var(--theme-bg);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.form-grid.two {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.organizer-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--theme-bg);
    font-size: 0.95rem;
}

.organizer-form .input-hint {
    font-size: 0.8rem;
    color: rgba(50, 62, 113, 0.6);  
    font-weight: 400;
    margin-top: -0.2rem;
    font-style: italic;
}

.organizer-form label {
    position: relative;
}

.date-time-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.date-time-placeholder {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(45, 42, 50, 0.5);
    font-size: 0.95rem;
    font-weight: 400;
    z-index: 1;
    user-select: none;
    transition: opacity 0.15s ease;
}

.date-time-input-wrapper input:focus ~ .date-time-placeholder,
.date-time-input-wrapper input:active ~ .date-time-placeholder,
.date-time-input-wrapper input.has-value ~ .date-time-placeholder,
.date-time-input-wrapper input:not(:invalid):not(:placeholder-shown) ~ .date-time-placeholder {
    display: none !important;
}

.date-time-input-wrapper input.has-value {
    color: #2d2a32 !important;
}

@media (max-width: 768px) {
    .date-time-placeholder {
        font-size: 1rem;
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .date-time-placeholder {
        font-size: 1.05rem;
        left: 1.1rem;
    }
}

.organizer-form input {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    font-size: 0.95rem;
    background: var(--theme-surface-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.organizer-form input[type="date"],
.organizer-form input[type="time"],
.organizer-form input[type="datetime-local"] {
    min-height: 48px;
    font-size: 0.95rem;
    /* color: var(--theme-bg); */
    position: relative;
    z-index: 2;
}


.organizer-form input:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 4px rgba(230, 199, 122, 0.18);
}

.organizer-form select,
.organizer-form .form-control {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    font-size: 0.95rem;
    background: var(--theme-surface-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-heading);
    /* color: var(--theme-surface); */
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d2a32' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.organizer-form select:focus,
.organizer-form .form-control:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 4px rgba(230, 199, 122, 0.18);
}

.organizer-form select:hover,
.organizer-form .form-control:hover {
    border-color: rgba(0, 0, 0, 0.24);
}

.organizer-form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--theme-bg-dark);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--theme-bg-dark);
}

.checkbox-label span {
    user-select: none;
}

.organizer-form-actions {
    text-align: center;
}

.organizer-form-actions .btn {
    min-width: 220px;
    font-size: 1rem;
}

.gallery {
    background: transparent;
    padding-bottom: 0;
}

.gallery-header {
    display: grid;
    gap: 0.8rem;
    text-align: center;
    max-width: 900px;
    margin-bottom: 2.2rem;
}

.gallery-title {
    margin: 0;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    line-height: 1.05;
}

.gallery-title .base {
    display: block;
    color: var(--theme-bg);
}

.gallery-title .accent {
    display: block;
    color: var(--theme-accent);
}

.gallery-lead {
    margin: 0 auto;
    max-width: 680px;
    color: rgba(45, 42, 50, 0.65);
    line-height: 1.6;
}

.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(45, 42, 50, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(45, 42, 50, 0.3);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--theme-accent);
    background: var(--theme-surface-light);
    color: var(--theme-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-slider-btn:hover {
    background: var(--theme-accent);
    color: #ffffff;
    transform: scale(1.1);
}

.gallery-slider-btn:active {
    transform: scale(0.95);
}

.gallery-slider-btn svg {
    width: 24px;
    height: 24px;
}

.testimonials {
    background: var(--color-background);
}

.testimonials-header {
    text-align: center;
    max-width: 760px;
    margin-bottom: 2rem;
    display: grid;
    gap: 0.8rem;
}

.testimonials-title {
    margin: 0;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    color: var(--theme-text);
}

.testimonials-lead {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.testimonial-card {
    background: var(--theme-surface-light);
    border-radius: 32px;
    padding: 3rem 3.5rem;
    box-shadow: 0 28px 45px rgba(12, 9, 16, 0.18);
    display: grid;
    gap: 1.2rem;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(50, 62, 113, 0.12), transparent 60%);
    pointer-events: none;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.quote-icon {
    margin: 0 auto;
}

.testimonial-quote {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.6;
    color: rgba(45, 42, 50, 0.85);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--theme-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.user-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.user-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.user-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    text-align: left;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

.user-hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    height: auto;
}

.user-hero-title {
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.user-hero-title-accent {
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    color: var(--theme-accent);
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.user-hero-description {
    font-size: 14px;
    line-height: 1.5;
    color: #f6f6f6;
    margin: 0;
    max-width: 860px;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 960px) {
    .user-hero {
        min-height: 400px;
        padding: 3rem 0;
    }

    .user-hero-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        height: auto;
    }

    .user-hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
        width: auto;
        height: auto;
    }

    .user-hero-title-accent {
        font-size: clamp(3rem, 8vw, 5rem);
        width: auto;
        height: auto;
    }

    .user-hero-description {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .user-hero {
        min-height: 350px;
        padding: 2rem 0;
    }

    .user-hero-content {
        gap: 15px;
    }

    .user-hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .user-hero-title-accent {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .user-hero-description {
        font-size: 13px;
    }
}

.faq-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-title {
    font-size: 170px;
    line-height: 1;
    font-weight: 400;
    color: var(--theme-surface);
    margin: 0;
    height: 170px;
    display: flex;
    align-items: center;
}

.faq-lead {
    font-size: 16px;
    line-height: 1.5;
    color: #585858;
    margin: 0;
    height: 72px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-question-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 24px;
}

.faq-question {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--theme-bg-dark);
    flex: 1;
    height: 24px;
    display: flex;
    align-items: center;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--theme-bg-dark);
    position: relative;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--theme-bg-dark);
    transform: translate(-50%, -50%);
}

.faq-icon-plus {
    display: block;
}

.faq-icon-minus {
    display: none;
}

.faq-item:first-child .faq-icon-plus {
    display: none;
}

.faq-item:first-child .faq-icon-minus {
    display: block;
}

.faq-answer {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.5;
    color: #585858;
    margin: 0;
    min-height: 72px;
}

.faq-divider {
    height: 1px;
    background: var(--theme-surface-dark);
    margin-top: 0;
}

.faq-item:last-child .faq-divider {
    display: none;
}

@media (max-width: 1200px) {
    .faq-layout {
        flex-direction: column;
        gap: 40px;
    }

    .faq-intro {
        flex: 1;
        width: 100%;
    }

    .faq-title {
        font-size: clamp(4rem, 10vw, 8rem);
        height: auto;
    }

    .faq-lead {
        width: 100%;
        height: auto;
    }

    .faq-items {
        flex: 1;
        width: 100%;
    }

    .faq-answer p {
        width: 100%;
    }

    .faq-divider {
        width: 100%;
    }
}

.site-footer {
    width: 100%;
    position: relative;
}

.footer-cta {
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    /* margin-top: -140px; */
    margin-bottom: -166px;
    z-index: 2;
}

.footer-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-cta-card {
    background: var(--theme-surface-light);
    border-radius: 20px;
    padding: 60px 70px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-bg-dark) 0%, var(--theme-bg-light) 100%);
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

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

.footer-cta-title {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--theme-bg-dark);
    margin: 0;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-cta-description {
    font-size: 17px;
    line-height: 1.7;
    color: #606060;
    margin: 0;
    max-width: 650px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-cta-action {
    flex-shrink: 0;
}

.footer-cta-button {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 62, 113, 0.25);
    white-space: nowrap;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 62, 113, 0.35);
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
}

.footer-cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.footer-cta-button:hover i {
    transform: translateX(4px);
}

.footer-ellipse {
    display: none;
}

.footer-ellipse-1,
.footer-ellipse-2,
.footer-ellipse-3,
.footer-ellipse-4 {
    display: none;
}

.footer-bottom-section {
    background: var(--theme-bg-dark);
    padding: 200px 0 50px;
    margin-top: 0;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.footer-content {
    max-width: 1488px;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-logo-title {
    font-size: 43px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.footer-logo-subtitle {
    font-size: 21px;
    line-height: 1;
    font-weight: 400;
    color: #a7a7a7;
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    white-space: nowrap;
}

.footer-nav a {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--theme-accent);
}

.footer-nav-divider {
    width: 1px;
    height: 24px;
    background: var(--theme-surface);
}

.footer-divider {
    width: 100%;
    max-width: 1488px;
    height: 1px;
    background: var(--theme-surface-dark);
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1488px;
    text-align: center;
}

.footer-copyright span {
    font-size: 16px;
    line-height: 1.375;
    color: #ffffff;
}

.footer-copyright span:first-child {
    flex: 1;
    text-align:center !important;
}

@media (max-width: 1200px) {
    .footer-cta-card {
        padding: 50px 50px;
    }

    .footer-cta-content {
        gap: 40px;
    }

    .footer-cta-title {
        font-size: 32px;
    }

    .footer-cta-description {
        max-width: 100%;
    }

    .footer-content {
        padding: 0 60px;
    }

    .footer-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-nav a {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .footer-cta-card {
        padding: 45px 40px;
    }

    .footer-cta-title {
        font-size: 30px;
    }

    .footer-cta-description {
        max-width: 100%;
    }

    .footer-content {
        padding: 0 40px;
    }

    .footer-logo-title {
        font-size: 36px;
    }

    .footer-logo-subtitle {
        font-size: 19px;
    }

    .footer-nav {
        gap: 14px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        /* margin-top: -100px; */
        margin-bottom: -150px;
    }

    .footer-cta .container {
        padding: 0 20px;
    }

    .footer-cta-card {
        padding: 40px 30px;
        border-radius: 18px;
    }

    .footer-cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        text-align: center;
    }

    .footer-cta-text {
        width: 100%;
        text-align: center;
    }

    .footer-cta-title {
        font-size: 28px;
        text-align: center;
        max-width: 100%;
    }

    .footer-cta-description {
        font-size: 15px;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-cta-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-cta-button {
        padding: 14px 32px;
        font-size: 15px;
        width: auto;
        min-width: 200px;
        justify-content: center;
    }

    .footer-bottom-section {
        padding: 180px 0 40px;
    }

    .footer-content {
        padding: 0 30px;
        gap: 35px;
    }

    .footer-logo-title {
        font-size: 32px;
    }

    .footer-logo-subtitle {
        font-size: 18px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
        row-gap: 10px;
    }

    .footer-nav a {
        font-size: 14px;
        padding: 4px 0;
    }

    .footer-nav-divider {
        display: none;
    }

    .footer-copyright span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-cta {
        margin-top: 9px;
        margin-bottom: -125px;
    }

    .footer-cta .container {
        padding: 0 15px;
    }

    .footer-cta-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .footer-cta-content {
        gap: 20px;
        text-align: center;
    }

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

    .footer-cta-title {
        font-size: 20px;
        line-height: 1.4;
        text-align: center;
        max-width: 100%;
    }

    .footer-cta-description {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        max-width: 100%;
        padding: 0 5px;
    }

    .footer-cta-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-cta-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-bottom-section {
        padding: 150px 0 30px;
    }

    .footer-content {
        padding: 0 20px;
        gap: 25px;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }

    .footer-logo-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        line-height: 1.2;
        word-wrap: break-word;
    }

    .footer-logo-subtitle {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        padding: 0 10px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 10px;
        row-gap: 8px;
        padding: 0 5px;
        width: 100%;
    }

    .footer-nav a {
        font-size: 13px;
        white-space: nowrap;
        padding: 4px 2px;
    }

    .footer-nav-divider {
        display: none;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 0 15px;
        width: 100%;
    }

    .footer-copyright span {
        font-size: 12px;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .footer-ellipse {
        display: none;
    }
}

@media (max-width: 360px) {
    .footer-cta .container {
        padding: 0 12px;
    }

    .footer-cta-card {
        padding: 25px 18px;
    }

    .footer-cta-title {
        font-size: 18px;
    }

    .footer-cta-description {
        font-size: 13px;
    }

    .footer-cta-button {
        padding: 11px 20px;
        font-size: 13px;
    }

    .footer-content {
        padding: 0 15px;
        gap: 20px;
    }

    .footer-logo-title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
    }

    .footer-logo-subtitle {
        font-size: 12px;
    }

    .footer-nav {
        gap: 6px 8px;
    }

    .footer-nav a {
        font-size: 12px;
    }

    .footer-copyright span {
        font-size: 11px;
    }
}

@media (max-width: 720px) {
    header .btn {
        display: none;
    }

    .hero {
        padding: 4rem 0 2.8rem;
    }

    .section {
        padding: 2.4rem 0;
    }

    .feature-highlight-grid {
        gap: 1rem;
    }

    .story-layout {
        gap: 1.4rem;
    }

    .story-image {
        min-height: 280px;
        border-radius: 24px;
    }

    .story-video {
        min-height: 200px;
        border-radius: 24px;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
    }

    .steps {
        border-radius: 36px 36px 0 0;
        padding: 3rem 0;
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .gallery-slider-wrapper {
        gap: 0.5rem;
    }

    .gallery-slider-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .gallery-slide {
        width: 200px;
        height: 200px;
    }
}

/* Camp Detail Page Styles */
.camp-detail-hero {
    background: var(--theme-bg);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(240, 246, 255, 0.2);
}


.camp-detail-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: flex-start;
}

.camp-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.camp-eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin: 0;
    width: fit-content;
}

.camp-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: #fff !important;
    line-height: 1.2;
    font-weight: 700;
}

.camp-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.camp-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.camp-meta-item i {
    color: #fff;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.camp-meta-item strong {
    color: #fff;
    font-weight: 600;
    margin-right: 0.5rem;
}

.camp-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}

.camp-actions-primary,
.camp-actions-secondary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.camp-action-form {
    margin: 0;
    display: flex;
}

.camp-action-form button {
    width: 100%;
}

.btn-action-primary,
.btn-action-secondary,
.btn-action-success,
.btn-action-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-action-primary {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    border-color: var(--theme-accent-dark);
    color: #fff;
}

.btn-action-primary:hover,
.btn-action-primary:focus {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    border-color: var(--theme-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.4);
}

.btn-action-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.btn-action-secondary:hover,
.btn-action-secondary:focus {
    background: #5a6268;
    border-color: #5a6268;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.btn-action-success {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.btn-action-success:hover,
.btn-action-success:focus {
    background: #218838;
    border-color: #218838;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.btn-action-warning {
    background: #ffc107;
    border-color: #ffc107;
    color: #212529;
}

.btn-action-warning:hover,
.btn-action-warning:focus {
    background: #e0a800;
    border-color: #e0a800;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.btn-action-primary i,
.btn-action-secondary i,
.btn-action-success i,
.btn-action-warning i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .camp-detail-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .camp-detail-actions {
        min-width: 100%;
    }

    .camp-actions-primary,
    .camp-actions-secondary {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .camp-actions-primary .btn,
    .camp-actions-secondary .btn,
    .camp-action-form {
        flex: 1;
        min-width: 200px;
    }
}


.camp-detail-metrics {
    background: var(--theme-surface-light);
    padding: 2rem 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--theme-surface-light);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #f3dfc4;
    text-align: center;
    box-shadow: 0 20px 40px rgba(214, 184, 143, 0.15);
}

.metric-card p {
    margin: 0;
    color: var(--theme-bg-dark);
}

.metric-card strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 2.1rem;
    color: var(--theme-bg-dark);
}

.camp-detail-body {
    padding: 2rem 0 4rem;
    background: var(--theme-surface-light);
}

.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.col-12 {
    grid-column: span 12;
}

.col-md-6 {
    grid-column: span 12;
}

@media (min-width: 768px) {
    .col-md-6 {
        grid-column: span 6;
    }
}

.panel {
    background: var(--theme-surface-light);
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid rgba(50, 62, 113, 0.2);
}

.panel h2 {
    margin-top: 0;
    color: var(--theme-bg-dark);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.panel-header h2 {
    margin: 0;
    color: var(--theme-bg-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.panel-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.panel-view-all-link:hover,
.panel-view-all-link:focus {
    background: rgba(50, 62, 113, 0.1);
    color: var(--theme-accent-dark);
    transform: translateX(2px);
}

.panel-view-all-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.panel-view-all-link:hover i,
.panel-view-all-link:focus i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .panel-header h2 {
        font-size: 1.25rem;
    }

    .panel-view-all-link {
        align-self: flex-end;
    }
}

.detail-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.detail-list dt {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--theme-bg-dark);
    margin-bottom: 0.25rem;
}

.detail-list dd {
    margin: 0;
    font-size: 1.1rem;
    color: var(--theme-bg-dark);
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(50, 62, 113, 0.2);
}

.list li:last-child {
    border-bottom: none;
}

.list strong {
    color: var(--theme-bg-dark);
}

.list p {
    margin: 0.25rem 0 0;
    color: var(--theme-bg-dark);
}

.list-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.list span {
    color: var(--theme-bg-dark);
    white-space: nowrap;
    font-size: 0.85rem;
}

.btn-view-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(50, 62, 113, 0.95) 0%, rgba(50, 62, 113, 0.95) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(50, 62, 113, 0.3);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(50, 62, 113, 0.25);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-view-detail:hover {
    background: linear-gradient(135deg, rgba(50, 62, 113, 1) 0%, rgba(50, 62, 113, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.35);
    border-color: rgba(50, 62, 113, 0.5);
}

.btn-view-detail:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(50, 62, 113, 0.25);
}

.empty-state {
    color: var(--theme-accent);
    margin: 0;
}

/* Registrations Page Styles */
.registrations-hero {
    background: linear-gradient(135deg, #fef7ec 0%, #fff9f5 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(50, 62, 113, 0.2);
}

.registrations-hero-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: flex-start;
}

.registrations-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.registrations-eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(50, 62, 113, 0.15);
    color: var(--theme-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin: 0;
    width: fit-content;
}

.registrations-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--theme-bg-dark);
    line-height: 1.2;
    font-weight: 700;
}

.registrations-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--theme-bg-dark);
    font-size: 0.95rem;
}

.registrations-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.registrations-meta-item i {
    color: var(--theme-accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.registrations-meta-separator {
    color: rgba(50, 62, 113, 0.5);
    font-weight: 300;
}

.registrations-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 240px;
}

.btn-registration-outline,
.btn-registration-secondary,
.btn-registration-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-registration-outline {
    background: transparent;
    border-color: var(--theme-accent);
    color: var(--theme-accent);
}

.btn-registration-outline:hover,
.btn-registration-outline:focus {
    background: var(--theme-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.3);
}

.btn-registration-secondary {
    background: var(--theme-bg-light);
    border-color: var(--theme-bg-dark);
    color: #fff;
}

.btn-registration-secondary:hover,
.btn-registration-secondary:focus {
    background: var(--theme-bg-light);
    border-color: var(--theme-bg-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.4);
}

.btn-registration-primary {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    border-color: var(--theme-accent-dark);
    color: #fff;
}

.btn-registration-primary:hover,
.btn-registration-primary:focus {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    border-color: var(--theme-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.4);
}

.btn-registration-outline i,
.btn-registration-secondary i,
.btn-registration-primary i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .registrations-hero-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .registrations-hero-actions {
        min-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-registration-outline,
    .btn-registration-secondary,
    .btn-registration-primary {
        flex: 1;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .registrations-hero {
        padding: 2rem 0;
    }

    .registrations-hero-header {
        gap: 1.5rem;
    }

    .registrations-hero-info {
        gap: 1rem;
    }

    .registrations-title {
        font-size: clamp(1.75rem, 5vw, 2.2rem);
    }

    .registrations-meta {
        font-size: 0.875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .registrations-meta-separator {
        display: none;
    }

    .registrations-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-registration-outline,
    .btn-registration-secondary,
    .btn-registration-primary {
        width: 100%;
        min-width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .registrations-hero {
        padding: 1.5rem 0;
    }

    .registrations-eyebrow {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }

    .registrations-title {
        font-size: 1.5rem;
    }

    .registrations-meta-item {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .registrations-meta-item i {
        font-size: 0.85rem;
    }
}

.registrations-list {
    background: var(--theme-surface);
    padding: 2rem 0 4rem;
}

.registrations-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.registration-row {
    background: var(--theme-surface-light);
    border-radius: 12px;
    border: 1px solid rgba(50, 62, 113, 0.15);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.registration-row:hover {
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.15);
}

.registration-row-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.registration-info strong {
    color: var(--theme-bg-dark);
    font-size: 1.05rem;
}

.registration-info span {
    color: var(--theme-bg-dark);
    font-size: 0.9rem;
}

.btn-view-detail.active {
    background: linear-gradient(135deg, rgba(50, 62, 113, 1) 0%, rgba(50, 62, 113, 1) 100%);
    box-shadow: 0 3px 8px rgba(50, 62, 113, 0.3);
    border-color: rgba(50, 62, 113, 0.4);
}

.registration-details {
    border-top: 1px solid rgba(50, 62, 113, 0.1);
    padding: 1.5rem;
    background: var(--theme-surface-light);
    animation: slideDown 0.3s ease;
}

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

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

.detail-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--theme-accent);
    margin: 0;
    font-weight: 600;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.detail-content p {
    margin: 0;
    color: var(--theme-bg-dark);
    font-size: 0.95rem;
}

.detail-content strong {
    color: var(--theme-bg-dark);
    font-weight: 600;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.family-card {
    border: 1px solid rgba(50, 62, 113, 0.15);
    border-radius: 12px;
    padding: 1rem;
    background: var(--theme-surface-light);
}

.family-card strong {
    display: block;
    color: var(--theme-bg-dark);
    margin-bottom: 0.35rem;
}

.family-card span {
    display: block;
    color: var(--theme-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.family-card p {
    margin: 0.25rem 0;
    color: var(--theme-bg-dark);
    font-size: 0.9rem;
}

.pagination-wrapper {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .camp-detail-header {
        flex-direction: column;
    }

    .camp-detail-actions {
        width: 100%;
    }

    .row {
        gap: 1.5rem;
    }

    .list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .list-actions {
        width: 100%;
        justify-content: space-between;
    }


    .registration-row-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .registration-info {
        width: 100%;
    }

    .btn-view-detail {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1.2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .registration-details {
        padding: 1.25rem 1rem;
    }

    .detail-section {
        gap: 0.4rem;
    }

    .label {
        font-size: 0.8rem;
    }

    .detail-content {
        gap: 0.35rem;
    }

    .detail-content p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
        margin: 0;
    }

    .detail-content strong {
        display: inline-block;
        min-width: 80px;
        margin-right: 0.25rem;
    }

    .detail-content p span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline;
    }

    .family-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .family-card {
        padding: 0.875rem;
    }

    .family-card strong {
        font-size: 0.95rem;
    }

    .family-card span {
        font-size: 0.85rem;
    }

    .family-card p {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .registration-row-main {
        padding: 1rem;
    }

    .registration-info strong {
        font-size: 1rem;
    }

    .registration-info span {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .registrations-list {
        padding: 1.5rem 0 3rem;
    }

    .registration-row {
        border-radius: 10px;
    }

    .registration-row-main {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .registration-info {
        gap: 0.3rem;
    }

    .registration-info strong {
        font-size: 0.95rem;
    }

    .registration-info span {
        font-size: 0.8rem;
    }

    .btn-view-detail {
        font-size: 0.8rem;
        padding: 0.55rem 1rem;
    }

    .registration-details {
        padding: 1rem 0.875rem;
    }

    .details-grid {
        gap: 1rem;
    }

    .detail-section {
        gap: 0.35rem;
    }

    .label {
        font-size: 0.75rem;
    }

    .detail-content p {
        font-size: 0.85rem;
    }

    .detail-content strong {
        min-width: 70px;
        font-size: 0.85rem;
    }

    .family-card {
        padding: 0.75rem;
        border-radius: 10px;
    }

    .family-card strong {
        font-size: 0.9rem;
    }

    .family-card span {
        font-size: 0.8rem;
    }

    .family-card p {
        font-size: 0.8rem;
    }
}

/* Organiser Steps Design - Based on Figma */
.organizer-hero {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg-dark) 100%);
    padding: 2.5rem 0;
}

.organizer-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    align-items: center;
}

@media (min-width: 1401px) {
    .organizer-hero .container {
        max-width: 1200px;
        width: min(1200px, 95vw);
    }
}

.organizer-hero-top .pill-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: var(--theme-accent);
    color: var(--theme-accent);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.organizer-hero-top h1 {
    margin: 0.6rem 0 0;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--theme-bg-dark);
    line-height: 1.2;
}

.organizer-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    width: 100%;
    min-width: 1100px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.organizer-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: 150px;
    position: relative;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    flex-shrink: 0;
}

.step-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.organizer-step.is-active .step-badge {
    background: var(--theme-bg);
    color: #fff;
}

.organizer-step.is-complete .step-badge,
.organizer-step.is-upcoming .step-badge {
    background: var(--theme-surface-light);
    border: 1px solid var(--theme-bg-dark);
    color: var(--theme-bg-dark);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: 76px;
    text-align: center;
}

.organizer-step h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1;
    height: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-step.is-active h3 {
    color: var(--theme-bg-dark);
}

.organizer-step.is-complete h3,
.organizer-step.is-upcoming h3 {
    color: #000;
}

.organizer-step.is-active p {
    color: var(--theme-bg-dark);
}

.organizer-step.is-complete p,
.organizer-step.is-upcoming p {
    color: #000;
}

.organizer-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    /* color: var(--theme-bg-dark); */
    height: 42px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector {
    position: absolute;
    top: 27px;
    left: 100%;
    width: 138px;
    height: 1px;
    background: var(--theme-surface-dark);
    z-index: 0;
}

.organizer-step:last-child .step-connector {
    display: none;
}

@media (max-width: 1400px) {
    .organizer-steps {
        min-width: auto;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .organizer-step {
        width: 100%;
        min-width: auto;
        max-width: 283px;
    }

    .step-content {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .organizer-steps {
        flex-direction: column;
        align-items: center;
    }

    .organizer-step {
        width: 100%;
        max-width: 350px;
    }

    .form-grid.two,
    .form-grid.three {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .organizer-form input[type="date"],
    .organizer-form input[type="time"],
    .organizer-form input[type="datetime-local"] {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.9rem 1rem;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
    }

    .organizer-form input[type="date"]::-webkit-calendar-picker-indicator,
    .organizer-form input[type="time"]::-webkit-calendar-picker-indicator,
    .organizer-form input[type="datetime-local"]::-webkit-calendar-picker-indicator {
        width: 24px;
        height: 24px;
        padding: 0.25rem;
        cursor: pointer;
        opacity: 0.7;
    }

    .organizer-form input[type="date"]::-webkit-inner-spin-button,
    .organizer-form input[type="time"]::-webkit-inner-spin-button,
    .organizer-form input[type="datetime-local"]::-webkit-inner-spin-button {
        width: 20px;
        height: 20px;
    }

    .organizer-form input {
        font-size: 1rem;
        min-height: 48px;
    }

    .organizer-form select,
    .organizer-form .form-control {
        font-size: 1rem;
        min-height: 48px;
        padding: 0.9rem 1rem;
        padding-right: 2.5rem;
    }

    .organizer-form label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .organizer-form input[type="date"],
    .organizer-form input[type="time"],
    .organizer-form input[type="datetime-local"] {
        min-height: 52px;
        font-size: 1.05rem;
        padding: 1rem 1.1rem;
    }

    .organizer-form input {
        min-height: 52px;
        font-size: 1.05rem;
        padding: 1rem 1.1rem;
    }

    .organizer-form select,
    .organizer-form .form-control {
        min-height: 52px;
        font-size: 1.05rem;
        padding: 1rem 1.1rem;
        padding-right: 2.75rem;
    }

    .organizer-form input[type="date"]::-webkit-calendar-picker-indicator,
    .organizer-form input[type="time"]::-webkit-calendar-picker-indicator,
    .organizer-form input[type="datetime-local"]::-webkit-calendar-picker-indicator {
        width: 28px;
        height: 28px;
        padding: 0.3rem;
    }

    .form-grid {
        gap: 0.875rem;
    }
}

/* Materials Section Styles */
.organizer-materials-section {
    background: #fdfaf6;
    padding: 4rem 0 5rem;
}

.organizer-materials-card {
    background: var(--theme-surface-light);
    border-radius: 30px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 30px 70px rgba(50, 62, 113, 0.25);
}

.organizer-materials-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.organizer-materials-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--theme-accent);
    margin-bottom: 0.75rem;
}

.success-message {
    background: rgba(91, 189, 112, 0.14);
    border: 1px solid rgba(91, 189, 112, 0.35);
    color: #2b703b;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    display: inline-block;
}

.camp-summary-card {
    background: #fff9ee;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #fde0b2;
    margin-bottom: 2.5rem;
}

.camp-summary-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--theme-accent);
}

.camp-summary-grid {
    display: grid;
    gap: 1.35rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.camp-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.camp-summary-item .label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--theme-bg-dark);
    font-weight: 600;
}

.camp-summary-item .value {
    font-size: 1.1rem;
    color: var(--theme-accent);
    font-weight: 600;
}

.materials-section h3 {
    font-size: 1.6rem;
    color: var(--theme-accent);
    margin-bottom: 0.5rem;
}

.materials-section p {
    color: var(--theme-bg-dark);
    margin-bottom: 2rem;
}

.materials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.material-card {
    background: var(--theme-surface-light);
    border-radius: 22px;
    padding: 1.8rem;
    border: 1px solid rgba(50, 62, 113, 0.4);
    box-shadow: 0 16px 35px rgba(50, 62, 113, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.material-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(50, 62, 113, 0.32);
}

.material-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    display: grid;
    place-items: center;
}

.material-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4H13L17 8V20C17 20.5304 16.7893 21.0391 16.4142 21.4142C16.0391 21.7893 15.5304 22 15 22H7C6.46957 22 5.96086 21.7893 5.58579 21.4142C5.21071 21.0391 5 20.5304 5 20V6C5 5.46957 5.21071 4.96086 5.58579 4.58579C5.96086 4.21071 6.46957 4 7 4ZM13 9H16L13 6V9Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.material-card h4 {
    margin: 0;
    color: var(--theme-accent);
    font-size: 1.1rem;
}

.material-card p {
    color: var(--theme-bg-dark);
    margin: 0;
    flex-grow: 1;
    font-size: 0.95rem;
}

.material-card .btn {
    align-self: flex-start;
    padding-inline: 1.5rem;
}

.materials-note {
    background: var(--theme-surface-light);
    border-left: 4px solid var(--theme-accent);
    padding: 1.5rem;
    border-radius: 18px;
    color: var(--theme-bg-dark);
    margin: 2.5rem 0;
    line-height: 1.6;
}

.organizer-materials-actions {
    text-align: center;
}

.organizer-materials-actions .btn {
    padding: 0.9rem 2.8rem;
    font-size: 1rem;
}

/* Registration Section Styles */
.registration-section {
    background: #fdfaf6;
    padding: 4rem 0 5rem;
}

.registration-card {
    background: var(--theme-surface-light);
    border-radius: 30px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 30px 70px rgba(209, 171, 129, 0.25);
}

.registration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.registration-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--theme-accent);
    margin-bottom: 0.5rem;
}

.registration-header p {
    color: #7a5230;
    margin: 0;
}

.registration-body {
    background: var(--theme-surface-light);
    border-radius: 24px;
    border: 1px solid var(--theme-bg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.registration-intro h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--theme-accent);
}

.registration-intro p {
    color: var(--theme-bg-dark);
    margin: 0.75rem 0 1.75rem;
}

.camp-info-card {
    background: var(--theme-surface-light);
    border-radius: 20px;
    border: 1px solid var(--theme-bg);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.camp-info-card h4 {
    margin: 0 0 1.25rem;
    font-size: 1.1rem;
    color: var(--theme-bg-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.camp-info-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.camp-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.camp-info-item .label {
    font-size: 0.82rem;
    color: var(--theme-bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.camp-info-item .value {
    font-size: 1.1rem;
    color: var(--theme-accent);
    font-weight: 600;
}

.registration-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.registration-actions {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-edit-registration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(50, 62, 113, 0.9) 0%, rgba(50, 62, 113, 0.9) 100%);
    color: #fff;
    border: 1px solid rgba(50, 62, 113, 0.3);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(50, 62, 113, 0.25);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-edit-registration:hover {
    background: linear-gradient(135deg, rgba(50, 62, 113, 1) 0%, rgba(50, 62, 113, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.35);
    border-color: rgba(50, 62, 113, 0.5);
    color: #fff;
}

.btn-edit-registration:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(50, 62, 113, 0.25);
}

.btn-edit-registration i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .registration-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-view-detail,
    .btn-edit-registration {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1.2rem;
    }
}

.registration-actions .btn {
    padding: 0.9rem 2.8rem;
    font-size: 1rem;
}

.registration-hint {
    margin-top: 1rem;
    color: var(--theme-bg-dark);
}

.registration-status-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--theme-surface-light);
    border: 1px solid #a2d8ab;
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    text-align: left;
    margin-bottom: 2rem;
}

.registration-status-card > div:last-child {
    flex: 1;
}

.registration-status-card h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #2f7d3a;
}

.registration-status-card p {
    margin: 0.4rem 0 0;
    color: #377f45;
}

.status-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4caf6f 0%, #3c945b 100%);
    display: grid;
    place-items: center;
}

.check-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.285 5.70801L9 17.001L3.71484 11.708L5.12891 10.294L9 14.165L18.8711 4.29401L20.285 5.70801Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.registration-link-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Edit Registration Modal */
.edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.edit-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.edit-modal-dialog {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 2rem auto;
    z-index: 9999;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.edit-modal-content {
    background: var(--theme-surface-light);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

.edit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.edit-modal-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--theme-bg-dark);
    font-weight: 600;
}

.edit-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--theme-bg-dark);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.edit-modal-close:hover {
    background: var(--theme-surface-light);
}

.edit-modal-body {
    padding: 0;
    overflow-y: auto;
    flex: 1 1 auto;
    background: var(--theme-surface);
    min-height: 300px;
    max-height: calc(90vh - 200px);
}

.edit-modal-body > #editFormContent {
    padding: 1.5rem;
    min-height: 100%;
}

.edit-modal-body .camp-registration-form {
    background: var(--theme-surface-light);
    border-radius: 28px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 20px 60px rgba(50, 62, 113, 0.2);
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.edit-modal-body .camp-registration-form .form-section {
    margin-bottom: 1.5rem;
}

.edit-modal-body .camp-registration-form .form-section:last-child {
    margin-bottom: 0;
}

.edit-modal-body .camp-registration-form .btn-success,
.edit-modal-body .camp-registration-form .add-family-member {
    background: var(--theme-accent);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.edit-modal-body .camp-registration-form .btn-success:hover,
.edit-modal-body .camp-registration-form .add-family-member:hover {
    background: var(--theme-accent-dark);
}

.edit-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
    flex-shrink: 0;
    background: var(--theme-surface-light);
    border-radius: 0 0 12px 12px;
    position: relative;
    z-index: 10;
}

.edit-modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    white-space: nowrap;
    min-width: 120px;
}

.edit-modal-footer .btn-secondary {
    background: var(--theme-bg-dark);
    color: #fff;
}

.edit-modal-footer .btn-secondary:hover {
    background: var(--theme-bg-dark);
}

.edit-modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    border-color: var(--theme-accent-dark);
    color: #fff;
}

.edit-modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    border-color: var(--theme-accent-dark);
}

/* Large Modal Spinner */
.edit-modal-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    border: 6px solid var(--theme-accent);
    border-radius: 50%;
    animation: spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--theme-accent) transparent transparent transparent;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
}

.spinner-ring:nth-child(4) {
    animation-delay: 0s;
}

@keyframes spinner-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner-text {
    color: #7a5230;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Legacy spinner for backward compatibility */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--theme-surface-light);
    border-top: 4px solid var(--theme-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .edit-modal-dialog {
        width: 95%;
        margin: 1rem auto;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
    }

    .edit-modal-content {
        max-height: none;
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }

    .edit-modal-header {
        padding: 1rem;
        flex-shrink: 0;
        position: relative;
    }

    .edit-modal-body {
        max-height: none;
        overflow-y: visible;
        flex: 1 1 auto;
        min-height: auto;
    }

    .edit-modal-body > #editFormContent {
        padding: 1rem;
    }

    .edit-modal-footer {
        padding: 0.75rem 1rem;
        flex-shrink: 0;
        flex-direction: row;
        gap: 0.5rem;
        display: flex;
        position: relative;
        background: var(--theme-surface-light);
        border-top: 1px solid #e5e5e5;
        justify-content: space-between;
    }

    .edit-modal-footer .btn {
        flex: 1;
        min-width: 0;
        max-width: none;
        box-sizing: border-box;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        display: inline-block;
    }

    .edit-modal-footer .btn-primary,
    .edit-modal-footer .btn-secondary {
        flex: 1;
        min-width: 0;
        max-width: none;
        box-sizing: border-box;
        display: inline-block;
    }

    .edit-modal-title {
        font-size: 1.25rem;
    }

    .edit-modal-body .camp-registration-form {
        padding: 1.25rem;
    }

    .edit-modal-spinner {
        width: 60px;
        height: 60px;
    }

    .spinner-ring {
        width: 60px;
        height: 60px;
        border-width: 5px;
    }
}

.registration-link-group input {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--theme-bg);
    background: var(--theme-surface-light);
    /* color: var(--theme-bg-dark); */
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-link-group input:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 3px rgba(50, 62, 113, 0.18);
}

.copy-link-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.copy-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66667 14.1667C6.08333 14.1667 5.59083 13.9721 5.18917 13.583C4.7875 13.194 4.58667 12.7292 4.58667 12.1887V3.81133C4.58667 3.27078 4.7875 2.80589 5.18917 2.41667C5.59083 2.02778 6.08333 1.83333 6.66667 1.83333H13.3333C13.9167 1.83333 14.4092 2.02778 14.8108 2.41667C15.2125 2.80589 15.4133 3.27078 15.4133 3.81133V4.58333H13.3333V3.81133H6.66667V12.1887H13.3333V11.4167H15.4133V12.1887C15.4133 12.7292 15.2125 13.194 14.8108 13.583C14.4092 13.9721 13.9167 14.1667 13.3333 14.1667H6.66667ZM15.8333 15.8333L11.25 11.25L12.3925 10.1075L15 12.715V6.66667H16.6667V12.715L19.275 10.1075L20.4167 11.25L15.8333 15.8333Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.registration-expiry {
    color: var(--theme-bg-dark);
    margin-bottom: 2rem;    
}

.share-actions {
    margin-bottom: 2rem;
}

.share-actions h5 {
    margin-bottom: 1rem;
    color: var(--theme-bg-dark);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn.btn-outline {
    border: 1px solid var(--theme-surface-light);
    color: var(--theme-surface-light);
    background: transparent;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 600;
}

.btn.btn-outline:hover {
    background: var(--theme-bg-dark);
    color: #fff;
}

.btn.btn-share-email,
.btn.btn-share-link {
    border: 1px solid var(--theme-accent);
    color: var(--theme-bg-dark);
    background: var(--theme-surface-light);
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn.btn-share-email:hover,
.btn.btn-share-link:hover {
    background: var(--theme-accent);
    color: #fff;
    border-color: var(--theme-accent);
}

.btn.btn-share-link.is-copied {
    background: var(--theme-accent);
    border-color: #4caf6f;
    color: #fff;
}

.copy-link-btn.is-copied {
    background: linear-gradient(135deg, var(--theme-accent) 0%, var(--theme-bg-dark) 100%);
}

.btn.btn-outline.is-copied {
    background: var(--theme-accent);
    color: #fff;
}

.registration-next-steps {
    text-align: left;
    background: var(--theme-surface-light);
    border-radius: 18px;
    border: 1px solid var(--theme-bg);
    padding: 1.75rem;
    margin-bottom: 2.5rem;
}

.registration-next-steps h5 {
    margin-top: 0;
    color: var(--theme-bg-dark);
    margin-bottom: 1rem;
}

.registration-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-next-steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--theme-bg-dark);
    margin-bottom: 0.7rem;
}

.registration-next-steps li::before {
    content: '✔';
    color: #4caf6f;
    font-weight: 700;
}

.registration-dashboard-action {
    text-align: center;
    margin-top: 1rem;
}

.registration-dashboard-action .btn {
    padding: 0.95rem 2.8rem;
}

.registration-link-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.registration-link-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.registration-link-form .btn {
    padding: 0.95rem 2.8rem;
    font-size: 1rem;
}

.btn.btn-secondary {
    background: var(--theme-bg-dark);   
    color: #fff;
    border: none;
}

.btn.btn-secondary:hover {
    background: var(--theme-bg-dark);
}


@media (max-width: 768px) {
    .organizer-step {
        grid-column: span 12;
    }

    .camp-summary-card {
        padding: 1.5rem;
    }

    .organizer-materials-card {
        padding: 2rem;
    }

    .registration-card {
        padding: 2rem;
    }

    .camp-info-card {
        padding: 1.5rem;
    }

    .registration-link-group {
        flex-direction: column;
        align-items: stretch;
    }

    .copy-link-btn {
        width: 100%;
        height: 48px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .btn.btn-share-email,
    .btn.btn-share-link {
        width: 100%;
    }

    .registration-actions-wrapper {
        gap: 1.5rem;
    }
}

/* Resources Category Page Styles */
.resources-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('../img/resources page Section 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.resources-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.resources-hero-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.resources-hero-title {
    font-size: 50px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.resources-hero-subtitle {
    font-size: 50px;
    line-height: 1;
    font-weight: 400;
    color: var(--theme-accent);
    margin: 0;
}

.resources-hero-description {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    max-width: 800px;
}

.resources-hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--theme-accent);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--theme-accent-dark);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--theme-surface-light);
    color: var(--theme-surface);
}

.resources-category-section {
    padding: 50px 0;
    background: var(--theme-surface-light);
}

.resources-category-header {
    margin-bottom: 40px;
    text-align: left;
}

.resources-category-title {
    font-size: 45px;
    line-height: 1;
    font-weight: 400;
    color: #151414;
    margin: 0 0 8px 0;
}

.resources-category-description {
    font-size: 16px;
    line-height: 1.5;
    color: #606060;
    margin: 0;
}

.resources-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-category-card {
    background: var(--theme-surface);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-category-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin: 8px;
    border-radius: 12px;
}

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

.resource-category-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.resource-category-name {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--theme-surface);
    margin: 0;
}

.resource-category-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 1;
    color: #606060;
}

.resource-meta-item {
    color: #606060;
}

.resource-meta-separator {
    color: #606060;
}

@media (max-width: 1400px) {
    .resources-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .resources-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-hero-title,
    .resources-hero-subtitle {
        font-size: 40px;
    }

    .resources-category-title {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .resources-category-grid {
        grid-template-columns: 1fr;
    }

    .resources-hero {
        height: 350px;
    }

    .resources-hero-title,
    .resources-hero-subtitle {
        font-size: 32px;
    }

    .resources-hero-description {
        font-size: 14px;
    }

    .resources-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline-white {
        width: 100%;
        max-width: 250px;
        font-size: 14px;
        padding: 8px 16px;
    }

    .resources-category-title {
        font-size: 28px;
    }

    .resources-category-description {
        font-size: 14px;
    }

    .resource-category-name {
        font-size: 18px;
    }

    .resources-category-section {
        padding: 30px 0;
    }

    .resources-category-header {
        margin-bottom: 30px;
    }
}

/* Resources Details Page Styles */
.resources-details-section {
    padding: 50px 0;
    background: var(--theme-surface-light);
}

.resources-details-block {
    margin-bottom: 60px;
}

.resources-details-block:last-child {
    margin-bottom: 0;
}

.resources-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.resources-details-title {
    font-size: 45px;
    line-height: 1;
    font-weight: 400;
    color: #151414;
    margin: 0 0 10px 0;
}

.resources-details-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #606060;
    margin-top: 10px;
}

.resources-download-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
}

.resources-download-all:hover {
    color: var(--theme-accent-dark);
}

.resources-download-all svg {
    width: 20px;
    height: 20px;
}

.resources-documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resource-document-card {
    background: var(--theme-surface-light);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.resource-document-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #3567d6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-icon span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.document-info {
    flex: 1;
    min-width: 0;
}

.document-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #151414;
    margin: 0;
    word-break: break-word;
}

.document-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #606060;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.document-download:hover {
    background: var(--theme-surface);
    color: var(--theme-accent);
}

.document-download svg {
    width: 20px;
    height: 20px;
}

.resources-templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-template-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.template-preview {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    position: relative;
}

.template-preview.template-banner {
    height: 200px;
}

.template-preview-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.template-preview-1 {
    background: linear-gradient(135deg, var(--theme-accent) 0%, var(--theme-accent-light) 100%);
    color: #ffffff;
}

.template-preview-2 {
    background: #3567d6;
    color: #ffffff;
}

.template-preview-3 {
    background: var(--theme-accent);
    color: #ffffff;
}

.template-preview-4 {
    background: var(--theme-accent);
    color: #ffffff;
}

.template-date {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.template-title-large {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.template-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.template-details-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.template-button {
    background: var(--theme-surface-light);
    color: var(--theme-accent);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    width: fit-content;
}

.template-studio {
    font-size: 10px;
    font-weight: 500;
    text-align: right;
    margin-bottom: auto;
}

.template-title-creative {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
    line-height: 1.2;
}

.template-photos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.template-photo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.template-soccer-icon {
    font-size: 24px;
    text-align: right;
    margin-bottom: auto;
}

.template-title-game {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 20px 0 10px;
    line-height: 1.2;
}

.template-date-small {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.template-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.template-name {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: #151414;
    margin: 0;
}

.template-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #606060;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.template-download:hover {
    background: var(--theme-surface);
    color: var(--theme-accent);
}

.template-download svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .resources-documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-details-title {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .resources-details-section {
        padding: 30px 0;
    }

    .story-video {
        min-height: 200px;
        border-radius: 20px;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
        width: 100%;
    }

    .video-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
    }

    .story-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .story-cta-group .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .resources-details-block {
        margin-bottom: 40px;
    }

    .resources-details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .resources-download-all {
        position: static;
    }

    .resources-details-title {
        font-size: 28px;
    }

    .resources-details-subtitle {
        font-size: 16px;
    }

    .resources-documents-grid {
        grid-template-columns: 1fr;
    }

    .resources-templates-grid {
        grid-template-columns: 1fr;
    }

    .template-preview {
        height: 250px;
    }

    .template-preview.template-banner {
        height: 180px;
    }

    .template-title-large {
        font-size: 24px;
    }

    .template-title-creative {
        font-size: 20px;
    }

    .template-title-game {
        font-size: 28px;
    }
}

/* Camp Show Page - Registration Link and Feedback Forms */
/* Registration Link Panel */
.registration-link-panel {
    background: linear-gradient(135deg, var(--theme-surface-light) 0%, var(--theme-bg) 100%);
    border: 2px solid var(--theme-accent-light);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(50, 62, 113, 0.15);
}

.panel-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.panel-content {
    flex: 1;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-bg-dark);
    margin: 0 0 0.5rem 0;
}

.panel-description {
    color: var(--theme-bg-dark);
    margin: 0 0 1.25rem 0;
    font-size: 0.95rem;
}

.link-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.link-input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1rem;
    border: 2px solid var(--theme-bg);
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--theme-surface-light);
    color: var(--theme-bg-dark);
    transition: all 0.3s ease;
}

.link-input:focus {
    outline: none;
    border-color: var(--theme-accent-light);
    box-shadow: 0 0 0 3px rgba(50, 62, 113, 0.1);
}

.btn-copy {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Section Titles */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-bg-dark);
    margin: 0 0 0.5rem 0;
}

.section-subtitle {
    color: var(--theme-bg-dark);
    font-size: 1rem;
    margin: 0;
}

/* Feedback Panels */
.feedback-panel {
    background: var(--theme-surface-light);
    border: 2px solid var(--theme-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feedback-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-bg), var(--theme-bg));
    transition: all 0.3s ease;
}

.feedback-panel:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.feedback-panel-participant {
        border-color: var(--theme-accent);
}

.feedback-panel-participant::before {
    background: linear-gradient(90deg, var(--theme-accent), var(--theme-accent));
}

.feedback-panel-participant:hover {
    border-color: var(--theme-bg-dark);
}

.feedback-panel-coordinator {
    border-color: var(--theme-bg-dark);
}

.feedback-panel-coordinator::before {
    background: linear-gradient(90deg, var(--theme-accent-dark), var(--theme-accent-dark));
}

.feedback-panel-coordinator:hover {
    border-color: var(--theme-accent-dark);
}

.feedback-panel-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feedback-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feedback-panel:hover .feedback-icon-wrapper {
    transform: scale(1.05);
}

.feedback-icon-participant {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg-dark) 100%);
    color: #fff;
}

.feedback-icon-coordinator {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg-dark) 100%);
    color: #fff;
}

.feedback-icon-wrapper i {
    font-size: 1.5rem;
}

.feedback-title-wrapper {
    flex: 1;
    min-width: 0;
}

.feedback-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--theme-bg-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.feedback-description {
    color: var(--theme-bg-dark);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.feedback-link-section {
    margin-bottom: 2rem;
}

.feedback-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--theme-bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.feedback-link-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.feedback-input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1rem;
    border: 2px solid var(--theme-bg);
    border-radius: 10px;
    font-size: 0.9rem;
    background: var(--theme-surface-light);
    color: var(--theme-bg-dark);
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.feedback-input:focus {
    outline: none;
    border-color: var(--theme-accent);
    background: var(--theme-surface-light);
    box-shadow: 0 0 0 3px rgba(50, 62, 113, 0.1);
}

.btn-feedback-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--theme-bg) 0%, var(--theme-bg) 100%);
    border: 2px solid var(--theme-accent-dark);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-feedback-copy:hover,
.btn-feedback-copy:focus {
    background: linear-gradient(135deg, var(--theme-bg-dark) 0%, var(--theme-bg-dark) 100%);
    border-color: var(--theme-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.3);
}

.btn-feedback-copy i {
    font-size: 0.875rem;
}

/* QR Code Section */
.qr-code-section {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 2px solid var(--theme-bg);
    text-align: center;
}

.qr-code-wrapper {
    display: inline-block;
    padding: 1.25rem;
    background: var(--theme-surface-light);
    border-radius: 16px;
    border: 2px solid var(--theme-bg);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-panel:hover .qr-code-wrapper {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.qr-code-wrapper svg {
    display: block;
}

.btn-download-qr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--theme-bg-dark);
    color: var(--theme-bg-dark);
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download-qr:hover,
.btn-download-qr:focus {
    background: var(--theme-bg-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.3);
}

.btn-download-qr i {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .feedback-panel {
        padding: 1.5rem;
    }

    .feedback-panel-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .feedback-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .feedback-icon-wrapper i {
        font-size: 1.75rem;
    }

    .feedback-title {
        font-size: 1.25rem;
    }

    .feedback-description {
        font-size: 0.85rem;
    }

    .feedback-link-group {
        flex-direction: column;
    }

    .feedback-input {
        width: 100%;
        min-width: 100%;
    }

    .btn-feedback-copy {
        width: 100%;
        justify-content: center;
    }

    .qr-code-section {
        padding-top: 1.5rem;
    }

    .qr-code-wrapper {
        padding: 1rem;
    }

    .btn-download-qr {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feedback-panel {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .feedback-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .feedback-icon-wrapper i {
        font-size: 1.5rem;
    }

    .feedback-title {
        font-size: 1.1rem;
    }

    .feedback-label {
        font-size: 0.8rem;
    }

    .feedback-input {
        font-size: 0.85rem;
        padding: 0.75rem;
    }

    .btn-feedback-copy,
    .btn-download-qr {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--theme-bg-dark);
    color: var(--theme-bg-dark);
}

.btn-outline-secondary:hover {
    background: var(--theme-bg-dark);
    color: #fff;
}

/* Button Styles */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    color: #fff;
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.4);
}

.btn-success {
    background: #27ae60;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .registration-link-panel {
        flex-direction: column;
        padding: 1.5rem;
    }

    .panel-icon {
        font-size: 2rem;
    }

    .link-input-group {
        flex-direction: column;
    }

    .link-input {
        width: 100%;
        min-width: 100%;
    }

    .feedback-panel {
        padding: 1.5rem;
    }

    .feedback-link-group {
        flex-direction: column;
    }

    .feedback-input {
        width: 100%;
        min-width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.row.mt-4 {
    margin-top: 2.5rem !important;
}

.row.mt-3 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Resources List Page Styles */
.resources-list-section {
    padding: 50px 0;
    background: var(--theme-surface-light);
}

.resources-filters {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.filters-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.search-field {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-field input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-heading);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #606060;
}

.filter-group {
    min-width: 180px;
}

.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-heading);
    background: var(--theme-surface-light);
    cursor: pointer;
}

.btn-clear-filters {
    padding: 12px 20px;
    background: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.btn-clear-filters:hover {
    background: #c82333;
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 5px;
}

.results-count {
    font-size: 16px;
    color: #606060;
    font-weight: 500;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    padding: 10px 20px;
    background: var(--theme-surface-light);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-btn:hover {
    background: #f8f9fa;
    border-color: var(--theme-accent);
    color: var(--theme-accent);
}

.view-btn.active {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
    color: #ffffff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.resource-card {
    background: var(--theme-surface-light);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.resource-type-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #606060;
    font-weight: 500;
}

.resource-type-label i {
    color: var(--theme-accent);
    font-size: 16px;
}

.badge-planning {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    background: var(--theme-accent);
    color: #ffffff;
}

.resource-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.resource-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-bg);;
    margin: 0;
    line-height: 1.4;
}

.resource-card-description {
    font-size: 14px;
    color: #606060;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.resource-age-tag {
    margin: 5px 0;
}

.age-label {
    display: inline-block;
    padding: 4px 10px;
    background: var(--theme-surface);
    color: #606060;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.resource-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.keyword-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #FFF9C4;
    color: var(--theme-surface);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.resource-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-show-more,
.btn-view-details {
    flex: 1;
    padding: 8px 16px;
    background: var(--theme-surface-light);
    color: var(--theme-surface);
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-show-more:hover,
.btn-view-details:hover {
    background: #f8f9fa;
    border-color: var(--theme-accent);
    color: var(--theme-accent);
}

.btn-download-resource {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--theme-accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-download-resource:hover {
    background: var(--theme-accent-dark);
    color: #ffffff;
}

.btn-download-resource i {
    font-size: 14px;
}

/* List View Styles */
.resources-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resource-list-item {
    background: var(--theme-surface-light);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-list-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-bg);;
    margin: 0;
    line-height: 1.4;
}

.resource-list-description {
    font-size: 14px;
    color: #606060;
    margin: 0;
    line-height: 1.6;
}

.resource-list-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.resource-list-actions .btn-show-more,
.resource-list-actions .btn-view-details {
    flex: 0 1 auto;
    min-width: 120px;
}

.resource-list-actions .btn-download-resource {
    width: auto;
    min-width: 140px;
    margin-top: 0;
}

/* Camp List Page Styles */
.camp-list-hero {
    background: linear-gradient(135deg, var(--theme-bg) 0%, var(--theme-bg) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(50, 62, 113, 0.2);
}

.camp-list-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.camp-list-header .eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(50, 62, 113, 0.15);
    color: var(--theme-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin: 0 0 1rem 0;
}

.camp-list-header h1 {
    margin: 0 0 0.75rem 0;
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--theme-surface);
    line-height: 1.2;
    font-weight: 700;
}

.camp-list-header p {
    color: var(--theme-surface);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.camp-list-grid {
    background: var(--theme-surface);
    padding: 3rem 0 4rem;
}

.camp-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.camp-card {
    background: var(--theme-surface-light);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(50, 62, 113, 0.15);
    box-shadow: 0 2px 12px rgba(50, 62, 113, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.camp-card:hover {
    box-shadow: 0 4px 20px rgba(50, 62, 113, 0.12);
    transform: translateY(-2px);
    border-color: rgba(50, 62, 113, 0.25);
}

.camp-card-header {
    margin-bottom: 1.25rem;
}

.camp-card-title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--theme-surface);
    line-height: 1.4;
    font-weight: 700;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.camp-card-content {
    flex: 1;
    margin-bottom: 1.25rem;
}

.camp-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.camp-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #606060;
}

.camp-meta-item i {
    color: var(--theme-accent-dark);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.camp-card-actions {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(50, 62, 113, 0.1);
}

.btn-camp-view {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    border: none;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-camp-view:hover,
.btn-camp-view:focus {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(50, 63, 113, 0.3);
}

.camp-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #9a7a55;
    border: 2px dashed #e2c8a8;
    border-radius: 20px;
    background: var(--theme-surface-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.camp-empty-state i {
    font-size: 4rem;
    color: #d4a574;
    opacity: 0.6;
}

.camp-empty-state p {
    margin: 0;
    font-size: 1.1rem;
    color: #7a5230;
}

.camp-pagination-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.camp-pagination-wrapper nav[role="navigation"] {
    width: 100%;
    max-width: 100%;
}

/* Override all Tailwind styles in pagination */
.camp-pagination-wrapper nav * {
    font-family: var(--font-heading) !important;
}

/* Mobile Pagination */
.camp-pagination-wrapper nav > div:first-child {
    display: flex !important;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.camp-pagination-wrapper nav > div:first-child a,
.camp-pagination-wrapper nav > div:first-child span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem !important;
    border: 2px solid #e1d4c3 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: #7a5230 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    background: #fff !important;
    min-width: 120px;
    margin: 0 !important;
    cursor: pointer;
}

.camp-pagination-wrapper nav > div:first-child a:hover {
    background: var(--theme-accent) !important;
    border-color: var(--theme-accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3) !important;
}

.camp-pagination-wrapper nav > div:first-child span {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Desktop Pagination */
.camp-pagination-wrapper nav > div:last-child {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.camp-pagination-wrapper nav > div:last-child > div:first-child p {
    color: #7a5230 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.camp-pagination-wrapper nav > div:last-child > div:first-child p .font-medium {
    color: #4a311a !important;
    font-weight: 600 !important;
}

/* Pagination Links Container */
.camp-pagination-wrapper nav > div:last-child > div:last-child {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.camp-pagination-wrapper nav > div:last-child > div:last-child > * {
    margin: 0 !important;
    margin-left: 0 !important;
}

/* Pagination Links and Spans */
.camp-pagination-wrapper nav > div:last-child > div:last-child a,
.camp-pagination-wrapper nav > div:last-child > div:last-child span[aria-current] span,
.camp-pagination-wrapper nav > div:last-child > div:last-child span[aria-disabled] span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px !important;
    border: 2px solid #e1d4c3 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: #7a5230 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    background: #fff !important;
    margin: 0 !important;
    margin-left: 0 !important;
    box-shadow: none !important;
    border-left: 2px solid #e1d4c3 !important;
}

.camp-pagination-wrapper nav > div:last-child > div:last-child a:hover {
    background: var(--theme-accent) !important;
    border-color: var(--theme-accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3) !important;
    z-index: 1;
}

.camp-pagination-wrapper nav > div:last-child > div:last-child span[aria-current] span {
    background: linear-gradient(135deg, var(--theme-bg) 0%, var(--theme-accent-dark) 100%) !important;
    border-color: var(--theme-accent-dark) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(240, 160, 69, 0.3) !important;
}

.camp-pagination-wrapper nav > div:last-child > div:last-child span[aria-disabled] span {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5 !important;
}

.camp-pagination-wrapper nav svg {
    width: 16px !important;
    height: 16px !important;
}

@media (max-width: 640px) {
    .camp-pagination-wrapper nav > div:last-child {
        display: none !important;
    }

    .camp-pagination-wrapper nav > div:first-child {
        display: flex !important;
    }
}

@media (min-width: 641px) {
    .camp-pagination-wrapper nav > div:first-child {
        display: none !important;
    }

    .camp-pagination-wrapper nav > div:last-child {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .camp-pagination-wrapper nav > div:last-child > div:last-child {
        gap: 0.4rem;
    }

    .camp-pagination-wrapper nav > div:last-child > div:last-child a,
    .camp-pagination-wrapper nav > div:last-child > div:last-child span[aria-current] span,
    .camp-pagination-wrapper nav > div:last-child > div:last-child span[aria-disabled] span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 1024px) {
    .camp-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .camp-list-hero {
        padding: 2rem 0;
    }

    .camp-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .camp-list-header .btn {
        width: 100%;
        justify-content: center;
    }

    .camp-list-grid {
        padding: 2rem 0 3rem;
    }

    .camp-card-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .camp-card {
        padding: 1.25rem;
    }

    .camp-card-title {
        font-size: 1rem;
    }

    .camp-meta-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .camp-list-hero {
        padding: 1.5rem 0;
    }

    .camp-list-header h1 {
        font-size: 1.75rem;
    }

    .camp-card {
        padding: 1.15rem;
    }

    .camp-card-title {
        font-size: 0.95rem;
    }

    .camp-meta-item {
        font-size: 0.8rem;
        gap: 0.65rem;
    }

    .camp-meta-item i {
        font-size: 0.85rem;
        width: 16px;
    }

    .camp-meta-label {
        font-size: 0.65rem;
    }

    .camp-meta-value {
        font-size: 0.85rem;
    }

    .btn-camp-view {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }

    .camp-empty-state {
        padding: 3rem 1.5rem;
    }

    .camp-empty-state i {
        font-size: 3rem;
    }

    .camp-empty-state p {
        font-size: 1rem;
    }
}

.no-resources {
    text-align: center;
    padding: 60px 20px;
    color: #606060;
}

.no-resources i {
    font-size: 64px;
    color: #cccccc;
    margin-bottom: 20px;
}

.no-resources p {
    font-size: 18px;
    margin: 0;
}

/* Resources Pagination Styles */
.resources-pagination {
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Override all Tailwind styles in pagination */
.resources-pagination nav[role="navigation"] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resources-pagination nav * {
    box-sizing: border-box;
}

/* Mobile Pagination - Previous/Next buttons */
.resources-pagination nav > div:first-child {
    display: flex !important;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.resources-pagination nav > div:first-child a,
.resources-pagination nav > div:first-child span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem !important;
    border: 2px solid #e1d4c3 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: #7a5230 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    background: #fff !important;
    min-width: 120px;
    margin: 0 !important;
    cursor: pointer;
}

.resources-pagination nav > div:first-child a:hover {
    background: var(--theme-accent) !important;
    border-color: var(--theme-accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3) !important;
}

.resources-pagination nav > div:first-child span {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5 !important;
}

/* Desktop Pagination - Info and page numbers */
.resources-pagination nav > div:last-child {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.resources-pagination nav > div:last-child > div:first-child p {
    color: #7a5230 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.resources-pagination nav > div:last-child > div:first-child p .font-medium {
    color: #4a311a !important;
    font-weight: 600 !important;
}

/* Pagination Links Container */
.resources-pagination nav > div:last-child > div:last-child {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.resources-pagination nav > div:last-child > div:last-child > * {
    margin: 0 !important;
    margin-left: 0 !important;
}

/* Pagination Links and Spans */
.resources-pagination nav > div:last-child > div:last-child a,
.resources-pagination nav > div:last-child > div:last-child span[aria-current] span,
.resources-pagination nav > div:last-child > div:last-child span[aria-disabled] span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px !important;
    border: 2px solid #e1d4c3 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: #7a5230 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    background: #fff !important;
    margin: 0 !important;
    margin-left: 0 !important;
    box-shadow: none !important;
}

.resources-pagination nav > div:last-child > div:last-child a:hover {
    background: var(--theme-accent) !important;
    border-color: var(--theme-accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3) !important;
    z-index: 1;
}

.resources-pagination nav > div:last-child > div:last-child span[aria-current] span {
    background: linear-gradient(135deg, var(--theme-accent-light) 0%, var(--theme-accent-dark) 100%) !important;
    border-color: var(--theme-accent-dark) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(240, 160, 69, 0.3) !important;
}

.resources-pagination nav > div:last-child > div:last-child span[aria-disabled] span {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5 !important;
}

.resources-pagination nav svg {
    width: 16px !important;
    height: 16px !important;
}

/* Mobile Responsive Styles */
@media (max-width: 640px) {
    .resources-pagination nav > div:last-child {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .resources-pagination nav > div:first-child {
        gap: 0.5rem;
    }

    .resources-pagination nav > div:first-child a,
    .resources-pagination nav > div:first-child span {
        min-width: 100px;
        padding: 0.65rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .resources-pagination nav > div:last-child > div:last-child {
        gap: 0.35rem;
    }

    .resources-pagination nav > div:last-child > div:last-child a,
    .resources-pagination nav > div:last-child > div:last-child span[aria-current] span,
    .resources-pagination nav > div:last-child > div:last-child span[aria-disabled] span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px !important;
        font-size: 0.85rem !important;
    }
}

/* Fallback styles for Bootstrap-style pagination (.pagination class) */
.resources-pagination .pagination {
    display: flex !important;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.resources-pagination .pagination li {
    display: inline-block;
    margin: 0;
}

.resources-pagination .pagination a,
.resources-pagination .pagination span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px !important;
    border: 2px solid #e1d4c3 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: #7a5230 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    background: #fff !important;
    margin: 0 !important;
}

.resources-pagination .pagination a:hover {
    background: var(--theme-accent) !important;
    border-color: var(--theme-accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3) !important;
}

.resources-pagination .pagination .active span,
.resources-pagination .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--theme-accent-light) 0%, var(--theme-accent-dark) 100%) !important;
    border-color: var(--theme-accent-dark) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(240, 160, 69, 0.3) !important;
}

.resources-pagination .pagination .disabled span,
.resources-pagination .pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5 !important;
}

@media (max-width: 640px) {
    .resources-pagination .pagination {
        gap: 0.35rem;
    }

    .resources-pagination .pagination a,
    .resources-pagination .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .filters-row {
        flex-direction: column;
    }

    .search-field,
    .filter-group {
        width: 100%;
    }

    .resources-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

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

    .resource-list-item {
        flex-direction: column;
    }

    .resource-list-header {
        flex-direction: column;
    }
}


.registration-hero {
    background: url('../img/maine-image-krishna.jpg') center/cover;
    padding: 3rem 0 1.5rem;
}
.registration-hero-card {
    display: flex;
    justify-content: center;
}
.registration-hero-header {
    max-width: 800px;
    width: 100%;
    background: var(--theme-surface-light);
    color: var(--theme-bg-dark);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(122, 17, 28, 0.1);
    border: 1px solid rgba(122, 17, 28, 0.08);
}
.registration-hero-header h1 {
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    color: var(--theme-bg);
    text-align: center;
}
.camp-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.camp-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}
.camp-meta-item i {
    color: var(--theme-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
}
.camp-meta-item div {
    color: var(--theme-bg-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}
.camp-meta-item strong {
    color: var(--theme-bg-dark);
    margin-right: 0.25rem;
}
.camp-meta-item a {
    color: var(--theme-accent);
    text-decoration: none;
    word-break: break-all;
}
.camp-meta-item a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .registration-hero {
        padding: 2rem 0 1.5rem;
    }
    .registration-hero-header {
        padding: 1.5rem;
    }
    .camp-meta-item {
        gap: 0.5rem;
    }
    .camp-meta-item div {
        font-size: 0.9rem;
    }
}
.registration-form-section {
    background: var(--theme-surface);
    padding: 3rem 0 5rem;
}
.camp-registration-form {
    background: var(--theme-surface-light);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 35px 80px rgba(211, 173, 132, 0.25);
}
.alert {
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}
.alert ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}
.alert-success {
    background: #e6f5ea;
    border: 1px solid #a8dcb5;
    color: #245c31;
}
.alert-error {
    background: #fdecea;
    border: 1px solid #f5a099;
    color: #7c1f18;
}
.form-error {
    color: #c0392b;
    font-size: 0.85rem;
    line-height: 1.3;
    display: block;
    min-height: 1.2em;
    margin-top: 0.25rem;
}
.form-section {
    border: 1px solid var(--theme-accent);
    border-radius: 24px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    background: #fffcf6;
}
.camp-registration-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--theme-bg-dark);
    align-items: flex-start;
}
.camp-registration-form input.form-field,
.camp-registration-form select.form-field,
.camp-registration-form textarea.form-field {
    border: 1px solid var(--theme-bg);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--theme-bg-dark);
    background: var(--theme-surface-light);
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.camp-registration-form input.form-field:focus,
.camp-registration-form select.form-field:focus,
.camp-registration-form textarea.form-field:focus {
    outline: none;
    border-color: var(--theme-bg-dark);
    box-shadow: 0 0 0 3px rgba(50, 62, 113, 0.18);
}
.form-section legend {
    padding: 0 0.75rem;
    font-size: 1.35rem;
    color: var(--theme-bg-dark);
    font-weight: 700;
}
.form-grid {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}
.form-grid.two {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.form-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.family-member-card {
    border: 1px solid var(--theme-bg);
    border-radius: 18px;
    padding: 1.5rem;
    background: var(--theme-surface-light);
    margin-bottom: 1.5rem;
    position: relative;
}
.family-member-card header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--theme-bg-dark);
    margin-bottom: 1rem;
}
.remove-member-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.85rem;
    background: transparent;
    border: none;
    color: #c0392b;
    cursor: pointer;
}
.remove-member-btn:hover {
    text-decoration: underline;
}
.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.consent-checkbox {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 0.75rem;
}
.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.payment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}
.payment-modal-content {
    position: relative;
    background: var(--theme-surface-light);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}
.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1d4c3;
}
.payment-modal-header h2 {
    margin: 0;
    color: var(--theme-bg-dark);
    font-size: 1.5rem;
}
.payment-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--theme-bg-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-modal-close:hover {
    color: var(--theme-bg-dark);
}
.payment-modal-body {
    padding: 2rem;
}
.payment-amount {
    font-size: 1.2rem;
    color: var(--theme-bg-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: #fff7e9;
    border-radius: 12px;
}
.payment-amount strong {
    color: var(--theme-accent-dark);
    font-size: 1.5rem;
}
#payment-element {
    margin-bottom: 1.5rem;
}
#payment-message {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}
#payment-message.hidden {
    display: none;
}
.payment-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}
.payment-modal-actions .btn {
    min-width: 140px;
}
#spinner {
    display: inline-block;
}
#spinner.hidden {
    display: none;
}
@media (max-width: 768px) {
    .camp-registration-form {
        padding: 2rem;
    }
    .consent-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .payment-modal-content {
        width: 95%;
        margin: 2vh auto;
    }
    .payment-modal-header,
    .payment-modal-body {
        padding: 1.5rem;
    }
    .payment-modal-actions {
        flex-direction: column;
    }
    .payment-modal-actions .btn {
        width: 100%;
    }
}

/* Consent Form Modal */
.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.consent-modal-content {
    position: relative;
    background: var(--theme-surface-light);
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.consent-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1d4c3;
    flex-shrink: 0;
}

.consent-modal-header h2 {
    margin: 0;
    color: #7a3b16;
    font-size: 1.5rem;
}

.consent-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #7a5230;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.consent-modal-close:hover {
    color: #c0392b;
}

.consent-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.consent-form-content {
    color: #4a311a;
    line-height: 1.8;
}

.consent-form-content ol {
    padding-left: 1.5rem;
    margin: 0;
}

.consent-form-content li {
    margin-bottom: 1.5rem;
}

.consent-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1d4c3;
}

.consent-modal-actions .btn {
    min-width: 140px;
}

@media (max-width: 768px) {
    .consent-modal-content {
        width: 95%;
        margin: 2vh auto;
    }

    .consent-modal-header,
    .consent-modal-body {
        padding: 1.5rem;
    }

    .consent-modal-actions {
        flex-direction: column;
    }

    .consent-modal-actions .btn {
        width: 100%;
    }
}

/* Consent checkbox layout override */
.consent-checkbox {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom:1.5rem;
}
.consent-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.consent-checkbox span {
    display: inline-block;
    line-height: 1.4;
}

/* Resource View Modal Styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.custom-modal.show {
    display: block;
}

.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.custom-modal-dialog {
    position: relative;
    width: 90%;
    max-width: 700px;
    margin: 2rem auto;
    z-index: 9999;
    max-height: 95vh;
    overflow-y: auto;
}

.custom-modal-content {
    background: var(--theme-surface-light);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.activity-icon {
    color: #dc3545;
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-label {
    font-size: 0.875rem;
    color: #606060;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-download-modal {
    background: var(--theme-accent);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
    position: relative;
    white-space: nowrap;
}

.btn-download-modal:hover:not(.loading) {
    background: var(--theme-accent-dark);
}

.btn-download-modal.loading {
    pointer-events: none;
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-download-modal.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

.btn-download-modal.loading span {
    opacity: 0;
}

.btn-download-modal i {
    font-size: 0.75rem;
}

.btn-download-modal.hidden {
    display: none !important;
}

.custom-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--theme-surface);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.custom-modal-close:hover {
    opacity: 0.7;
}

.custom-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-title-section {
    margin-bottom: 1.5rem;
}

.modal-main-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--theme-bg);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.tag-type {
    background: var(--theme-accent);
    color: #ffffff;
}

.tag-age {
    background: #f8f9fa;
    color: #606060;
    border: 1px solid #e5e5e5;
}

.custom-tabs {
    display: flex;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 1.5rem;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.custom-tabs::-webkit-scrollbar {
    display: none;
}

.custom-tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    color: #606060;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: -2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.custom-tab-btn:hover {
    color: var(--theme-accent);
    background: #fff9f5;
}

.custom-tab-btn.active {
    color: var(--theme-accent);
    background: #fff9f5;
    border-bottom-color: var(--theme-accent);
}

.custom-tab-pane {
    display: none;
}

.custom-tab-pane.active {
    display: block;
}

.tab-content-wrapper {
    min-height: 300px;
    max-height: 450px;
    overflow-y: auto;
}

.materials-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-bg); 
    margin: 0 0 1rem 0;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--theme-surface-light);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.material-item:hover {
    border-color: var(--theme-accent);
    box-shadow: 0 2px 8px rgba(50, 62, 113, 0.15);
}

.material-item.active {
    background: #fff9f5;
    border-color: var(--theme-accent);
}

.material-icon {
    width: 32px;
    height: 32px;
    /* background: var(--theme-bg); */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.material-icon i {
    color: #ffffff;
    font-size: 0.875rem;
}

.material-name {
    flex: 1;
    font-size: 0.9375rem;
    color: #151414;
    font-weight: 500;
    word-wrap: break-word;
    min-width: 0;
}

.material-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #606060;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.material-download:hover {
    background: var(--theme-surface);
    color: var(--theme-accent);
}

.material-download i {
    font-size: 0.875rem;
}

.overview-section {
    margin-bottom: 2rem;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-bg);
    margin: 0 0 0.75rem 0;
}

.section-content {
    font-size: 0.9375rem;
    color: #151414;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--theme-accent);
    background: #fff9f5;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #151414;
    font-weight: 500;
}

.quick-info-box {
    border: 1px solid var(--theme-accent-light);
    background: #fff9f5;
    border-radius: 8px;
    padding: 1.25rem;
}

.quick-info-content {
    font-size: 0.9375rem;
    color: #151414;
    line-height: 1.6;
    word-wrap: break-word;
}

.quick-info-content ul,
.quick-info-content ol {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.quick-info-content ul li,
.quick-info-content ol li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.quick-info-content ul li:before {
    content: "•";
    color: var(--theme-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.quick-info-content ol {
    counter-reset: item;
}

.quick-info-content ol li {
    counter-increment: item;
    padding-left: 2rem;
}

.quick-info-content ol li:before {
    content: counter(item) ".";
    color: var(--theme-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.quick-info-content ul li i[class*="fa"],
.quick-info-content ol li i[class*="fa"] {
    color: #151414;
    margin-right: 0.5rem;
    font-style: normal;
    display: inline-block;
}

.quick-info-content p {
    margin: 0.5rem 0;
}

.quick-info-content p:first-child {
    margin-top: 0;
}

.quick-info-content p:last-child {
    margin-bottom: 0;
}

.quick-info-content strong,
.quick-info-content b {
    font-weight: 600 !important;
    color: inherit;
}

.quick-info-content em,
.quick-info-content i:not([class*="fa"]) {
    font-style: italic !important;
}

.quick-info-content ul li strong,
.quick-info-content ul li b,
.quick-info-content ol li strong,
.quick-info-content ol li b {
    font-weight: 600 !important;
    color: inherit;
    display: inline;
}

.quick-info-content ul li em,
.quick-info-content ul li i:not([class*="fa"]),
.quick-info-content ol li em,
.quick-info-content ol li i:not([class*="fa"]) {
    font-style: italic !important;
    display: inline;
}

.quick-info-content ul li u,
.quick-info-content ol li u {
    text-decoration: underline;
    display: inline;
}

.quick-info-content ul li strong,
.quick-info-content ul li b,
.quick-info-content ul li em,
.quick-info-content ul li i:not([class*="fa"]),
.quick-info-content ul li u,
.quick-info-content ul li span,
.quick-info-content ol li strong,
.quick-info-content ol li b,
.quick-info-content ol li em,
.quick-info-content ol li i:not([class*="fa"]),
.quick-info-content ol li u,
.quick-info-content ol li span {
    display: inline;
}

.quick-info-content ul li br,
.quick-info-content ol li br {
    display: block;
    margin: 0.25rem 0;
}

.quick-info-content a {
    color: var(--theme-accent);
    text-decoration: none;
}

.quick-info-content a:hover {
    text-decoration: underline;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .custom-modal-dialog {
        width: 95%;
        margin: 1rem auto;
        max-height: 98vh;
    }

    .custom-modal-content {
        max-height: 95vh;
        border-radius: 10px;
    }

    .custom-modal-header {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .modal-header-left {
        width: 100%;
        order: 1;
    }

    .modal-header-right {
        width: 100%;
        justify-content: space-between;
        order: 2;
    }

    .btn-download-modal {
        flex: 1;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .custom-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.75rem;
    }

    .custom-modal-body {
        padding: 1.25rem 1rem;
    }

    .modal-main-title {
        font-size: 1.5rem;
    }

    .custom-tabs {
        margin-bottom: 1.25rem;
    }

    .custom-tab-btn {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }

    .tab-content-wrapper {
        min-height: 250px;
        max-height: 400px;
    }

    .materials-heading {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1rem;
    }

    .section-content {
        font-size: 0.875rem;
    }

    .material-item {
        padding: 0.75rem 0.875rem;
        gap: 0.65rem;
    }

    .material-name {
        font-size: 0.875rem;
    }

    .quick-info-box {
        padding: 1rem;
    }

    .quick-info-content {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .custom-modal-dialog {
        width: 100%;
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }

    .custom-modal-content {
        max-height: 100vh;
        border-radius: 0;
    }

    .custom-modal-header {
        padding: 0.875rem 1rem;
    }

    .modal-main-title {
        font-size: 1.25rem;
    }

    .activity-label {
        font-size: 0.8rem;
    }

    .btn-download-modal {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .btn-download-modal span {
        display: none;
    }

    .custom-modal-body {
        padding: 1rem 0.875rem;
    }

    .custom-tab-btn {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }

    .tab-content-wrapper {
        min-height: 200px;
        max-height: 350px;
    }

    .materials-heading {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 0.95rem;
    }

    .material-item {
        padding: 0.65rem 0.75rem;
        flex-wrap: wrap;
    }

    .material-icon {
        width: 28px;
        height: 28px;
    }

    .material-download {
        width: 28px;
        height: 28px;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.65rem;
    }
}

.feedback-hero {
    background: linear-gradient(135deg, rgba(255, 207, 169, 0.35) 0%, var(--theme-surface-light) 100%);
    padding: 3rem 0 1.5rem;
}

.feedback-hero-card {
    display: flex;
    justify-content: center;
}

.feedback-hero-header {
    max-width: 640px;
    width: 100%;
    background: var(--theme-surface-light);
    color: var(--theme-surface);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(242, 101, 34, 0.12);
    border: 1px solid rgba(50, 63, 113, 0.15);
}

.feedback-hero-header h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    color: var(--theme-accent-dark);
}

.camp-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--theme-surface);
}

.camp-meta strong {
    font-weight: 700;
    color: var(--theme-accent-dark);
}

.feedback-form-section {
    background: var(--color-background);
    padding: 3rem 0 5rem;
}

.feedback-form {
    background: var(--theme-surface-light);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 35px 80px rgba(50, 63, 113, 0.15);
}

.alert {
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}

.alert ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.alert-success {
    background: #e6f5ea;
    border: 1px solid #a8dcb5;
    color: #245c31;
}

.alert-error {
    background: #fdecea;
    border: 1px solid #f5a099;
    color: #7c1f18;
}

.form-error {
    color: #dc3545;
    font-size: 0.85rem;
    line-height: 1.3;
}

.form-section {
    border: 1px solid rgba(50, 63, 113, 0.2);
    border-radius: 24px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    background: var(--theme-surface-light);
}

.form-section legend {
    padding: 0 0.75rem;
    font-size: 1.35rem;
    color: var(--theme-accent-dark);
    font-weight: 700;
}

label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--theme-bg-dark);
    margin-bottom: 0.25rem;
}

input[type="file"],
input[type="text"],
textarea {
    border: 1px solid rgba(50, 63, 113, 0.25);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    /* color: var(--theme-bg-dark); */
    background: var(--theme-surface-light);
}

input[type="file"] {
    padding: 0.5rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--theme-accent-dark);
    box-shadow: 0 0 0 3px rgba(50, 62, 113, 0.18);
}

.consent-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.consent-checkbox input {
    width: 20px;
    height: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.form-hint {
    color: #606060;
    font-weight: normal;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.current-files {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(50, 63, 113, 0.2);
}

.current-files strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--theme-accent-dark);
}

.photos-preview {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.photo-item {
    position: relative;
}

.photo-item img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(50, 63, 113, 0.25);
}

.photos-preview-new {
    padding-top: 1rem;
    border-top: 1px solid rgba(50, 63, 113, 0.2);
}

.photos-preview-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.photos-preview-list .photo-preview-item {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(50, 63, 113, 0.25);
}

.photos-preview-list .photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-link {
    color: var(--theme-accent-dark);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.file-link:hover {
    color: var(--theme-accent-dark);
}

.file-preview {
    padding-top: 0.5rem;
    color: var(--theme-surface);
    font-weight: 500;
}

#char-count {
    font-weight: 600;
    color: var(--theme-accent-dark);
}

@media (max-width: 768px) {
    .feedback-hero {
        padding: 2rem 0 1rem;
    }

    .feedback-hero-header {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .feedback-hero-header h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .camp-meta {
        font-size: 0.875rem;
        gap: 0.4rem;
    }

    .feedback-form-section {
        padding: 2rem 0 3rem;
    }

    .feedback-form {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .form-section legend {
        font-size: 1.15rem;
        padding: 0 0.5rem;
    }

    label {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    input[type="file"],
    input[type="text"],
    textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .form-hint {
        font-size: 0.8rem;
    }

    .photos-preview {
        gap: 0.75rem;
    }

    .photo-item img {
        max-width: 120px;
        max-height: 120px;
    }

    .photos-preview-list .photo-preview-item {
        width: 100px;
        height: 100px;
    }

    .consent-checkbox {
        gap: 0.6rem;
        font-size: 0.9rem;
    }

    .consent-checkbox input {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .alert {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .alert ul {
        font-size: 0.85rem;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .feedback-hero-header {
        padding: 1.25rem 1rem;
    }

    .feedback-hero-header h1 {
        font-size: 1.35rem;
    }

    .camp-meta {
        font-size: 0.8rem;
    }

    .feedback-form {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .form-section {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .form-section legend {
        font-size: 1.05rem;
    }

    label {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }

    input[type="file"],
    input[type="text"],
    textarea {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    .form-hint {
        font-size: 0.75rem;
    }

    .photo-item img {
        max-width: 100px;
        max-height: 100px;
    }

    .photos-preview-list .photo-preview-item {
        width: 80px;
        height: 80px;
    }

    .consent-checkbox {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Participant Feedback Form Styles */
.feedback-hero.participant-hero {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, var(--theme-surface-light) 100%);
}

.feedback-hero-header.participant-header h1 {
    color: #4a90e2;
}

.feedback-hero-header.participant-header {
    border: 1px solid rgba(74, 144, 226, 0.15);
    box-shadow: 0 18px 35px rgba(74, 144, 226, 0.12);
}

.camp-meta.participant-meta strong {
    color: #4a90e2;
}

.feedback-form-section.participant-form-section {
    background: var(--color-background);
}

.feedback-form.participant-form {
    box-shadow: 0 35px 80px rgba(74, 144, 226, 0.15);
}

.form-section.participant-section {
    border: 1px solid rgba(74, 144, 226, 0.2);
    background: var(--theme-surface-light);
}

.form-section.participant-section legend {
    color: var(--theme-bg) !important;
}

.feedback-form.participant-form label {
    color: var(--theme-bg) !important;
}

.feedback-form.participant-form input,
.feedback-form.participant-form textarea {
    border: 1px solid rgba(74, 144, 226, 0.25);
    color: var(--theme-bg) !important;
}

.feedback-form.participant-form input:focus,
.feedback-form.participant-form textarea:focus {
    border-color: var(--theme-bg) !important;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.18);
}

.feedback-form.participant-form .btn-primary {
    background: linear-gradient(135deg, var(--theme-bg) 0%, var(--theme-bg) 100%);
    color: #fff;
}

.feedback-form.participant-form .btn-primary:hover {
    background: linear-gradient(135deg, #357abd 0%, #2a5f8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

@media (max-width: 768px) {
    .feedback-hero.participant-hero {
        padding: 2rem 0 1rem;
    }

    .feedback-hero-header.participant-header {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .feedback-hero-header.participant-header h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .camp-meta.participant-meta {
        font-size: 0.875rem;
        gap: 0.4rem;
    }

    .feedback-form-section.participant-form-section {
        padding: 2rem 0 3rem;
    }

    .feedback-form.participant-form {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-section.participant-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .form-section.participant-section legend {
        font-size: 1.15rem;
        padding: 0 0.5rem;
    }

    .feedback-form.participant-form label {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .feedback-form.participant-form input,
    .feedback-form.participant-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .feedback-form.participant-form .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feedback-hero-header.participant-header {
        padding: 1.25rem 1rem;
    }

    .feedback-hero-header.participant-header h1 {
        font-size: 1.35rem;
    }

    .camp-meta.participant-meta {
        font-size: 0.8rem;
    }

    .feedback-form.participant-form {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .form-section.participant-section {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .form-section.participant-section legend {
        font-size: 1.05rem;
    }

    .feedback-form.participant-form label {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }

    .feedback-form.participant-form input,
    .feedback-form.participant-form textarea {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    .feedback-form.participant-form .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Consent Form Styles */
.consent-form-section {
    background: var(--color-background);
    padding: 3rem 0 5rem;
}

.consent-form-card {
    background: var(--theme-surface-light);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 35px 80px rgba(50, 63, 113, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.consent-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(50, 63, 113, 0.2);
}

.consent-form-header h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--theme-accent-dark);
    margin-bottom: 0.75rem;
}

.consent-form-header p {
    font-size: 1.2rem;
    color: var(--theme-surface);
    font-weight: 600;
    margin: 0;
}

.consent-form-body {
    color: var(--theme-surface);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.consent-form-list {
    padding-left: 2rem;
    margin: 0;
}

.consent-form-list li {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.consent-form-list li:last-child {
    margin-bottom: 0;
}

.consent-form-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(50, 63, 113, 0.2);
}

.consent-form-footer .btn {
    padding: 0.95rem 2.8rem;
    min-width: 180px;
}

@media (max-width: 768px) {
    .consent-form-card {
        padding: 2rem;
    }

    .consent-form-list {
        padding-left: 1.5rem;
    }

    .consent-form-list li {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .consent-form-footer {
        flex-direction: column;
    }

    .consent-form-footer .btn {
        width: 100%;
    }
}

/* Nearby Camps Section Styles */
.nearby-camps-section {
    padding: 50px 0;
    background: var(--theme-surface-light);
}

.nearby-camps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.nearby-camps-header {
    margin-bottom: 30px;
}

.nearby-camps-title {
    font-size: 45px;
    line-height: 1;
    font-weight: 400;
    color: var(--theme-surface);
    margin: 0 0 8px 0;
}

.nearby-camps-description {
    font-size: 16px;
    line-height: 1.5;
    color: #606060;
    margin: 0;
}

.search-bar-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 16px;
    border: 1px solid var(--theme-bg);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--theme-accent-dark);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #606060;
    pointer-events: none;
}

.camps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    padding-bottom: 10px;
}

.camps-list::-webkit-scrollbar {
    width: 6px;
}

.camps-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.camps-list::-webkit-scrollbar-thumb {
    background: var(--theme-accent-dark);
    border-radius: 10px;
}

.camp-location-card {
    background: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px;
    border: 1px solid #e0e0e0;
}

.camp-location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 63, 113, 0.15);
    border-color: var(--theme-accent-dark);
}

.camp-location-card.active {
    background: rgba(50, 63, 113, 0.08);
    border: 2px solid var(--theme-accent-dark);
}

.camp-location-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    justify-content: space-between;
    width: 100%;
}

.camp-location-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.camp-location-name {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--theme-surface);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.camp-location-description {
    font-size: 13px;
    line-height: 1.4;
    color: #606060;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.camp-location-date,
.camp-location-organizer {
    font-size: 12px;
    line-height: 1.4;
    color: #606060;
    margin: 0;
    word-wrap: break-word;
}

.camp-location-date strong,
.camp-location-organizer strong {
    color: var(--theme-surface);
    font-weight: 600;
}

.nearby-camps-map {
    position: sticky;
    top: 20px;
    height: calc(100vh - 100px);
    min-height: 600px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #606060;
}

.location-status {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(50, 63, 113, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: var(--theme-accent-dark);
}

.location-status.error {
    background: #f8d7da;
    color: #721c24;
}

.location-status.success {
    background: #d4edda;
    color: #155724;
}

.camp-location-distance {
    font-size: 12px;
    line-height: 1.4;
    color: var(--theme-accent-dark);
    margin: 0;
    font-weight: 600;
}

.camp-location-distance strong {
    color: var(--theme-surface);
    font-weight: 600;
}

/* Camp Detail Modal */
.camp-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.camp-detail-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.camp-detail-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #606060;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.camp-detail-close:hover {
    color: var(--theme-accent-dark);
}

.camp-detail-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-surface);
    margin: 0 0 20px 0;
}

.camp-detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.camp-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.camp-detail-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-surface);
}

.camp-detail-item p {
    font-size: 15px;
    color: #606060;
    margin: 0;
    line-height: 1.5;
}

.camp-register-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: background 0.3s ease;
}

.camp-register-btn:hover {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
}

@media (max-width: 1024px) {
    .nearby-camps-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nearby-camps-map {
        position: relative;
        top: 0;
        height: 500px;
    }

    .camps-list {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .nearby-camps-title {
        font-size: 32px;
    }

    .nearby-camps-description {
        font-size: 14px;
    }

    .camp-location-card {
        min-height: auto;
    }

    .camp-location-content {
        gap: 6px;
    }

    .camp-location-name {
        font-size: 15px;
    }
}

/* Registration Success Page Styles */
.success-hero {
    background: linear-gradient(135deg, rgba(255, 207, 169, 0.35) 0%, var(--theme-surface-light) 100%);
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.success-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--theme-surface-light);
    border-radius: 32px;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    box-shadow: 0 35px 80px rgba(50, 63, 113, 0.15);
}

.success-header h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 0.75rem;
    color: var(--theme-accent-dark);
}

.success-header p {
    font-size: 1.1rem;
    color: var(--theme-surface);
    margin-bottom: 2rem;
}

.success-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #d4edda;
    color: #28a745;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.camp-summary {
    text-align: left;
    background: rgba(50, 63, 113, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(50, 63, 113, 0.15);
}

.camp-summary h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--theme-accent-dark);
}

.camp-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--theme-surface);
}

.camp-summary strong {
    font-weight: 700;
    color: var(--theme-accent-dark);
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.success-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
}

.success-actions .btn-primary {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    color: #fff;
}

.success-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 0.4);
}

.success-actions .btn-secondary {
    background: rgba(50, 63, 113, 0.1);
    color: var(--theme-accent-dark);
    border: 1px solid rgba(50, 63, 113, 0.2);
}

.success-actions .btn-secondary:hover {
    background: rgba(50, 63, 113, 0.15);
    border-color: rgba(50, 63, 113, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 63, 113, 0.2);
}

@media (max-width: 640px) {
    .camp-summary {
        text-align: center;
    }
}

/* Dashboard Styles */
.dashboard-hero {
    background: linear-gradient(135deg, rgba(255, 207, 169, 0.35) 0%, var(--theme-surface-light) 100%);
    padding: 3rem 0 2rem;
}

.dashboard-hero-card {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 32px;
    background: var(--theme-surface-light);
    box-shadow: 0 35px 80px rgba(50, 63, 113, 0.15);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--theme-accent-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dashboard-hero-card h1 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--theme-accent-dark);
}

.dashboard-hero-card .lead {
    color: var(--theme-bg-dark);
    font-size: 1.05rem;
}

.hero-highlight {
    min-width: 240px;
    border-radius: 20px;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    color: #fff;
}

.hero-highlight .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.hero-highlight-actions {
    margin-top: 1rem;
}

.hero-highlight .btn {
    background: var(--theme-surface-light);
    color: var(--theme-accent-dark);
    border-color: #ffffff;
}

.hero-highlight .btn:hover,
.hero-highlight .btn:focus {
    background: rgba(50, 63, 113, 0.1);
    color: var(--theme-accent-dark);
    border-color: rgba(50, 63, 113, 0.1);
}

.dashboard-metrics {
    padding: 2rem 0;
    background: var(--color-background);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--theme-surface-light);
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(50, 63, 113, 0.2);
    box-shadow: 0 20px 40px rgba(50, 63, 113, 0.1);
}

.metric-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #606060;
}

.metric-card strong {
    display: block;
    font-size: 2.5rem;
    color: var(--theme-accent-dark);
    margin: 0.5rem 0;
}

.metric-card span {
    color: var(--theme-accent-dark);
    font-weight: 600;
}

.dashboard-columns {
    padding: 2rem 0 4rem;
    background: var(--color-background);
}

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

.panel {
    background: var(--theme-surface-light);
    border-radius: 28px;
    padding: 1.75rem;
    border: 1px solid rgba(50, 62, 113, 0.2);
    box-shadow: 0 4px 20px rgba(50, 62, 113, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.panel:hover {
    box-shadow: 0 8px 30px rgba(50, 62, 113, 0.12);
    transform: translateY(-2px);
}

.panel header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.panel header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--theme-accent-dark);
    font-weight: 700;
}

.panel header a {
    font-size: 0.9rem;
    color: var(--theme-accent-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.panel header a:hover {
    background: rgba(50, 62, 113, 0.1);
    color: var(--theme-accent-dark);
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.list li {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.5rem;
    margin: 0 -1.5rem;
    border-bottom: 1px solid rgba(50, 62, 113, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.list li:hover {
    background: rgba(50, 62, 113, 0.05);
    box-shadow: 0 4px 12px rgba(50, 62, 113, 0.1);
    transform: translateY(-2px);
    border-bottom-color: rgba(50, 62, 113, 0.25);
}

.list li:last-child {
    border-bottom: none;
}

.camp-item-line-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.list li > div {
    flex: 1;
    min-width: 0;
}

/* Recent Registrations - horizontal layout */
.registration-list li {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.registration-list li > div {
    flex: 1;
    min-width: 0;
}

.registration-list li span {
    align-self: flex-start;
    margin-top: 0;
}

.camp-item-line-1 strong {
    display: block;
    color: var(--theme-bg);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0;
    word-wrap: break-word;
    flex: 1;
    min-width: 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.list strong {
    display: block;
    color: var(--theme-bg);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    word-wrap: break-word;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.list p {
    margin: 0;
    color: #606060;
    font-size: 0.875rem;
    word-wrap: break-word;
    line-height: 1.5;
    padding: 0.3rem 0.7rem;
    background: rgba(50, 62, 113, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(50, 62, 113, 0.2);
    display: inline-block;
    transition: all 0.2s ease;
}

.list li:hover p {
    background: rgba(50, 62, 113, 0.12);
    border-color: rgba(50, 62, 113, 0.3);
}

.camp-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0;
    align-items: center;
    padding-left: 0;
}

.camp-detail-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #606060;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    background: rgba(50, 62, 113, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(50, 62, 113, 0.2);
    transition: all 0.2s ease;
}

.list li:hover .camp-detail-item {
        background: rgba(50, 62, 113, 0.12);
    border-color: rgba(50, 62, 113, 0.3);
}

.camp-detail-item i {
    font-size: 0.8rem;
    color: var(--theme-accent-dark);
    width: 16px;
    text-align: center;
}

.camp-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.camp-status i {
    font-size: 0.75rem;
}

.status-upcoming {
    background: linear-gradient(135deg, rgba(50, 62, 113, 0.2) 0%, rgba(50, 62, 113, 0.15) 100%);
    color: var(--theme-accent-dark);
    border: 1px solid rgba(50, 62, 113, 0.3);
}

.list li:hover .status-upcoming {
    background: linear-gradient(135deg, rgba(50, 62, 113, 0.25) 0%, rgba(50, 62, 113, 0.2) 100%);
    box-shadow: 0 3px 6px rgba(50, 62, 113, 0.15);
}

.status-past {
    background: linear-gradient(135deg, rgba(45, 42, 50, 0.1) 0%, rgba(45, 42, 50, 0.08) 100%);
    color: #606060;
    border: 1px solid rgba(45, 42, 50, 0.15);
}

.list li:hover .status-past {
    background: linear-gradient(135deg, rgba(45, 42, 50, 0.15) 0%, rgba(45, 42, 50, 0.12) 100%);
}

.list span {
    color: #606060;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, rgba(45, 42, 50, 0.08) 0%, rgba(45, 42, 50, 0.06) 100%);
    border-radius: 20px;
    border: 1px solid rgba(45, 42, 50, 0.12);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.list li:hover span {
    background: linear-gradient(135deg, rgba(45, 42, 50, 0.12) 0%, rgba(45, 42, 50, 0.1) 100%);
    border-color: rgba(45, 42, 50, 0.2);
    box-shadow: 0 3px 6px rgba(45, 42, 50, 0.08);
}

.camp-item-line-1 .link {
    font-size: 0.875rem;
    color: var(--theme-accent-dark);
    text-decoration: none;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(50, 62, 113, 0.12) 0%, rgba(50, 62, 113, 0.1) 100%);
    border: 1px solid rgba(50, 62, 113, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
    margin-top: 0;
    box-shadow: 0 2px 4px rgba(50, 62, 113, 0.1);
    letter-spacing: 0.02em;
}

.list .link {
    font-size: 0.9rem;
    color: var(--theme-accent-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    background: rgba(50, 62, 113, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.camp-item-line-1 .link:hover {
    background: linear-gradient(135deg, rgba(50, 62, 113, 0.2) 0%, rgba(50, 62, 113, 0.18) 100%);
    color: var(--theme-accent-dark);
    border-color: rgba(50, 62, 113, 0.35);
    box-shadow: 0 4px 8px rgba(50, 62, 113, 0.2);
    transform: translateY(-1px);
}

.list .link:hover {
    background: rgba(50, 62, 113, 0.2);
    color: var(--theme-accent-dark);
}

.empty-state {
    color: #606060;
    margin: 1rem 0 0;
    padding: 2rem 1rem;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .dashboard-hero-card {
        flex-direction: column;
    }

    .hero-highlight {
        width: 100%;
        min-width: auto;
    }

    .dashboard-columns {
        padding: 1.5rem 0 3rem;
    }

    .columns-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .panel {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .panel header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .panel header h2 {
        font-size: 1.15rem;
    }

    .panel header a {
        align-self: flex-end;
        font-size: 0.85rem;
        padding: 0.35rem 0.7rem;
    }

    .list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem;
        margin: 0 -1.25rem;
    }

    .registration-list li {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.875rem;
    }

    .registration-list li span {
        flex-shrink: 0;
    }

    .camp-item-line-1 {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .camp-item-line-1 .link {
        align-self: flex-start;
        width: 100%;
        text-align: center;
    }

    .list li:hover {
        margin: 0 -1.25rem;
    }

    .list li > div {
        width: 100%;
    }

    .registration-list li > div {
        flex: 1;
        min-width: 0;
    }

    .list strong {
        font-size: 0.9rem;
    }

    .list p {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .registration-list li span {
        align-self: flex-start;
        margin-top: 0;
    }

    .list span {
        align-self: flex-start;
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
        margin-top: 0.5rem;
    }

    .list .link {
        align-self: flex-start;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    .camp-details {
        gap: 0.5rem;
        margin-top: 0.4rem;
        width: 100%;
    }

    .camp-detail-item {
        font-size: 0.7rem;
        gap: 0.35rem;
        padding: 0.3rem 0.55rem;
    }

    .camp-detail-item i {
        font-size: 0.65rem;
        width: 12px;
    }

    .camp-status {
        font-size: 0.7rem;
        padding: 0.3rem 0.65rem;
    }

    .empty-state {
        padding: 1.5rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dashboard-columns {
        padding: 1rem 0 2rem;
    }

    .columns-grid {
        gap: 1.25rem;
    }

    .panel {
        padding: 1rem;
        border-radius: 16px;
    }

    .panel header {
        gap: 0.5rem;
        margin-bottom: 0.875rem;
    }

    .panel header h2 {
        font-size: 1.05rem;
    }

    .panel header a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .list li {
        padding: 1rem;
        margin: 0 -1rem;
        gap: 0.625rem;
    }

    .registration-list li {
        flex-direction: column;
        gap: 0.75rem;
    }

    .registration-list li span {
        align-self: flex-start;
        margin-top: 0;
    }

    .list li:hover {
        margin: 0 -1rem;
    }

    .camp-item-line-1 {
        gap: 0.625rem;
    }

    .camp-item-line-1 strong {
        font-size: 0.95rem;
    }

    .camp-details {
        gap: 0.4rem;
    }

    .camp-detail-item {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .camp-status {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .list .link {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }

    .list strong {
        font-size: 0.85rem;
    }

    .list p {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .list span {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .empty-state {
        padding: 1.25rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Report Issue Form Styles */
.issue-form-card {
    background: var(--theme-surface-light);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 28px 42px rgba(50, 62, 113, 0.1);
    border: 1px solid rgba(50, 62, 113, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issue-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 55px rgba(50, 62, 113, 0.15);
}

.issue-form-card h3 {
    color: var(--theme-accent-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.issue-form-card .form-subtitle {
    color: rgba(45, 42, 50, 0.7);
    margin: 0 0 2rem 0;
    font-size: 0.95rem;
}

.issue-form-card .form-field {
    margin-bottom: 1.5rem;
}

.issue-form-card .form-field label {
    display: block;
    font-weight: 600;
    color: var(--theme-bg);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.issue-form-card .form-field input[type="text"],
.issue-form-card .form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(50, 62, 113, 0.2);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.issue-form-card .form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.issue-form-card .form-field input:focus,
.issue-form-card .form-field textarea:focus {
    outline: none;
    border-color: var(--theme-accent-dark);
    box-shadow: 0 0 0 4px rgba(50, 62, 113, 0.16);
}

.issue-form-card .form-field input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed rgba(50, 62, 113, 0.2);
    border-radius: 12px;
    background: rgba(50, 62, 113, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.issue-form-card .form-field input[type="file"]:hover {
    border-color: var(--theme-accent-dark);
    background: rgba(50, 62, 113, 0.08);
}

.issue-form-card .form-field .file-hint {
    font-size: 0.85rem;
    color: rgba(45, 42, 50, 0.6);
    margin-top: 0.5rem;
}

.issue-form-card .form-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.issue-form-card .btn-primary {
    background: linear-gradient(135deg, var(--theme-accent-medium) 0%, var(--theme-bg) 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 62, 113, 0.25);
    cursor: pointer;
}

.issue-form-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 62, 113, 0.35);
}

.issue-form-card .btn-secondary {
    background: transparent;
    color: var(--theme-accent-dark);
    border: 2px solid var(--theme-accent-dark);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.issue-form-card .btn-secondary:hover {
    background: var(--theme-accent-dark);
    color: #fff;
}

.issue-status {
    background: #d4edda;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
    font-size: 0.95rem;
}

.issue-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #f5c6cb;
    font-size: 0.95rem;
}

.issue-error ul {
    margin: 0;
    padding-left: 1.5rem;
}

.image-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-preview {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(50, 62, 113, 0.2);
}

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

.image-preview-remove {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
}

.image-preview-remove:hover {
    background: rgba(220, 53, 69, 0.9);
}
