.tribe-events-category-kids-camp {
    background-color: #ffeb83 !important;
}

/* ===============================================
   CAMP WEBSITE - COMPLETE CSS (UPDATED)
   =============================================== */

/* =================================
   GLOBAL STYLES
   ================================= */

html, body {
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 80px; /* Adjust this value as needed */
	overflow-x: hidden;
}

/* =================================
   MAIN CONTENT SECTION (WHITE BOXES)
   ================================= */

.wp-block-group.content-section {
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 3rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    margin: 3rem auto;
    max-width: 1000px;
}

.wp-block-group.content-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.wp-block-group.content-section h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* =================================
   FULL-WIDTH BACKGROUND SECTIONS
   ================================= */

.wp-block-group.alignfull.has-background,
.wp-block-group.section-background.alignfull,
.wp-block-group.alignfull.section-background {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 4rem 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.wp-block-group.alignfull .wp-block-group.content-section,
.wp-block-group.section-background.alignfull .wp-block-group.content-section,
.wp-block-group.alignfull.section-background .wp-block-group.content-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section-background {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4rem 2rem;
    margin-top: 0;
    margin-bottom: 0;
}

.section-background .content-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* =================================
   SECTION SPACING FIXES
   ================================= */

/* Ensure proper spacing for standalone content sections */
.wp-block-group.content-section {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Remove bottom margin from last content section */
.wp-block-group.content-section:last-child,
.wp-block-group.content-section:last-of-type {
    margin-bottom: 0 !important;
}

/* Additional selectors to catch various structures */
div.wp-block-group.content-section:last-child,
div.wp-block-group.content-section:last-of-type,
.content-section:last-child,
.content-section:last-of-type {
    margin-bottom: 0 !important;
}

/* Nuclear option - remove bottom margin from any content section that's the last element */
*:last-child.wp-block-group.content-section,
*:last-child.content-section {
    margin-bottom: 0 !important;
}

/* Also remove any top margin from footer elements */
footer,
.site-footer,
.footer,
#footer {
    margin-top: 0 !important;
}

/* Remove margins between adjacent full-width background sections */
.wp-block-group.alignfull.has-background + .wp-block-group.alignfull.has-background,
.wp-block-group.section-background.alignfull + .wp-block-group.section-background.alignfull,
.wp-block-group.alignfull.section-background + .wp-block-group.alignfull.section-background,
.wp-block-group.alignfull.has-background + .wp-block-group.section-background.alignfull,
.wp-block-group.section-background.alignfull + .wp-block-group.alignfull.has-background {
    margin-top: 0 !important;
}

/* Only add spacing when transitioning from full-width to regular content */
.wp-block-group.alignfull.has-background + .wp-block-group.content-section,
.wp-block-group.section-background.alignfull + .wp-block-group.content-section,
.wp-block-group.alignfull.section-background + .wp-block-group.content-section {
    margin-top: 3rem !important;
}

/* Add spacing from regular content to full-width */
.wp-block-group.content-section + .wp-block-group.alignfull.has-background,
.wp-block-group.content-section + .wp-block-group.section-background.alignfull,
.wp-block-group.content-section + .wp-block-group.alignfull.section-background {
    margin-top: 3rem !important;
}

/* =================================
   ACTIVITIES & RECREATION SECTION
   ================================= */

/* Light Grey container - REUSABLE for any section */
.wp-block-group.light-grey-container {
    background: #f8f9fa;
    padding: 2rem 1rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Activities grid - 4 COLUMN RESPONSIVE */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.activity-item {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #2c3e50;
    transition: background 0.2s ease;
    font-size: 1rem;
}

.activity-item:hover {
    background: #d5dbdb;
}

/* Facilities grid - 4 COLUMN RESPONSIVE */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.facility-item {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #27ae60;
    font-size: 1rem;
}

.facility-item:hover {
    background: #d4f0d4;
}

/* =================================
   COST & PAYMENT SECTION
   ================================= */

/* Pricing Tiers Container - SIDE BY SIDE */
.pricing-tiers {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin: 1.5rem 0 0 0 !important;
    align-items: stretch;
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
}

/* Remove any margins from pricing tier elements */
.pricing-tier {
    margin: 0 !important;
    margin-bottom: 0 !important;
}

/* Individual Pricing Tier */
.pricing-tier {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.pricing-tier:hover {
    border-color: #dee2e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Most Popular Tier Styling - FIXED VERSION */
.pricing-tier.most-popular {
    border-color: #f39c12;
    border-width: 3px;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.25);
    background: linear-gradient(135deg, #fff 0%, #fefbf3 100%);
    /* Removed transform: scale(1.05) to prevent overflow */
}

/* Enhanced Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

/* Price Styling */
.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Tier Name */
.tier-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.5rem;
}

/* Tier Description */
.tier-description {
    font-size: 1rem;
    color: #6c757d;
}

/* Notice Boxes - AGGRESSIVE MARGIN RESET */
.notice-box,
.notice-box.assistance-notice,
.notice-box.payment-notice,
.notice-box.leaders-notice {
    width: 100% !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    line-height: 1.6;
    box-sizing: border-box;
    display: block !important;
    clear: both !important;
    flex: none !important;
    order: 999 !important;
    position: relative !important;
    font-size: 1rem;
}

/* FORCE tight spacing after pricing tiers */
.pricing-tiers + .notice-box,
.pricing-tiers + .notice-box.assistance-notice,
.pricing-tiers + .notice-box.leaders-notice {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    flex-basis: 100% !important;
    order: 999 !important;
}

/* FORCE tight spacing between notice boxes */
.notice-box + .notice-box,
.notice-box.assistance-notice + .notice-box.payment-notice,
.notice-box.assistance-notice + .notice-box.leaders-notice,
.notice-box.leaders-notice + .notice-box {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* Nuclear option - override ALL possible margin sources */
.content-section .notice-box,
.content-section .notice-box.assistance-notice,
.content-section .notice-box.payment-notice,
.content-section .notice-box.leaders-notice {
    margin: 0 !important;
}

.content-section .pricing-tiers + .notice-box,
.content-section .pricing-tiers + .notice-box.assistance-notice,
.content-section .pricing-tiers + .notice-box.leaders-notice {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

.content-section .notice-box + .notice-box,
.content-section .notice-box.assistance-notice + .notice-box.payment-notice,
.content-section .notice-box.assistance-notice + .notice-box.leaders-notice,
.content-section .notice-box.leaders-notice + .notice-box {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* Override WordPress/theme margins */
.wp-block-group .notice-box,
.wp-block-group .notice-box.assistance-notice,
.wp-block-group .notice-box.payment-notice,
.wp-block-group .notice-box.leaders-notice {
    margin: 0 !important;
}

.wp-block-group .pricing-tiers + .notice-box,
.wp-block-group .pricing-tiers + .notice-box.assistance-notice,
.wp-block-group .pricing-tiers + .notice-box.leaders-notice {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* Alternative selectors in case the above don't work */
div.pricing-tiers + div.notice-box {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

div.notice-box + div.notice-box {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* Assistance Notice (Yellow/Cream) */
.assistance-notice {
    background: #fff9c4;
    border-left: 4px solid #f1c40f;
}

/* Payment Notice (Light Green) */
.payment-notice {
    background: #d4f0d4;
    border-left: 4px solid #27ae60;
    margin-bottom: 2rem !important;
    margin-top: 0 !important;
}

/* Leaders Notice (Light Purple) */
.leaders-notice {
    background: #f3f0ff;
    border-left: 4px solid #8e44ad;
}

/* FORCE payment notice to have only controlled spacing */
.notice-box.payment-notice {
    margin: 0 !important;
    margin-bottom: 2rem !important;
}

.notice-box.assistance-notice + .notice-box.payment-notice {
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
}

/* Override any WordPress margins on payment notice */
.content-section .notice-box.payment-notice {
    margin: 0 !important;
    margin-bottom: 2rem !important;
}

.content-section .notice-box.assistance-notice + .notice-box.payment-notice {
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
}

/* Nuclear option for payment notice */
div.notice-box.payment-notice {
    margin: 0 !important;
    margin-bottom: 2rem !important;
}

div.notice-box.assistance-notice + div.notice-box.payment-notice {
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
}

.notice-box p {
    margin: 0.5rem 0 !important;
}

.notice-box p:first-child {
    margin-top: 0 !important;
}

.notice-box p:last-child {
    margin-bottom: 0 !important;
}

/* Remove any margins from pricing tier children */
.pricing-tier > * {
    margin-bottom: 0 !important;
}

/* =================================
   WHAT TO BRING & WHAT NOT TO BRING
   ================================= */

/* Bring Sections Container */
.bring-section {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid;
}

/* What to Bring (Green Theme) */
.bring-allowed {
    background: #f8fff8;
    border-left-color: #27ae60;
}

/* What NOT to Bring (Red Theme) */
.bring-forbidden {
    background: #fff8f8;
    border-left-color: #e74c3c;
}

/* Section Headers */
.bring-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bring-allowed h3 {
    color: #27ae60;
}

.bring-forbidden h3 {
    color: #e74c3c;
}

/* Section Icons */
.section-icon {
    font-size: 1.2rem;
}

/* Bring Lists */
.bring-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bring-list li {
    position: relative;
    padding: 0.2rem 0 0.2rem 2rem;
    margin-bottom: 0.1rem;
    line-height: 1.4;
    font-size: 1rem;
    color: #2c3e50;
}

/* Checkmarks for What to Bring */
.bring-allowed .bring-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #27ae60;
    font-weight: bold;
    font-size: 1rem;
}

/* X marks for What NOT to Bring */
.bring-forbidden .bring-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1rem;
}

/* Label Notice (Yellow Warning Box) */
.label-notice {
    background: #fff9c4;
    border: 1px solid #f1c40f;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    color: #856404;
}

.warning-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* =================================
   HEALTH AND SAFETY SECTION
   ================================= */

/* Health and Safety Box (Light Blue) */
.health-safety-box {
    background: #f0f8ff;
    border-left: 4px solid #3498db;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Health and Safety Header */
.health-safety-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Health Icon */
.health-icon {
    font-size: 1.3rem;
}

/* Health Subsections */
.health-subsection {
    margin: 1.5rem 0;
}

.health-subsection h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.health-subsection p {
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Health Notice Box */
.health-notice {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    color: #2c3e50;
}

/* Text Styling for Health Section */
.health-safety-box strong {
    font-weight: 600;
    color: #3498db;
}

/* =================================
   DIRECTIONS TO CAMP SECTION
   ================================= */

/* Directions Box (Light Green) */
.directions-box {
    background: #f0f8f0;
    border-left: 4px solid #27ae60;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Directions Header */
.directions-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Direction Icon */
.direction-icon {
    font-size: 1.3rem;
}

/* Directions List */
.directions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.directions-list li {
    position: relative;
    padding: 0.2rem 0 0.2rem 2rem;
    margin-bottom: 0.2rem;
    line-height: 1.4;
    color: #2c3e50;
    font-size: 1rem;
}

/* Bullet Points for Directions */
.directions-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    top: 0.2rem;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Camp Address */
.camp-address {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 6px;
    padding: 1rem;
    font-size: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Address Icon */
.address-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Text Styling */
.directions-list strong,
.camp-address strong {
    font-weight: 600;
    color: #27ae60;
}

.directions-list em {
    color: #7f8c8d;
    font-style: italic;
}

/* =================================
   UTILITY CLASSES
   ================================= */

/* Camp Overview List */
.camp-fit-list {
    list-style: none;
    padding: 0;
    margin: 1.5em 0;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

.camp-fit-list li {
    position: relative;
    padding-left: 1.8em;
    text-indent: -0.09em;
    margin-bottom: 0.75em;
}

.camp-fit-list li::before {
    content: "⚔️";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.6;
}

/* Info Card */
.info-card {
    border-left: 4px solid #3498db;
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-size: 1rem;
}

/* Notice Block */
.notice-block {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
}

/* Camp Navigation */
.camp-nav {
    line-height: 1.8;
    letter-spacing: 0.3px;
    font-weight: 500;
    color: #444;
    font-size: 1rem;
}

.camp-nav a {
    color: #444;
    text-decoration: none;
    padding: 4px 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 4px;
}

.camp-nav a:hover {
    color: #0073aa;
    background-color: rgba(0, 115, 170, 0.08);
    text-decoration: none;
}

.camp-nav span {
    color: #ccc;
    margin: 0 4px;
}

/* Responsive Button Group Layout */
.responsive-button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

/* Large screens to tablets */
@media (max-width: 1199px) {
    .activities-grid,
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Grid layouts */
    .activities-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    /* Content sections */
    .wp-block-group.content-section {
        padding: 2rem 1rem;
    }
    
    .wp-block-group.light-grey-container {
        padding: 1.5rem 1rem;
    }
    
    /* Pricing tiers - stack vertically */
    .pricing-tiers {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 1rem;
    }
    
    .pricing-tier {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem 2rem;
    }
    
    .pricing-tier.most-popular {
        /* No special transform needed since we removed scaling */
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    /* What to Bring sections */
    .bring-section {
        padding: 1rem;
    }
    
    .bring-section h3 {
        font-size: 1.2rem;
    }
    
    .label-notice {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    /* Health and Safety */
    .health-safety-box {
        padding: 1rem;
    }
    
    .health-safety-box h3 {
        font-size: 1.2rem;
    }
    
    .health-subsection h4 {
        font-size: 1rem;
    }
    
    .health-subsection p {
        font-size: 1rem;
    }
    
    .health-notice {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    /* Directions */
    .directions-box {
        padding: 1rem;
    }
    
    .directions-box h3 {
        font-size: 1.2rem;
    }
    
    .directions-list li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    
    .directions-list li::before {
        left: 0.3rem;
    }
    
    .camp-address {
        padding: 0.8rem;
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* Mobile landscape */
@media (max-width: 576px) {
    .responsive-button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .responsive-button-group > * {
        width: 100%;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    /* Single column grids */
    .activities-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* Pricing */
    .pricing-tier {
        padding: 1.5rem 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* What to Bring */
    .bring-list li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    
    .bring-section h3 {
        font-size: 1.1rem;
    }
    
    /* Health and Safety */
    .health-safety-box h3 {
        font-size: 1.1rem;
    }
    
    .health-subsection h4 {
        font-size: 0.95rem;
    }
    
    .health-subsection p {
        font-size: 1rem;
    }
    
    .health-notice {
        font-size: 1rem;
    }
    
    /* Directions */
    .directions-box h3 {
        font-size: 1.1rem;
    }
    
    .directions-list li {
        padding-left: 1.2rem;
        font-size: 0.9rem;
    }
    
    .camp-address {
        font-size: 0.9rem;
    }
}
/* ===============================================
   TARGETED FOOTER GAP FIX - ADD TO YOUR EXISTING CSS
   =============================================== */

/* Remove bottom margins ONLY from the last elements before footer */
/* This preserves internal padding of content sections */

/* Target the main container's bottom margin */
main:last-of-type,
#main:last-of-type,
.site-main:last-of-type,
#content:last-of-type,
.content-area:last-of-type {
    margin-bottom: 0 !important;
}

/* Remove bottom margin from last content section only */
.wp-block-group.content-section:last-child,
.wp-block-group.content-section:last-of-type {
    margin-bottom: 0 !important;
    /* Keep padding intact - only remove margin */
}

/* Remove bottom margin from last full-width section */
.wp-block-group.alignfull:last-child,
.wp-block-group.section-background:last-child {
    margin-bottom: 0 !important;
    /* Keep internal padding intact */
}

/* Target WordPress site blocks container */
.wp-site-blocks {
    margin-bottom: 0 !important;
}

/* Remove margin from any div that's the direct predecessor to footer */
div:last-child:not(.wp-block-group) {
    margin-bottom: 0 !important;
}

/* Ensure footer has no top margin */
footer,
.site-footer,
.footer,
#footer {
    margin-top: 0 !important;
}

/* If the gap is from a specific WordPress wrapper */
.wp-block-group__inner-container:last-child {
    margin-bottom: 0 !important;
}

/* Remove any default spacing from the body/html bottom */
body {
    margin-bottom: 0 !important;
}

/* Target any theme-specific wrappers that might add bottom spacing */
.site-content,
#primary,
.content-wrapper {
    margin-bottom: 0 !important;
}