/* ==========================================================================
   THE CROWN EXPERIENCE - DESIGN SYSTEM & BRANDING STYLESHEET
   Consistent with itsmeshawntel.me (Lavender/Charcoal) with gold accents.
   ========================================================================== */

/* --- Design Tokens / Variables --- */
:root {
    --color-accent: #279CF5;
    --color-glow: rgba(39, 156, 245, 0.45);
    --color-gold-start: #DFBA73;
    --color-gold-end: #C5A059;
    --color-gold-glow: rgba(223, 186, 115, 0.35);
    --color-charcoal: #262728;
    --color-gray-text: #585858;
    --color-bg-white: #ffffff;
    --color-bg-lavender-tint: #faf8fc;
    --color-line-divider: rgba(0, 0, 0, 0.07);
    --color-glass-bg: rgba(255, 255, 255, 0.75);
    --color-glass-border: rgba(255, 255, 255, 0.4);
    --color-glass-shadow: rgba(38, 39, 40, 0.06);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.2s ease-out;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-gray-text);
    background-color: var(--color-bg-lavender-tint);
    overflow-x: hidden;
    position: relative;
    padding-top: 80px; /* To prevent header overlap */
}

/* --- Signature Gridline Background --- */
.background-lines {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1140px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: -1;
    padding: 0 20px;
}

.line-col {
    width: 1px;
    height: 100%;
    background-color: var(--color-line-divider);
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 100px 0;
}

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

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.5rem;
}

.paragraph-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--color-gray-text);
}

.accent-text-gold {
    background: linear-gradient(135deg, var(--color-gold-start) 0%, var(--color-gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Interactive Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-start) 0%, var(--color-gold-end) 100%);
    color: var(--color-bg-white);
    box-shadow: 0 8px 20px var(--color-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(223, 186, 115, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-charcoal);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px var(--color-glow);
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-gold-start) 0%, var(--color-gold-end) 100%);
    color: var(--color-bg-white);
    padding: 14px 40px;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 8px 20px var(--color-gold-glow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(223, 186, 115, 0.5);
}

/* --- Header / Navigation Bar --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(250, 248, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px var(--color-glass-shadow);
    border-bottom: 1px solid var(--color-line-divider);
    height: 70px;
}

.header-container {
    max-width: 1140px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

/* Styled text logo mimicking her signature website logo */
.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-charcoal);
    transition: var(--transition-smooth);
    letter-spacing: -0.5px;
}

.brand-logo .logo-accent {
    color: var(--color-accent);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.site-header.scrolled .brand-logo {
    font-size: 1.4rem;
}

/* Desktop Navbar */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-charcoal);
    transition: var(--transition-quick);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-quick);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-bg-white);
    background: linear-gradient(135deg, var(--color-gold-start) 0%, var(--color-gold-end) 100%);
    box-shadow: 0 4px 10px var(--color-gold-glow);
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(223, 186, 115, 0.45);
}

/* Mobile Nav Toggle Icon */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: var(--transition-smooth);
}

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    min-height: calc(90vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 10% 20%, rgba(254, 240, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 80%);
    padding: 60px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/crown-experience-bg-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.12;
    background-image: radial-gradient(var(--color-accent) 1px, transparent 0), radial-gradient(var(--color-gold-start) 1.5px, transparent 0);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-accent);
    color: var(--color-charcoal);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.gold-sparkle-icon {
    color: var(--color-gold-end);
    animation: pulseGlow 2s infinite ease-in-out;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-gray-text);
}

.hero-dates {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.date-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-charcoal);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.date-tag i {
    color: var(--color-accent);
}

.hero-taglines {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Floating down arrow styling */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-smooth);
    animation: bounceVertical 2s infinite;
    z-index: 5;
}

.scroll-down-arrow:hover {
    color: var(--color-gold-end);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* --- About Section Styles --- */
.about-section {
    background-color: var(--color-bg-white);
    position: relative;
    border-top: 1px solid var(--color-line-divider);
    border-bottom: 1px solid var(--color-line-divider);
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 24px;
}

.experience-note {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding: 16px 24px;
    background-color: var(--color-bg-lavender-tint);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    max-width: 100%;
    text-align: left;
}

.accent-icon-main {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-top: 3px;
}

.experience-note span {
    font-size: 0.95rem;
    color: var(--color-charcoal);
}

/* High Craft Visual Card Graphic */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aesthetic-photo-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 400px;
}

.photo-card-glow {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(223, 186, 115, 0.4) 100%);
    filter: blur(12px);
    opacity: 0.35;
    z-index: 1;
}

.aesthetic-card {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-lavender-tint);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px var(--color-glass-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    overflow: hidden;
}

.aesthetic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
}

.card-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.text-accent {
    color: var(--color-accent);
}

.card-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

.card-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-body-paragraph {
    font-size: 0.95rem;
    color: var(--color-gray-text);
}

.card-footer-badge {
    align-self: flex-start;
    padding: 6px 18px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

/* --- Activities Section Styles --- */
.section-header {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-label.text-center, 
.section-title.text-center {
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.12);
    border-color: var(--color-accent);
}

.activity-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: var(--color-bg-lavender-tint);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.activity-card:hover .activity-icon-box {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    transform: rotate(6deg);
}

.activity-name {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.activity-desc {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    line-height: 1.6;
}

/* --- Highlights & Divisions Styles --- */
.highlights-section {
    background-color: var(--color-bg-lavender-tint);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
}

.highlight-detail-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.detail-header h4 {
    font-size: 1.65rem;
    font-weight: 700;
}

.icon-gold {
    font-size: 1.8rem;
    color: var(--color-gold-end);
    animation: floatVertical 3s infinite ease-in-out;
}

.detail-intro {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    margin-bottom: 30px;
}

/* Divisions lists */
.detail-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.detail-list li {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dashed var(--color-line-divider);
}

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

.division-badge {
    padding: 4px 14px;
    background-color: var(--color-bg-lavender-tint);
    border: 1px solid var(--color-accent);
    color: var(--color-charcoal);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    width: 130px;
    text-align: center;
    margin-right: 20px;
}

.detail-list li span {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    font-weight: 500;
}

.detail-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--color-line-divider);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

/* Optionals subcards */
.optionals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.optional-badge-card {
    background-color: var(--color-bg-lavender-tint);
    border: 1px solid var(--color-line-divider);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.optional-badge-card:hover {
    background-color: var(--color-bg-white);
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 123, 255,0.08);
}

.optional-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    color: var(--color-gold-end);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 12px auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.02);
}

.optional-badge-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.optional-badge-card p {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--color-gray-text);
    margin-bottom: 0;
}

/* --- Host & Mission Section Styles --- */
.host-section {
    background-color: var(--color-bg-white);
}

.host-container-card {
    background-color: var(--color-bg-lavender-tint);
    border: 1px solid var(--color-line-divider);
    border-radius: 24px;
    padding: 60px;
}

.host-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Media placeholder with branding structures */
.host-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 0 auto;
}

.frame-backdrop {
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: var(--color-accent);
    opacity: 0.15;
    z-index: 1;
}

.frame-lines {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--color-gold-start);
    border-right: 2px solid var(--color-gold-start);
    opacity: 0.5;
    z-index: 1;
}

.host-image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #3e3f40 100%);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.host-profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid var(--color-line-divider);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    z-index: 2;
    transition: var(--transition-smooth);
}

.host-profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255,0.15);
}


.host-placeholder-icon {
    font-size: 3rem;
    color: var(--color-gold-start);
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(223, 186, 115, 0.4));
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-bg-white);
    margin-bottom: 4px;
}

.placeholder-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Info content */
.host-info {
    display: flex;
    flex-direction: column;
}

.host-paragraph {
    font-size: 1.05rem;
    color: var(--color-gray-text);
    margin-bottom: 20px;
}

.quote-card {
    background-color: var(--color-bg-white);
    border-left: 4px solid var(--color-gold-start);
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin-top: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2.2rem;
    color: rgba(223, 186, 115, 0.12);
    pointer-events: none;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Registration Section Styles --- */
.register-section {
    position: relative;
    background: radial-gradient(circle at 90% 80%, rgba(254, 240, 255, 0.4) 0%, rgba(255, 255, 255, 0.9) 70%);
    border-top: 1px solid var(--color-line-divider);
}

.register-form-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 24px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 45px rgba(38,39,40,0.04);
    position: relative;
    overflow: hidden;
}

.register-form-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold-start) 0%, var(--color-gold-end) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-bg-lavender-tint);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px auto;
    box-shadow: 0 4px 10px rgba(0, 123, 255,0.1);
}

.form-header h3 {
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    margin-bottom: 0;
}

/* Form layouts */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: #cf2e2e;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--color-line-divider);
    background-color: var(--color-bg-lavender-tint);
    color: var(--color-charcoal);
    outline: none;
    transition: var(--transition-quick);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23262728' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(0, 123, 255,0.18);
}

/* Error states */
.form-group.has-error input,
.form-group.has-error select {
    border-color: #cf2e2e;
    background-color: rgba(207,46,46,0.01);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus {
    box-shadow: 0 0 0 3px rgba(207,46,46,0.1);
}

.error-msg {
    display: none;
    font-size: 0.78rem;
    color: #cf2e2e;
    margin-top: 6px;
    font-weight: 600;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Optionals Checkboxes styling */
.form-group-checkboxes {
    margin-bottom: 24px;
}

.checkboxes-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-text);
    transition: var(--transition-quick);
}

.checkbox-label input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid var(--color-line-divider);
    background-color: var(--color-bg-lavender-tint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-quick);
}

.checkbox-label input:checked + .custom-checkbox {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.checkbox-label input:checked + .custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--color-bg-white);
}

.checkbox-label:hover .custom-checkbox {
    border-color: var(--color-accent);
}

.checkbox-label input:checked ~ span:last-child {
    color: var(--color-charcoal);
    font-weight: 600;
}

.form-submit-container {
    text-align: center;
    margin-top: 35px;
}

/* Success form state */
.form-success-box {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 208, 132, 0.1);
    color: #00d084;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px auto;
}

.form-success-box h4 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-success-box p {
    font-size: 1.05rem;
    color: var(--color-gray-text);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Site Footer Styles --- */
.site-footer {
    background-color: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-email {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.8);
}

.contact-email a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-quick);
}

.contact-email a:hover {
    color: var(--color-bg-white);
}

.copyright {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.olife-link {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-quick);
}

.olife-link:hover {
    color: var(--color-accent);
}

.social-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    text-align: right;
}

.social-links {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.15rem;
    transition: var(--transition-quick);
}

.social-links a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* --- Scroll reveal animations --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- CSS Micro Keyframe Animations --- */
@keyframes bounceVertical {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes floatVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }
}

/* Base static transitions */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

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

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

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

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


/* ==========================================================================
   MEDIA QUERIES - FULLY RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    body {
        padding-top: 70px;
    }
    
    .site-header {
        height: 70px;
    }
    
    .hero-title {
        font-size: 3.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.55rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .host-container-card {
        padding: 40px;
    }
    
    .host-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Drawer Toggle */
    .nav-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-lavender-tint);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-line-divider);
    }
    
    .navbar.mobile-active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .nav-btn {
        padding: 12px 35px;
        font-size: 1.1rem;
    }
    
    /* Toggle Icon Animation */
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-dates {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1; /* Place visual elements above on mobile for appeal */
    }
    
    /* Host */
    .host-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Form */
    .register-form-card {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .social-label {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-detail-card {
        padding: 30px 20px;
    }
    
    .optionals-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .division-badge {
        width: 110px;
        margin-right: 12px;
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   CAMP GUIDELINES & RULES SPECIFIC LAYOUT STYLES
   ========================================================================== */

.guidelines-page {
    background-color: var(--color-bg-lavender-tint);
}

.guidelines-hero-section {
    position: relative;
    padding: 100px 0 50px 0;
    background: radial-gradient(circle at 50% 10%, rgba(254, 240, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    text-align: center;
}

.guidelines-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.guidelines-hero-subtitle {
    font-size: 1.45rem;
    font-weight: 500;
    margin-top: 10px;
    color: var(--color-gray-text);
}

.guidelines-intro-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 900px;
    margin: 0 auto 50px auto;
    box-shadow: 0 10px 30px var(--color-glass-shadow);
}

/* Grid Layout for Guidelines Cards */
.guidelines-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.guidelines-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(38,39,40,0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.guidelines-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 123, 255,0.08);
    border-color: var(--color-accent);
}

.rule-title-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-line-divider);
    padding-bottom: 16px;
}

.rule-number {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-accent);
}

.rule-title-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.rule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.rule-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-gray-text);
}

.rule-list li i {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Guidelines Footer Thank You Card */
.guidelines-footer-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 60px auto 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px var(--color-glass-shadow);
}

.guidelines-footer-thankyou {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 30px;
}

.guidelines-footer-btn-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Guidelines Responsiveness overrides */
@media (max-width: 900px) {
    .guidelines-layout {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .guidelines-intro-card,
    .guidelines-footer-card {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 600px) {
    .guidelines-hero-section {
        padding: 80px 0 30px 0;
    }
    
    .guidelines-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .guidelines-intro-card {
        padding: 30px 20px;
    }
    
    .guidelines-card {
        padding: 30px 20px;
    }
    
    .guidelines-footer-card {
        padding: 40px 20px;
    }
    
    .guidelines-footer-thankyou {
        font-size: 1.15rem;
    }
    
    .guidelines-footer-btn-box {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    
    .guidelines-footer-btn-box .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   OFFICIAL REGISTRATION PAGE STYLING BLOCKS
   ========================================================================== */

.register-page {
    background-color: var(--color-bg-lavender-tint);
}

.register-content-section {
    position: relative;
    padding-top: 20px;
}

.register-greeting-box {
    background-color: var(--color-bg-lavender-tint);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 16px 16px 0;
    padding: 24px 30px;
    margin-bottom: 45px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255,0.04);
}

.greeting-icon {
    font-size: 2rem;
    color: var(--color-accent);
    animation: floatVertical 3s infinite ease-in-out;
}

.greeting-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 0;
    line-height: 1.55;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-line-divider);
    padding-bottom: 12px;
}

.form-section-title i {
    font-size: 1.25rem;
    color: var(--color-accent);
}

.form-section-title h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: -0.3px;
}

.optional-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-gray-text);
    margin-left: 6px;
    font-style: italic;
}

.section-intro-text {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.field-hint {
    font-size: 0.78rem;
    color: var(--color-gray-text);
    margin-top: 6px;
    font-style: italic;
    display: block;
}

/* Custom Female/Male inline radio buttons */
.radio-group-container {
    display: flex;
    gap: 24px;
    margin-top: 10px;
}

.radio-box-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    transition: var(--transition-quick);
}

.radio-box-label input {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--color-line-divider);
    background-color: var(--color-bg-lavender-tint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
    flex-shrink: 0;
}

.radio-box-label input:checked + .custom-radio {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 123, 255,0.15);
}

.radio-box-label input:checked + .custom-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
}

.radio-box-label:hover .custom-radio {
    border-color: var(--color-accent);
}

/* Entries and optional lists */
.entries-selection-card {
    background-color: var(--color-bg-lavender-tint);
    border: 1px solid var(--color-line-divider);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.entry-fee-item {
    padding: 18px 0;
    border-bottom: 1px dashed var(--color-line-divider);
}

.entry-fee-item:first-of-type {
    padding-top: 0;
}

.entry-fee-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.fee-checkbox-label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.fee-text-wrapper {
    margin-left: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fee-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.fee-rates {
    font-size: 0.8rem;
    color: var(--color-gray-text);
    font-weight: 500;
    margin-top: 2px;
}

.fee-price-tag {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-gold-end);
}

/* Optionals container list */
.nested-optionals-box {
    margin-top: 20px;
    padding: 24px;
    background-color: var(--color-bg-white);
    border: 1px dashed var(--color-accent);
    border-radius: 12px;
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.nested-optionals-box.active {
    display: block;
}

.nested-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Payment preferences */
.payment-selection-card {
    background-color: var(--color-bg-lavender-tint);
    border: 1px solid var(--color-line-divider);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.payment-radio-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 12px;
    padding: 18px 20px;
    transition: var(--transition-smooth);
}

.payment-radio-label:hover {
    border-color: var(--color-accent);
    box-shadow: 0 5px 15px rgba(0, 123, 255,0.04);
}

.payment-radio-label input {
    display: none;
}

.payment-radio-label .custom-radio {
    margin-top: 3px;
}

.payment-radio-label input:checked + .custom-radio {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.payment-desc-wrapper {
    display: flex;
    flex-direction: column;
}

.payment-method-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-charcoal);
    transition: var(--transition-quick);
}

.payment-method-desc {
    font-size: 0.82rem;
    color: var(--color-gray-text);
    margin-top: 4px;
    line-height: 1.45;
}

.payment-radio-label input:checked ~ .payment-desc-wrapper .payment-method-title {
    color: var(--color-accent);
}

/* Live dynamic calculation bill card */
.dynamic-invoice-box {
    margin-top: 30px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--color-gray-text);
    font-weight: 500;
}

#invoice-fee-row {
    transition: var(--transition-smooth);
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 2px solid var(--color-line-divider);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-charcoal);
}

.invoice-total-row span:last-child {
    color: var(--color-gold-end);
}

.payment-refund-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #cf2e2e;
    margin-top: 24px;
    font-weight: 600;
}

.payment-refund-notice i {
    font-size: 1rem;
}

/* Agreements Card signatures */
.agreements-card {
    background-color: var(--color-bg-lavender-tint);
    border: 1px solid var(--color-line-divider);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.agreements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.agreements-list li {
    position: relative;
}

.agreements-list li .checkbox-label {
    align-items: flex-start;
}

.agreements-list li .checkbox-label .custom-checkbox {
    margin-top: 2px;
}

.agreements-list li .checkbox-label span {
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--color-charcoal);
}

.rule-hyperlink {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-quick);
}

.rule-hyperlink:hover {
    text-decoration: underline;
}

.agree-err {
    margin-left: 32px;
}

.signature-group {
    border-top: 1px dashed var(--color-line-divider);
    padding-top: 24px;
    margin-top: 10px;
}

.signature-group label {
    font-weight: 700;
}

/* Responsive adjustment rules */
@media (max-width: 768px) {
    .register-greeting-box {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .greeting-text {
        font-size: 1.1rem;
    }
    
    .entries-selection-card,
    .payment-selection-card,
    .agreements-card {
        padding: 20px;
    }
    
    .fee-price-tag {
        font-size: 1.2rem;
    }
    
    .fee-name {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   EXPLORE CAMP PAGE SPECIFIC STYLES
   ========================================================================== */

/* Quick Jump Navigation Bar */
.btn-jump:hover {
    background-color: rgba(0, 123, 255, 0.08);
    color: var(--color-accent) !important;
    transform: translateY(-1px);
}

.btn-jump:active {
    transform: translateY(0);
}

/* Timeline Layout */
.timeline-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
}

.timeline-day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.timeline-day-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.timeline-day-header .day-span {
    background-color: rgba(0, 123, 255, 0.12);
    color: var(--color-charcoal);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.timeline-items {
    position: relative;
    border-left: 2px solid var(--color-line-divider);
    padding-left: 30px;
    margin-left: 14px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-node {
    position: absolute;
    left: -41px;
    top: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-bg-lavender-tint);
    transition: var(--transition-quick);
    z-index: 2;
}

.timeline-item:hover .timeline-node {
    background-color: var(--color-accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--color-glow);
}

.timeline-time {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold-end);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.timeline-content-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-line-divider);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 15px var(--color-glass-shadow);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content-card {
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(38, 39, 40, 0.05);
    border-color: rgba(0, 123, 255, 0.35);
}

.timeline-content-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-content-card p {
    font-size: 0.88rem;
    color: var(--color-gray-text);
    margin-bottom: 0;
    line-height: 1.5;
}

.highlight-border-accent {
    border-left: 4px solid var(--color-accent) !important;
}

.required-tag {
    background-color: rgba(0, 123, 255, 0.12);
    color: var(--color-charcoal);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Featured Shimmering Prize Module */
.gold-shimmer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(223, 186, 115, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    animation: shimmerGlow 6s infinite alternate ease-in-out;
}

@keyframes shimmerGlow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Showcase & Schedule Styling Responsive Adjustments */
@media (max-width: 600px) {
    .timeline-items {
        padding-left: 20px;
        margin-left: 10px;
    }
    
    .timeline-node {
        left: -31px;
    }
    
    .timeline-content-card {
        padding: 16px 20px;
    }
    
    .showcase-times-card {
        padding: 24px !important;
    }
    
    .showcase-time-text {
        font-size: 1.3rem !important;
    }
}

/* Inline time block for timeline headers */
.header-time-span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--color-gray-text);
    margin-left: 8px;
    display: inline-block;
}

@media (max-width: 600px) {
    .header-time-span {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        font-size: 1.05rem;
    }
}

/* Custom Desktop Background for About Section */
@media screen and (min-width: 992px) {
    .about-section {
        background-image: url('assets/section-bg-1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
