:root {
    /* 2026 Mexico Theme - Primary palette */
    --coffee-bean: #120C0F;
    --dark-cyan: #288D98;
    --dusty-olive: #7C844B;
    --golden-orange: #E3982F;
    --wine-plum: #724049;
    --onyx: #121013;
    --evergreen: #193631;
    --berry-crush: #B23E6D;

    /* Extended palette */
    --dark-bg: #1a1518;
    --card-bg: rgba(25, 54, 49, 0.4);
    --card-border: rgba(227, 152, 47, 0.3);
    --text-light: #f5e6c8;
    --text-muted-dark: rgba(245, 230, 200, 0.6);
    --marigold: #E8890C;
    --teal-bright: #35b5c2;
}

/* Base Styles */
body {
    padding-top: 70px;
    background-color: var(--coffee-bean);
    color: var(--text-light);
}

.main-text {
    font-family: 'Fredericka the Great', cursive;
}

.body-text {
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.015em;
    line-height: 1.8;
}

/* Drop cap on first paragraph of content sections */
.camp-intro > p:first-child::first-letter,
#who-we-are-section .body-text.fs-5:first-of-type::first-letter {
    font-family: 'Fredericka the Great', cursive;
    font-size: 3.2em;
    float: left;
    line-height: 0.8;
    margin-right: 0.08em;
    margin-top: 0.05em;
    color: var(--golden-orange);
}

/* Navbar */
.navbar {
    background-color: var(--onyx);
    border-bottom: 3px solid var(--golden-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar a {
    color: var(--golden-orange) !important;
    font-family: 'Fredericka the Great', cursive;
    transition: color 0.2s ease;
}

.navbar a:hover {
    color: var(--teal-bright) !important;
}

.navbar .navbar-toggler {
    border: 1px solid var(--golden-orange);
    color: var(--golden-orange);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Text Colors */
.text-golden {
    color: var(--golden-orange);
}

.text-cyan {
    color: var(--dark-cyan);
}

.text-berry {
    color: var(--berry-crush);
}

.text-olive {
    color: var(--dusty-olive);
}

.text-light-custom {
    color: var(--text-light);
}

.text-muted-dark {
    color: var(--text-muted-dark) !important;
}

/* Buttons */
.btn-golden {
    background-color: var(--golden-orange);
    border-color: var(--golden-orange);
    color: var(--onyx);
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.btn-golden:hover {
    background-color: var(--marigold);
    border-color: var(--marigold);
    color: var(--onyx);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 152, 47, 0.4);
}

.btn-outline-golden {
    border: 2px solid var(--golden-orange);
    color: var(--golden-orange);
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.btn-outline-golden:hover {
    background-color: var(--golden-orange);
    color: var(--onyx);
    transform: translateY(-2px);
}

.btn-berry {
    background-color: var(--berry-crush);
    border-color: var(--berry-crush);
    color: white;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.btn-berry:hover {
    background-color: #c94a7d;
    border-color: #c94a7d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 62, 109, 0.4);
}

/* Hero Section */
#hero-section {
    padding-top: 30px;
    background: linear-gradient(180deg, var(--onyx) 0%, var(--coffee-bean) 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner img {
    max-width: 100%;
    border: none;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%),
                linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%),
                        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-composite: source-in;
    transition: transform 0.3s ease;
}

.hero-banner img:hover {
    transform: scale(1.01);
}

.hero-subtitle {
    color: var(--golden-orange);
    font-family: 'Fredericka the Great', cursive;
}

/* Decorative alebrije */
.deco-alebrije {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
}

.deco-alebrije-right {
    right: -60px;
    bottom: -40px;
    width: 250px;
    transform: scaleX(-1);
}

.deco-colibri {
    position: absolute;
    pointer-events: none;
    opacity: 0.2;
    z-index: 0;
    width: 120px;
}

.deco-colibri-left {
    left: 20px;
    top: 30px;
}

/* Section backgrounds */
.section-dark {
    background-color: var(--coffee-bean);
    position: relative;
}

.section-evergreen {
    background: linear-gradient(180deg, var(--coffee-bean) 0%, var(--evergreen) 50%, var(--coffee-bean) 100%);
    position: relative;
}

.section-plum {
    background: linear-gradient(180deg, var(--coffee-bean) 0%, rgba(114, 64, 73, 0.3) 50%, var(--coffee-bean) 100%);
    position: relative;
}

.section-deep {
    background: linear-gradient(180deg, var(--coffee-bean) 0%, var(--onyx) 50%, var(--coffee-bean) 100%);
    position: relative;
}

/* Papel Picado divider */
/* Original papel picado (simple pennants):
.papel-picado-divider {
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40'%3E%3Cpath d='M0,0 L15,0 L15,30 Q15,40 7.5,35 Q0,30 0,30 Z' fill='%23E3982F'/%3E%3Cpath d='M20,0 L35,0 L35,30 Q35,40 27.5,35 Q20,30 20,30 Z' fill='%23B23E6D'/%3E%3Cpath d='M40,0 L55,0 L55,30 Q55,40 47.5,35 Q40,30 40,30 Z' fill='%23288D98'/%3E%3Cpath d='M60,0 L75,0 L75,30 Q75,40 67.5,35 Q60,30 60,30 Z' fill='%237C844B'/%3E%3Cpath d='M80,0 L95,0 L95,30 Q95,40 87.5,35 Q80,30 80,30 Z' fill='%23E3982F'/%3E%3Cpath d='M100,0 L115,0 L115,30 Q115,40 107.5,35 Q100,30 100,30 Z' fill='%23724049'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 120px 40px;
    opacity: 0.7;
}
*/

/* Papel picado - flattened SVG (no defs/use/clipPath to avoid ManifestStaticFilesStorage mangling url() refs) */
/* Each flag: scalloped path + flower cutouts + edge cutouts, all inline per flag */
.papel-picado-divider {
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 60'%3E%3Cline x1='0' y1='3' x2='252' y2='3' stroke='%23555' stroke-width='1.5'/%3E%3Cg transform='translate(1,3)'%3E%3Cpath d='M0,0 L40,0 L40,44 Q36,39 32,44 Q28,39 24,44 Q20,39 16,44 Q12,39 8,44 Q4,39 0,44 Z' fill='%23E3982F'/%3E%3Ccircle cx='20' cy='22' r='2.5' fill='%23120C0F' opacity='0.6'/%3E%3Cellipse cx='20' cy='15' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='20' cy='29' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='13' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='27' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='15' cy='17' rx='2.5' ry='3.5' transform='rotate(45,15,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='17' rx='2.5' ry='3.5' transform='rotate(-45,25,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='15' cy='27' rx='2.5' ry='3.5' transform='rotate(-45,15,27)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='27' rx='2.5' ry='3.5' transform='rotate(45,25,27)' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='10' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='20' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='30' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='3' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3C/g%3E%3Cg transform='translate(43,3)'%3E%3Cpath d='M0,0 L40,0 L40,44 Q36,39 32,44 Q28,39 24,44 Q20,39 16,44 Q12,39 8,44 Q4,39 0,44 Z' fill='%23B23E6D'/%3E%3Ccircle cx='20' cy='22' r='2.5' fill='%23120C0F' opacity='0.6'/%3E%3Cellipse cx='20' cy='15' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='20' cy='29' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='13' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='27' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='15' cy='17' rx='2.5' ry='3.5' transform='rotate(45,15,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='17' rx='2.5' ry='3.5' transform='rotate(-45,25,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='15' cy='27' rx='2.5' ry='3.5' transform='rotate(-45,15,27)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='27' rx='2.5' ry='3.5' transform='rotate(45,25,27)' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='10' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='20' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='30' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='3' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3C/g%3E%3Cg transform='translate(85,3)'%3E%3Cpath d='M0,0 L40,0 L40,44 Q36,39 32,44 Q28,39 24,44 Q20,39 16,44 Q12,39 8,44 Q4,39 0,44 Z' fill='%23288D98'/%3E%3Ccircle cx='20' cy='22' r='2.5' fill='%23120C0F' opacity='0.6'/%3E%3Cellipse cx='20' cy='15' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='20' cy='29' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='13' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='27' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='15' cy='17' rx='2.5' ry='3.5' transform='rotate(45,15,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='17' rx='2.5' ry='3.5' transform='rotate(-45,25,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='15' cy='27' rx='2.5' ry='3.5' transform='rotate(-45,15,27)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='27' rx='2.5' ry='3.5' transform='rotate(45,25,27)' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='10' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='20' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='30' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='3' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3C/g%3E%3Cg transform='translate(127,3)'%3E%3Cpath d='M0,0 L40,0 L40,44 Q36,39 32,44 Q28,39 24,44 Q20,39 16,44 Q12,39 8,44 Q4,39 0,44 Z' fill='%237C844B'/%3E%3Ccircle cx='20' cy='22' r='2.5' fill='%23120C0F' opacity='0.6'/%3E%3Cellipse cx='20' cy='15' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='20' cy='29' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='13' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='27' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='15' cy='17' rx='2.5' ry='3.5' transform='rotate(45,15,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='17' rx='2.5' ry='3.5' transform='rotate(-45,25,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='15' cy='27' rx='2.5' ry='3.5' transform='rotate(-45,15,27)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='27' rx='2.5' ry='3.5' transform='rotate(45,25,27)' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='10' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='20' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='30' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='3' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3C/g%3E%3Cg transform='translate(169,3)'%3E%3Cpath d='M0,0 L40,0 L40,44 Q36,39 32,44 Q28,39 24,44 Q20,39 16,44 Q12,39 8,44 Q4,39 0,44 Z' fill='%23E8890C'/%3E%3Ccircle cx='20' cy='22' r='2.5' fill='%23120C0F' opacity='0.6'/%3E%3Cellipse cx='20' cy='15' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='20' cy='29' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='13' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='27' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='15' cy='17' rx='2.5' ry='3.5' transform='rotate(45,15,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='17' rx='2.5' ry='3.5' transform='rotate(-45,25,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='15' cy='27' rx='2.5' ry='3.5' transform='rotate(-45,15,27)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='27' rx='2.5' ry='3.5' transform='rotate(45,25,27)' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='10' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='20' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='30' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='3' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3C/g%3E%3Cg transform='translate(211,3)'%3E%3Cpath d='M0,0 L40,0 L40,44 Q36,39 32,44 Q28,39 24,44 Q20,39 16,44 Q12,39 8,44 Q4,39 0,44 Z' fill='%23724049'/%3E%3Ccircle cx='20' cy='22' r='2.5' fill='%23120C0F' opacity='0.6'/%3E%3Cellipse cx='20' cy='15' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='20' cy='29' rx='2.5' ry='4' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='13' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='27' cy='22' rx='4' ry='2.5' fill='%23120C0F' opacity='0.5'/%3E%3Cellipse cx='15' cy='17' rx='2.5' ry='3.5' transform='rotate(45,15,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='17' rx='2.5' ry='3.5' transform='rotate(-45,25,17)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='15' cy='27' rx='2.5' ry='3.5' transform='rotate(-45,15,27)' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='25' cy='27' rx='2.5' ry='3.5' transform='rotate(45,25,27)' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='10' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='20' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Ccircle cx='30' cy='2' r='2' fill='%23120C0F' opacity='0.45'/%3E%3Cellipse cx='3' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='3' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='12' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='22' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3Cellipse cx='37' cy='32' rx='2' ry='3' fill='%23120C0F' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 252px 60px;
    opacity: 0.8;
}

/* Camp Section */
#camp-section {
    background-color: var(--coffee-bean);
}

.camp-dates-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.date-block {
    background-color: rgba(18, 12, 15, 0.6);
    border: 1px solid var(--card-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.date-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(227, 152, 47, 0.2);
}

/* About Section */
#who-we-are-section {
    background: linear-gradient(180deg, var(--coffee-bean) 0%, rgba(25, 54, 49, 0.3) 50%, var(--coffee-bean) 100%);
}

/* Shows Section */
#shows-section {
    background: linear-gradient(180deg, var(--coffee-bean) 0%, rgba(114, 64, 73, 0.2) 50%, var(--coffee-bean) 100%);
}

.show-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227, 152, 47, 0.15);
    border-color: var(--golden-orange);
}

.show-card img {
    transition: transform 0.3s ease;
    border-radius: 0.75rem;
}

.show-card:hover img {
    transform: scale(1.03);
}

/* Team Section */
#team-section {
    background-color: var(--coffee-bean);
}

.team-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--golden-orange);
}

.team-card img {
    min-height: 180px;
    object-fit: cover;
}

.team-card .team-name {
    color: var(--golden-orange);
}

.team-card .team-role {
    color: var(--dark-cyan);
}

/* Sponsors Section */
#sponsors-section {
    background: linear-gradient(180deg, var(--onyx) 0%, var(--evergreen) 100%);
}

.sponsor-logo {
    max-height: 80px;
    width: auto;
    opacity: 0.85;
    filter: brightness(1.1);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Footer */
.footer-camp {
    background: linear-gradient(180deg, var(--evergreen), var(--onyx));
    color: var(--text-light);
}

.footer-camp a {
    color: var(--golden-orange);
    transition: color 0.2s ease;
}

.footer-camp a:hover {
    color: var(--teal-bright);
}

.footer-camp hr {
    border-color: rgba(227, 152, 47, 0.3);
}

.social-links a {
    display: inline-block;
    color: var(--golden-orange);
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--teal-bright);
}

/* ==================== */
/* Camp Info Page Styles */
/* ==================== */

/* Header Section */
#header-section {
    background: linear-gradient(180deg, var(--onyx), var(--coffee-bean));
}

/* Pricing Section */
#pricing-section {
    background-color: var(--coffee-bean);
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 152, 47, 0.2);
    border-color: var(--golden-orange);
}

.pricing-card .price-value {
    color: var(--golden-orange);
}

.info-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
}

.info-card a {
    color: var(--teal-bright);
}

.info-card a:hover {
    color: var(--dark-cyan);
}

/* Scholarship Section */
#scholarship-section {
    background: linear-gradient(180deg, var(--coffee-bean), rgba(25, 54, 49, 0.3), var(--coffee-bean));
}

.scholarship-card {
    background: linear-gradient(135deg, rgba(25, 54, 49, 0.6) 0%, rgba(40, 141, 152, 0.2) 100%);
    border: 2px solid var(--dark-cyan);
}

.scholarship-card a {
    color: var(--teal-bright);
}

/* Schedule Section */
#schedule-section {
    background: linear-gradient(180deg, var(--coffee-bean), var(--onyx));
}

.schedule-table {
    background-color: rgba(25, 54, 49, 0.3);
    border-radius: 1rem;
    overflow: hidden;
}

.schedule-table thead {
    background-color: var(--golden-orange);
}

.schedule-table thead th {
    color: var(--onyx);
    border-color: var(--marigold);
    padding: 1rem;
    font-family: 'Fredericka the Great', cursive;
}

.schedule-table tbody th {
    background-color: rgba(18, 12, 15, 0.6);
    color: var(--golden-orange);
    font-weight: 600;
    vertical-align: middle;
    font-family: 'Lato', sans-serif;
}

.schedule-table td {
    vertical-align: middle;
    padding: 0.75rem;
    color: var(--text-light);
    border-color: rgba(227, 152, 47, 0.15);
    font-family: 'Lato', sans-serif;
}

.schedule-table tbody tr {
    border-color: rgba(227, 152, 47, 0.15);
}

/* CTA Section */
#cta-section {
    background: linear-gradient(180deg, var(--onyx), var(--evergreen));
}

/* Table Styles (admin/legacy) */
.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
    background-color: rgba(114, 64, 73, 0.3);
    color: var(--text-light);
}

.table-striped>tbody>tr:nth-child(even)>td,
.table-striped>tbody>tr:nth-child(even)>th {
    background-color: rgba(25, 54, 49, 0.3);
    color: var(--text-light);
}

/* Register Section */
#register-section {
    background: linear-gradient(180deg, var(--coffee-bean), var(--evergreen));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-card .row {
        flex-direction: column;
    }

    .team-card .col-4,
    .team-card .col-8 {
        width: 100%;
    }

    .team-card img {
        min-height: 200px;
        width: 100%;
    }

    .show-card .col-md-4 {
        margin-bottom: 1rem;
    }

    .show-card img {
        max-width: 200px;
    }

    .hero-banner {
        padding: 1rem 0;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .deco-alebrije,
    .deco-colibri {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--golden-orange);
    outline-offset: 2px;
}

/* Object fit utility */
.object-fit-cover {
    object-fit: cover;
}

/* =========================== */
/* Whimsical Animations & Flair */
/* =========================== */

/* Floating animation for decorative images */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(1.5deg); }
    75% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(8px) rotate(-1.5deg); }
    75% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes gentle-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Sparkle stars scattered in sections */
.sparkle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--golden-orange);
    animation: twinkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; left: 85%; animation-delay: 0.7s; }
.sparkle:nth-child(3) { top: 60%; left: 20%; animation-delay: 1.4s; background: var(--berry-crush); }
.sparkle:nth-child(4) { top: 45%; left: 70%; animation-delay: 2.1s; background: var(--dark-cyan); }
.sparkle:nth-child(5) { top: 80%; left: 50%; animation-delay: 0.3s; }
.sparkle:nth-child(6) { top: 10%; left: 60%; animation-delay: 1.8s; background: var(--dusty-olive); }

/* Decorative birds */
.deco-bird {
    pointer-events: none;
    z-index: 1;
}

/* Floating decorative images */
.float-gentle {
    animation: float 6s ease-in-out infinite;
}

.float-reverse {
    animation: float-reverse 7s ease-in-out infinite;
}

/* Glowing headings */
.main-text.text-golden {
    text-shadow: 0 0 40px rgba(227, 152, 47, 0.15);
}

h2.main-text.text-golden {
    text-shadow: 0 0 60px rgba(227, 152, 47, 0.2), 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Papel picado with gentle wave */
@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

.papel-picado-divider {
    animation: wave 8s ease-in-out infinite;
}

/* Card hover glow effects */
.show-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.team-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Playful nav link underline */
.navbar .nav-link {
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--berry-crush);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

/* Decorative marigold dots between sections */
.marigold-dots {
    text-align: center;
    padding: 1.5rem 0;
    letter-spacing: 1.5em;
    font-size: 0.6rem;
    color: var(--golden-orange);
    opacity: 0.5;
}

/* Hero subtitle playful entrance */
.hero-subtitle {
    animation: gentle-pulse 4s ease-in-out infinite;
}

/* Button sparkle on hover */
.btn-golden:hover,
.btn-berry:hover {
    box-shadow: 0 6px 20px rgba(227, 152, 47, 0.4),
                0 0 40px rgba(227, 152, 47, 0.1);
}

/* Whimsical border for camp dates card */
.camp-dates-card {
    position: relative;
    overflow: hidden;
}

.camp-dates-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--golden-orange),
        var(--berry-crush),
        var(--dark-cyan),
        var(--dusty-olive),
        var(--golden-orange));
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.4;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Colibri decoration - larger and animated */
.deco-colibri {
    opacity: 0.3;
    width: 150px;
}

.deco-colibri-left {
    left: -30px;
    top: 0;
    animation: float 5s ease-in-out infinite;
}

/* Alebrije decoration - animated */
.deco-alebrije {
    opacity: 0.2;
}

.deco-alebrije-right {
    animation: float-reverse 7s ease-in-out infinite;
}

/* Scholarship card - warm inviting glow */
.scholarship-card {
    position: relative;
    overflow: hidden;
}

.scholarship-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(40, 141, 152, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .deco-bird,
    .float-gentle,
    .float-reverse,
    .hero-subtitle,
    .papel-picado-divider,
    .camp-dates-card::before {
        animation: none;
    }

    .sparkle {
        animation: none;
        opacity: 0.5;
    }
}
