.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;
}

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: #2d2a32;
    background-color: #fffaf6;
    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);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    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: #000000;
    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: 400;
    color: #000000;
    font-size: 16px;
    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: #585858;
    line-height: 22px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #000000;
}

.nav-divider {
    width: 1px;
    height: 22px;
    background: #dddddd;
    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: #f5ede6;
    color: #cc7722;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(242, 98, 34, 0.45);
}

.logout-form button:hover,
.logout-form button:focus {
    background: #cc7722;
    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: #000000;
    font-size: 16px;
    line-height: 22px;
    background: transparent;
    transition: color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-login-btn:hover {
    color: #585858;
}

.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: #000000;
    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: #f5f5f5;
    color: #000000;
    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: #cc7722;
    background: #fef7ec;
}

.nav-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    background: #ffffff;
    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: #000000;
    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: #f5f5f5;
    color: #000000;
}

.menu-item.logout {
    color: #cc7722;
}

.menu-item.logout:hover {
    background: #fef7ec;
    color: #cc7722;
}

@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: #ffffff;
        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: #5a2e0e;
        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: #000000;
        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: #000000;
        background-color: #f9f9f9;
    }

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

    .mobile-menu-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: #e0e0e0;
        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: #000000;
    }

    .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: #000000;
    }

    .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: #000000;
    }

    .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: #cc7722;
    border-color: #cc7722;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #cc7722;
    border-color: #cc7722;
}

.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('../images/IMG_3927.jpg') center/cover;
    color: #fff;
    padding: 5.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: #cc7722;
}

.hero p {
    margin: 0;
    font-size: 1.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: #fffaf6;
}

.section.cream {
    background: #fff1e6;
}

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

.section h2 {
    margin: 1rem 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #cc7722;
}

.section p.section-lead {
    max-width: 700px;
    margin: 0 auto 1.75rem;
    color: rgba(45, 42, 50, 0.8);
}

.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: #fff;
    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: #2d2a32;
}

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

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

.feature-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #2d2a32;
}

.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(242, 98, 34, 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: #cc7722;
}

.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: #2d2a32;
}

.story-title .accent {
    color: #cc7722;
}

.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: rgba(45, 42, 50, 0.78);
}

.story-lead {
    font-size: 1rem;
    font-weight: 600;
    color: #2d2a32;
}

.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(242, 98, 34, 0), #cc7722 45%, #ff9c46 90%, rgba(255, 255, 255, 0));
}

.steps-title .accent {
    color: #cc7722;
}

.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: rgba(255, 255, 255, 0.95);
    color: #2d2a32;
    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: #2d2a32;
    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, #cc7722, #f78d3d);
}

.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: #cc7722;
}

.activities {
    background: #fff0e5;
    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: #2d2a32;
}

.activities-title .accent {
    color: #cc7722;
}

.activities-lead {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(45, 42, 50, 0.7);
    line-height: 1.6;
}

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

.activity-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 200px 1fr;
    box-shadow: 0 30px 45px rgba(242, 98, 34, 0.18);
    border: 1px solid rgba(242, 98, 34, 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: #2d2a32;
}

.activity-tagline {
    margin: 0;
    font-weight: 600;
    color: #cc7722;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.activity-card p {
    margin: 0;
    color: rgba(45, 42, 50, 0.72);
    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: #fff;
    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: #cc7722;
}

.cta-lead {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    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: #fff;
}

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

.auth-section {
    padding: 4rem 0 5rem;
    background: radial-gradient(circle at top left, rgba(242, 98, 34, 0.18), transparent 45%),
        radial-gradient(circle at bottom right, rgba(242, 98, 34, 0.12), transparent 40%),
        #fffaf6;
}

.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: #2d2a32;
    line-height: 1.05;
}

.auth-lead {
    margin: 0;
    color: rgba(45, 42, 50, 0.7);
    line-height: 1.6;
}

.auth-benefits {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(45, 42, 50, 0.8);
    display: grid;
    gap: 0.4rem;
}

.auth-benefits li::marker {
    color: #cc7722;
}

.auth-card {
    background: #fff;
    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: #cc7722;
    font-size: 1.05rem;
}

.auth-tabs {
    display: inline-flex;
    background: rgba(242, 98, 34, 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: #cc7722;
    transition: background 0.2s ease, color 0.2s ease;
}

.auth-tab.active {
    background: #cc7722;
    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(242, 98, 34, 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: #2d2a32;
}

.form-field input,
.form-field select {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 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: #cc7722;
    box-shadow: 0 0 0 4px rgba(242, 98, 34, 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: #cc7722;
}

.auth-terms {
    font-size: 0.8rem;
    color: rgba(45, 42, 50, 0.65);
}

.auth-terms a {
    color: #cc7722;
}

.organizer-hero {
    background: linear-gradient(135deg, rgba(255, 207, 169, 0.35), rgba(255, 255, 255, 0.9));
}

.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: #7a111c;
    line-height: 1.1;
}

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

.organizer-step {
    background: #fff;
    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, #ffa24f, #cc7722);
    border-color: rgba(255, 255, 255, 0.2);
    color: #5a2e0e;
}

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

.organizer-step.is-active p {
    color: #000 !important;
}

.organizer-step.is-upcoming {
    background: #fff;
    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(242, 98, 34, 0.12);
    color: #cc7722;
    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: #7a111c;
}

.organizer-step p {
    margin: 0.2rem 0 0;
    color: rgba(45, 42, 50, 0.7);
}

.organizer-form-section {
    background: #fff;
}

.organizer-form-card {
    /* background: linear-gradient(180deg, #ffa24f, #cc7722); */
    border-radius: 30px;
    padding: 0.2rem;
    box-shadow: 0 30px 45px rgba(12, 9, 16, 0.22);
}

.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: #fffdf8;
    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: #7a111c;
    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: #7a111c;
    font-size: 0.95rem;
}

.organizer-form .input-hint {
    font-size: 0.8rem;
    color: rgba(122, 17, 28, 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: #fff;
    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: #2d2a32;
    position: relative;
    z-index: 2;
}


.organizer-form input:focus {
    outline: none;
    border-color: #cc7722;
    box-shadow: 0 0 0 4px rgba(242, 98, 34, 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: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-heading);
    color: #2d2a32;
    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: #cc7722;
    box-shadow: 0 0 0 4px rgba(242, 98, 34, 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: #7a111c;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #cc7722;
}

.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: #2d2a32;
}

.gallery-title .accent {
    display: block;
    color: #cc7722;
}

.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 #cc7722;
    background: #ffffff;
    color: #cc7722;
    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: #cc7722;
    color: #ffffff;
    transform: scale(1.1);
}

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

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

.testimonials {
    background: #fffaf6;
}

.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: #2d2a32;
}

.testimonials-lead {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(45, 42, 50, 0.65);
    line-height: 1.6;
}

.testimonial-card {
    background: #fff;
    /* 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;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(242, 98, 34, 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: #cc7722;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

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

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* padding: 2rem 0; */
}

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

.testimonials-slider .testimonial-card {
    scroll-snap-align: center;
    margin: 0;
}

.testimonials-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #cc7722;
    background: #ffffff;
    color: #cc7722;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonials-slider-btn:hover {
    background: #cc7722;
    color: #ffffff;
    transform: scale(1.1);
}

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

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

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .testimonials-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonials-slider {
        gap: 1.5rem;
    }
}

.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: #cc7722;
    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: #000000;
    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: #000000;
    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: #000000;
    position: relative;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    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: #d9d9d9;
    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 {
    position: relative;
    background: #cc7722;
    border-radius: 20px;
    padding: 50px 70px;
    margin: 0 auto;
    max-width: 1000px;
    width: calc(100% - 140px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    overflow: hidden;
    z-index: 2;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    max-width: 700px;
}

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

.footer-cta-description {
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 auto;
    max-width: 550px;
}

.footer-cta-button {
    background: #cc7722;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-cta-button:hover {
    background: #d9551a;
    color: #ffffff;
}

.footer-ellipse {
    display: none;
}

.footer-ellipse-1 {
    bottom: 0;
    left: 100px;
}

.footer-ellipse-2 {
    top: -50px;
    left: 100px;
}

.footer-ellipse-3 {
    top: 50%;
    left: -50px;
    transform: translateY(-50%) rotate(90deg);
}

.footer-ellipse-4 {
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(90deg);
}

.footer-bottom-section {
    background: #2d2d2d;;
    padding: 120px 0 50px;
    margin-top: -60px;
    position: relative;
    z-index: 0;
}

.footer-content {
    max-width: 1488px;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12.8px;
}

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

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.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: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.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: #cc7722;
}

.footer-nav-divider {
    width: 1px;
    height: 24px;
    background: #4a4a4a;
}

.footer-divider {
    width: 100%;
    max-width: 1488px;
    height: 1px;
    background: #4a4a4a;
}

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

.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 {
        width: calc(100% - 40px);
        padding: 40px 30px;
    }

    .footer-cta-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

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

@media (max-width: 768px) {
    .footer-cta {
        padding: 30px 20px;
        width: calc(100% - 20px);
    }

    .footer-cta-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

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

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

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

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

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

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

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-ellipse {
        display: none;
    }
}

@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: linear-gradient(135deg, #fef7ec 0%, #fff9f5 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(240, 160, 69, 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(242, 98, 34, 0.15);
    color: #cc7722;
    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: #4a311a;
    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: #7a5230;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.camp-meta-item strong {
    color: #4a311a;
    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, #f0a045 0%, #de781a 100%);
    border-color: #de781a;
    color: #fff;
}

.btn-action-primary:hover,
.btn-action-primary:focus {
    background: linear-gradient(135deg, #de781a 0%, #c76404 100%);
    border-color: #c76404;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 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: #fffdf8;
    padding: 2rem 0;
}

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

.metric-card {
    background: #fff;
    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: #7a5230;
}

.metric-card strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 2.1rem;
    color: #4a311a;
}

.camp-detail-body {
    padding: 2rem 0 4rem;
    background: #faf5ed;
}

.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: #fff;
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid #f3dfc4;
}

.panel h2 {
    margin-top: 0;
    color: #4a311a;
}

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

.panel-header h2 {
    margin: 0;
    color: #4a311a;
    font-size: 1.5rem;
    font-weight: 700;
}

.panel-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cc7722;
    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(204, 119, 34, 0.1);
    color: #de781a;
    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: #a77743;
    margin-bottom: 0.25rem;
}

.detail-list dd {
    margin: 0;
    font-size: 1.1rem;
    color: #4a311a;
}

.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 #f2e6d5;
}

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

.list strong {
    color: #4a311a;
}

.list p {
    margin: 0.25rem 0 0;
    color: #7a5230;
}

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

.list span {
    color: #a1774b;
    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(240, 160, 69, 0.95) 0%, rgba(222, 120, 26, 0.95) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(222, 120, 26, 0.3);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(240, 160, 69, 0.25);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-view-detail:hover {
    background: linear-gradient(135deg, rgba(222, 120, 26, 1) 0%, rgba(199, 100, 4, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 0.35);
    border-color: rgba(222, 120, 26, 0.5);
}

.btn-view-detail:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(240, 160, 69, 0.25);
}

.empty-state {
    color: #9a7a55;
    margin: 0;
}

/* Registrations Page Styles */
.registrations-hero {
    background: linear-gradient(135deg, #fef7ec 0%, #fff9f5 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(240, 160, 69, 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(242, 98, 34, 0.15);
    color: #cc7722;
    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: #4a311a;
    line-height: 1.2;
    font-weight: 700;
}

.registrations-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #7a5230;
    font-size: 0.95rem;
}

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

.registrations-meta-item i {
    color: #cc7722;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.registrations-meta-separator {
    color: #d4a574;
    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: #cc7722;
    color: #cc7722;
}

.btn-registration-outline:hover,
.btn-registration-outline:focus {
    background: #cc7722;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 119, 34, 0.3);
}

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

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

.btn-registration-primary {
    background: linear-gradient(135deg, #f0a045 0%, #de781a 100%);
    border-color: #de781a;
    color: #fff;
}

.btn-registration-primary:hover,
.btn-registration-primary:focus {
    background: linear-gradient(135deg, #de781a 0%, #c76404 100%);
    border-color: #c76404;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 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: #faf5ed;
    padding: 2rem 0 4rem;
}

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

.registration-row {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f3dfc4;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.registration-row:hover {
    box-shadow: 0 4px 12px rgba(211, 173, 132, 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: #4a311a;
    font-size: 1.05rem;
}

.registration-info span {
    color: #7a5230;
    font-size: 0.9rem;
}

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

.registration-details {
    border-top: 1px solid #f2e6d5;
    padding: 1.5rem;
    background: #fffdf8;
    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: #a77743;
    margin: 0;
    font-weight: 600;
}

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

.detail-content p {
    margin: 0;
    color: #4a311a;
    font-size: 0.95rem;
}

.detail-content strong {
    color: #4a311a;
    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 #f3dfc4;
    border-radius: 12px;
    padding: 1rem;
    background: #fff;
}

.family-card strong {
    display: block;
    color: #4a311a;
    margin-bottom: 0.35rem;
}

.family-card span {
    display: block;
    color: #a77743;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.family-card p {
    margin: 0.25rem 0;
    color: #7a5230;
    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, #fff7e6 0%, #fff1dc 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: #f9c65d;
    color: #8a4b00;
    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: #5a2e0e;
    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: #cc7722;
    color: #fff;
}

.organizer-step.is-complete .step-badge,
.organizer-step.is-upcoming .step-badge {
    background: #f5f5f5;
    color: #cc7722;
}

.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: #5a2e0e;
}

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

.organizer-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #a3a3a3;
    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: #d9d9d9;
    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: #fff;
    border-radius: 30px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 30px 70px rgba(209, 171, 129, 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: #5a2e0e;
    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: #5a2e0e;
}

.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: #ad6b2d;
    font-weight: 600;
}

.camp-summary-item .value {
    font-size: 1.1rem;
    color: #5a2e0e;
    font-weight: 600;
}

.materials-section h3 {
    font-size: 1.6rem;
    color: #5a2e0e;
    margin-bottom: 0.5rem;
}

.materials-section p {
    color: #7a5230;
    margin-bottom: 2rem;
}

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

.material-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.8rem;
    border: 1px solid rgba(248, 186, 104, 0.4);
    box-shadow: 0 16px 35px rgba(240, 194, 124, 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(240, 194, 124, 0.32);
}

.material-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0a045 0%, #de781a 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: #5a2e0e;
    font-size: 1.1rem;
}

.material-card p {
    color: #7a5230;
    margin: 0;
    flex-grow: 1;
    font-size: 0.95rem;
}

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

.materials-note {
    background: #fff6e7;
    border-left: 4px solid #f09a37;
    padding: 1.5rem;
    border-radius: 18px;
    color: #7a5230;
    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: #fff;
    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: #5a2e0e;
    margin-bottom: 0.5rem;
}

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

.registration-body {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f8dba8;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.registration-intro h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #5a2e0e;
}

.registration-intro p {
    color: #7a5230;
    margin: 0.75rem 0 1.75rem;
}

.camp-info-card {
    background: #fffdf7;
    border-radius: 20px;
    border: 1px solid #f4d59f;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.camp-info-card h4 {
    margin: 0 0 1.25rem;
    font-size: 1.1rem;
    color: #8a4b00;
    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: #ab6b2d;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.camp-info-item .value {
    font-size: 1.1rem;
    color: #5a2e0e;
    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(122, 82, 48, 0.9) 0%, rgba(90, 60, 35, 0.9) 100%);
    color: #fff;
    border: 1px solid rgba(122, 82, 48, 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(122, 82, 48, 0.25);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-edit-registration:hover {
    background: linear-gradient(135deg, rgba(90, 60, 35, 1) 0%, rgba(74, 49, 26, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 82, 48, 0.35);
    border-color: rgba(122, 82, 48, 0.5);
    color: #fff;
}

.btn-edit-registration:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(122, 82, 48, 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: #7a5230;
}

.registration-status-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #e1f6e4;
    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: #ffffff;
    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: #4a311a;
    font-weight: 600;
}

.edit-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7a5230;
    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: #f0f0f0;
}

.edit-modal-body {
    padding: 0;
    overflow-y: auto;
    flex: 1 1 auto;
    background: #faf5ed;
    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: #fff;
    border-radius: 28px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 20px 60px rgba(211, 173, 132, 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: #28a745;
    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: #218838;
}

.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: #ffffff;
    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: #6c757d;
    color: #fff;
}

.edit-modal-footer .btn-secondary:hover {
    background: #5a6268;
}

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

.edit-modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #c76404 0%, #de781a 100%);
    border-color: #de781a;
}

/* 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 #3567d6;
    border-radius: 50%;
    animation: spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #3567d6 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 #f3f3f3;
    border-top: 4px solid #3567d6;
    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: #ffffff;
        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 #d9c4a8;
    background: #fff;
    color: #5a2e0e;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-link-group input:focus {
    outline: none;
    border-color: #c88332;
    box-shadow: 0 0 0 3px rgba(200, 131, 50, 0.18);
}

.copy-link-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #f0a045 0%, #de781a 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: #7a5230;
    margin-bottom: 2rem;
}

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

.share-actions h5 {
    margin-bottom: 1rem;
    color: #5a2e0e;
}

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

.btn.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 600;
}

.btn.btn-outline:hover {
    background: #cc7722;
    color: #fff;
}

.btn.btn-share-email,
.btn.btn-share-link {
    border: 1px solid #c88332;
    color: #7a3b16;
    background: #fff;
    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: #c88332;
    color: #fff;
    border-color: #c88332;
}

.btn.btn-share-link.is-copied {
    background: #4caf6f;
    border-color: #4caf6f;
    color: #fff;
}

.copy-link-btn.is-copied {
    background: linear-gradient(135deg, #4caf6f 0%, #3c945b 100%);
}

.btn.btn-outline.is-copied {
    background: #a24b32;
    color: #fff;
}

.registration-next-steps {
    text-align: left;
    background: #fff8e7;
    border-radius: 18px;
    border: 1px solid #f4d59f;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
}

.registration-next-steps h5 {
    margin-top: 0;
    color: #5a2e0e;
    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: #7a5230;
    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: #7b1035;
    color: #fff;
    border: none;
}

.btn.btn-secondary:hover {
    background: #650c2b;
}


@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/resource/resource.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: #cc7722;
    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: #cc7722;
    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: #d9551a;
}

.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: #ffffff;
    color: #000000;
}

.resources-category-section {
    padding: 50px 0;
    background: #ffffff;
}

.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: #f5f5f5;
    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: #000000;
    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: #ffffff;
}

.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: #cc7722;
    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: #d9551a;
}

.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: #ffffff;
    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: #f5f5f5;
    color: #cc7722;
}

.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, #cc7722 0%, #ff9c46 100%);
    color: #ffffff;
}

.template-preview-2 {
    background: #3567d6;
    color: #ffffff;
}

.template-preview-3 {
    background: #cc7722;
    color: #ffffff;
}

.template-preview-4 {
    background: #cc7722;
    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: #ffffff;
    color: #cc7722;
    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: #f5f5f5;
    color: #cc7722;
}

.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, #fff7e9 0%, #ffe8d1 100%);
    border: 2px solid #f0a045;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(240, 160, 69, 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: #7a3b16;
    margin: 0 0 0.5rem 0;
}

.panel-description {
    color: #7a5230;
    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 #e1d4c3;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fff;
    color: #4a311a;
    transition: all 0.3s ease;
}

.link-input:focus {
    outline: none;
    border-color: #f0a045;
    box-shadow: 0 0 0 3px rgba(240, 160, 69, 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: #7a3b16;
    margin: 0 0 0.5rem 0;
}

.section-subtitle {
    color: #7a5230;
    font-size: 1rem;
    margin: 0;
}

/* Feedback Panels */
.feedback-panel {
    background: #fff;
    border: 2px solid #e1d4c3;
    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, #e1d4c3, #e1d4c3);
    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: #4a90e2;
}

.feedback-panel-participant::before {
    background: linear-gradient(90deg, #4a90e2, #357abd);
}

.feedback-panel-participant:hover {
    border-color: #357abd;
}

.feedback-panel-coordinator {
    border-color: #d37f28;
}

.feedback-panel-coordinator::before {
    background: linear-gradient(90deg, #d37f28, #b9651c);
}

.feedback-panel-coordinator:hover {
    border-color: #b9651c;
}

.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, #4a90e2 0%, #357abd 100%);
    color: #fff;
}

.feedback-icon-coordinator {
    background: linear-gradient(135deg, #d37f28 0%, #b9651c 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: #4a311a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.feedback-description {
    color: #7a5230;
    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: #7a5230;
    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 #e1d4c3;
    border-radius: 10px;
    font-size: 0.9rem;
    background: #faf9f7;
    color: #4a311a;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.feedback-input:focus {
    outline: none;
    border-color: #cc7722;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204, 119, 34, 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, #f0a045 0%, #de781a 100%);
    border: 2px solid #de781a;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-feedback-copy:hover,
.btn-feedback-copy:focus {
    background: linear-gradient(135deg, #de781a 0%, #c76404 100%);
    border-color: #c76404;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 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 #f1d8ae;
    text-align: center;
}

.qr-code-wrapper {
    display: inline-block;
    padding: 1.25rem;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e1d4c3;
    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 #6c757d;
    color: #6c757d;
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download-qr:hover,
.btn-download-qr:focus {
    background: #6c757d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 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 #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: #fff;
}

/* Button Styles */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f0a045 0%, #de781a 100%);
    color: #fff;
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #de781a 0%, #c86915 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 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: #ffffff;
}

.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: #ffffff;
    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: #ffffff;
    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: #cc7722;
    color: #cc7722;
}

.view-btn.active {
    background: #cc7722;
    border-color: #cc7722;
    color: #ffffff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.resource-card {
    background: #ffffff;
    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: #cc7722;
    font-size: 16px;
}

.badge-planning {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    background: #4A90E2;
    color: #ffffff;
}

.resource-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.resource-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #7a111c;
    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: #f5f5f5;
    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: #000000;
    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: #ffffff;
    color: #000000;
    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: #cc7722;
    color: #cc7722;
}

.btn-download-resource {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #cc7722;
    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: #d9551a;
    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: #ffffff;
    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: #7a111c;
    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, #fef7ec 0%, #fff9f5 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(240, 160, 69, 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(242, 98, 34, 0.15);
    color: #cc7722;
    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: #4a311a;
    line-height: 1.2;
    font-weight: 700;
}

.camp-list-header p {
    color: #7a5230;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.camp-list-grid {
    background: #faf5ed;
    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: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid #f3dfc4;
    box-shadow: 0 4px 15px rgba(208, 171, 132, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.camp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #cc7722, #f0a045);
    transition: all 0.3s ease;
}

.camp-card:hover {
    box-shadow: 0 8px 30px rgba(208, 171, 132, 0.25);
    transform: translateY(-4px);
    border-color: #cc7722;
}

.camp-card-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f1d8ae;
}

.camp-card-title {
    margin: 0;
    font-size: 0.9rem;
    color: #4a311a;
    line-height: 1.3;
    font-weight: 700;
    min-height: 2.3rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.camp-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.camp-card-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.camp-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.camp-meta-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.camp-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a77743;
    font-weight: 600;
}

.camp-meta-value {
    font-size: 0.9rem;
    color: #4a311a;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

.camp-card-actions {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px solid #f1d8ae;
}

.btn-camp-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #f0a045 0%, #de781a 100%);
    border: 2px solid #de781a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-camp-view:hover,
.btn-camp-view:focus {
    background: linear-gradient(135deg, #de781a 0%, #c76404 100%);
    border-color: #c76404;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 160, 69, 0.4);
}

.btn-camp-view i {
    font-size: 0.8rem;
}

.camp-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #9a7a55;
    border: 2px dashed #e2c8a8;
    border-radius: 20px;
    background: #fff;
    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: #cc7722 !important;
    border-color: #cc7722 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 119, 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: #cc7722 !important;
    border-color: #cc7722 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 119, 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, #f0a045 0%, #de781a 100%) !important;
    border-color: #de781a !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: 0.85rem;
        min-height: 2.1rem;
    }
}

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

    .camp-list-header h1 {
        font-size: 1.75rem;
    }

    .camp-card {
        padding: 1.15rem;
        border-radius: 14px;
    }

    .camp-card-title {
        font-size: 0.75rem;
        min-height: 2rem;
    }

    .camp-meta-item {
        gap: 0.65rem;
    }

    .camp-meta-item i {
        font-size: 0.9rem;
        width: 18px;
    }

    .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: #cc7722 !important;
    border-color: #cc7722 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 119, 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: #cc7722 !important;
    border-color: #cc7722 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 119, 34, 0.3) !important;
    z-index: 1;
}

.resources-pagination nav > div:last-child > div:last-child span[aria-current] span {
    background: linear-gradient(135deg, #f0a045 0%, #de781a 100%) !important;
    border-color: #de781a !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: #cc7722 !important;
    border-color: #cc7722 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 119, 34, 0.3) !important;
}

.resources-pagination .pagination .active span,
.resources-pagination .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #f0a045 0%, #de781a 100%) !important;
    border-color: #de781a !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: linear-gradient(135deg, #fff7e6 0%, #fff1dc 100%);
    padding: 3rem 0 1.5rem;
}
.registration-hero-card {
    display: flex;
    justify-content: center;
}
.registration-hero-header {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    color: #5a2e0e;
    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: #7a111c;
    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: #cc7722;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
}
.camp-meta-item div {
    color: #4a311a;
    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: #7a5230;
    margin-right: 0.25rem;
}
.camp-meta-item a {
    color: #cc7722;
    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: #faf5ed;
    padding: 3rem 0 5rem;
}
.camp-registration-form {
    background: #fff;
    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 #f1d8ae;
    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: #7a5230;
    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 #d9c7b2;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #4a311a;
    background: #fff;
    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: #c88332;
    box-shadow: 0 0 0 3px rgba(200, 131, 50, 0.18);
}
.form-section legend {
    padding: 0 0.75rem;
    font-size: 1.35rem;
    color: #7a3b16;
    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 #e1d4c3;
    border-radius: 18px;
    padding: 1.5rem;
    background: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}
.family-member-card header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7a3b16;
    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: #fff;
    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: #7a3b16;
    font-size: 1.5rem;
}
.payment-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;
}
.payment-modal-close:hover {
    color: #c0392b;
}
.payment-modal-body {
    padding: 2rem;
}
.payment-amount {
    font-size: 1.2rem;
    color: #4a311a;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: #fff7e9;
    border-radius: 12px;
}
.payment-amount strong {
    color: #d37f28;
    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: #fff;
    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: #ffffff;
    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: #cc7722;
    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: #d9551a;
}

.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: #000;
    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: #7a111c;
    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: #cc7722;
    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: #cc7722;
    background: #fff9f5;
}

.custom-tab-btn.active {
    color: #cc7722;
    background: #fff9f5;
    border-bottom-color: #cc7722;
}

.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: #7a111c;
    margin: 0 0 1rem 0;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.material-item:hover {
    border-color: #cc7722;
    box-shadow: 0 2px 8px rgba(204, 119, 34, 0.1);
}

.material-item.active {
    background: #fff9f5;
    border-color: #cc7722;
}

.material-icon {
    width: 32px;
    height: 32px;
    background: #8B4513;
    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: #f5f5f5;
    color: #cc7722;
}

.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: #7a111c;
    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 #cc7722;
    background: #fff9f5;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #151414;
    font-weight: 500;
}

.quick-info-box {
    border: 1px solid #ffcc80;
    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: #cc7722;
    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: #cc7722;
    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: #cc7722;
    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;
    }
}

/* Coordinator Feedback Panel Styles */
.coordinator-feedback-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

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

.panel-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel-icon-wrapper i {
    font-size: 1.5rem;
    color: #fff;
}

.coordinator-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #f0a045;
}

.status-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-icon i {
    font-size: 1.25rem;
}

.status-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.status-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.status-value {
    font-size: 1rem;
    font-weight: 600;
}

.status-success {
    color: #28a745;
}

.status-neutral {
    color: #6c757d;
}

.coordinator-attachments {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.attachment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.attachment-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.attachment-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.attachment-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.attachment-label {
    font-size: 0.95rem;
    color: #4a311a;
    font-weight: 600;
}

.attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f0a045;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.attachment-link:hover {
    color: #d88a2e;
    text-decoration: underline;
}

.photo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.photo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #17a2b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.photo-link:hover {
    background: #17a2b8;
    color: #fff;
    border-color: #17a2b8;
    transform: translateY(-1px);
}

.coordinator-comments {
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4a311a;
    font-weight: 600;
    font-size: 1.1rem;
}

.comments-header i {
    color: #f0a045;
}

.comments-content {
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f0a045;
    color: #2d2a32;
    line-height: 1.7;
    white-space: pre-wrap;
    font-size: 0.95rem;
}

/* Participant Feedback Panel Styles */
.participant-feedback-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.participant-feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.feedback-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feedback-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #17a2b8;
}

.feedback-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f8f9fa;
}

.feedback-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-avatar i {
    font-size: 1rem;
    color: #fff;
}

.feedback-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.feedback-name {
    color: #4a311a;
    font-size: 0.95rem;
    font-weight: 600;
}

.feedback-date {
    color: #6c757d;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feedback-date i {
    font-size: 0.7rem;
}

.feedback-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feedback-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.feedback-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-item-icon i {
    font-size: 0.85rem;
}

.feedback-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.feedback-item-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.feedback-item-text {
    margin: 0;
    color: #2d2a32;
    font-size: 0.875rem;
    line-height: 1.5;
}

.feedback-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-neutral {
    background: #e9ecef;
    color: #6c757d;
}

.feedback-comments .feedback-item-text {
    white-space: pre-wrap;
    padding: 0.6rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #17a2b8;
    font-size: 0.85rem;
}

/* Registration Link Panel QR Code */
.registration-link-panel .qr-code-section {
    text-align: center;
}

.registration-link-panel .qr-code-wrapper {
    margin: 0 auto 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coordinator-status-grid {
        grid-template-columns: 1fr;
    }
    
    .participant-feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .status-card,
    .attachment-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .coordinator-feedback-panel,
    .participant-feedback-panel {
        padding: 1.5rem;
    }
}
