/* ========================================
   MIAMI MULTILINGUAL SPORTS CAMP - STYLES
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Colors - Vibrant and Fun */
    --primary-orange: #FF6B35;
    --primary-blue: #00A8E8;
    --primary-yellow: #FFD23F;
    --primary-green: #00C896;
    --primary-purple: #9B59B6;
    --primary-pink: #FF6B9D;
    
    /* Accent Colors */
    --accent-red: #E94B3C;
    --accent-teal: #00CED1;
    --accent-lime: #A8E61D;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --black: #212529;
    
    /* Gradients */
    --gradient-sunny: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
    --gradient-ocean: linear-gradient(135deg, #00A8E8 0%, #00CED1 100%);
    --gradient-tropical: linear-gradient(135deg, #00C896 0%, #A8E61D 100%);
    --gradient-fun: linear-gradient(135deg, #FF6B9D 0%, #9B59B6 100%);
    
    /* Typography */
    --font-display: 'Chewy', cursive;
    --font-body: 'Nunito', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--black);
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ========== NAVIGATION ========== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: -5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
}

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

.nav-menu a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 25px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: var(--gradient-sunny);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ========== HERO SECTION ========== */
.hero {
    background: var(--gradient-sunny);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-orange);
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-orange);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 3px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--primary-blue);
    color: var(--white);
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: -50px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 20%;
    right: -50px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* ========== COUNTDOWN SECTION ========== */
.countdown-section {
    background: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
}

.countdown-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    min-width: 120px;
    transition: var(--transition-normal);
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.countdown-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: var(--font-display);
}

.countdown-label {
    display: block;
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 700;
    text-transform: uppercase;
}

/* ========== INFO CARDS ========== */
.camp-info {
    padding: 60px 20px;
}

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

.info-card {
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-10px) rotate(-2deg);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========== WHAT WE OFFER ========== */
.what-we-offer {
    background: var(--white);
    padding: 80px 20px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--gradient-sunny);
    margin: 20px auto 0;
    border-radius: 3px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition-normal);
    border: 3px solid transparent;
}

.offer-card:hover {
    background: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.offer-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
}

.offer-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* ========== DAILY ROUTINE ========== */
.daily-routine {
    background: var(--gradient-tropical);
    padding: 80px 20px;
    color: var(--white);
}

.daily-routine .section-title {
    color: var(--white);
}

.daily-routine .section-title::after {
    background: var(--white);
}

.routine-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.routine-list li {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.routine-list li:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.routine-icon {
    font-size: 2.5rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--gradient-fun);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ========== GROUP PHOTO SECTION ========== */
.group-photo-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.group-photo {
    text-align: center;
}

.group-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.photo-caption {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* ========== DIRECTORS SECTION ========== */
.directors-section {
    padding: 80px 20px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.director-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.director-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.director-photo {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--gradient-sunny);
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    padding: 20px 30px 10px;
    text-align: center;
}

.director-info {
    padding: 0 30px 30px;
}

.director-info ul {
    list-style: none;
}

.director-info li {
    padding: 10px 0;
    border-bottom: 1px solid var(--medium-gray);
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
}

.director-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.2rem;
}

/* ========== MISSION SECTION ========== */
.mission-section {
    background: var(--gradient-ocean);
    padding: 80px 20px;
    color: var(--white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ========== CAMP DETAILS PAGE ========== */
.details-section {
    padding: 60px 20px;
}

.details-section.alt-bg {
    background: var(--light-gray);
}

.details-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.details-card.centered {
    text-align: center;
}

.details-card h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-weight: 600;
}

.routine-grid {
    display: grid;
    gap: 30px;
}

.routine-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.routine-item:hover {
    background: var(--medium-gray);
    transform: translateX(10px);
}

.routine-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-sunny);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.routine-details h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.routine-details p {
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.sports-grid,
.game-room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.sport-item,
.game-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.sport-item:hover,
.game-item:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.sport-icon,
.game-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.sport-item h3,
.game-item h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-align: center;
    margin: 30px 0;
}

.language-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.language-card {
    background: var(--light-gray);
    padding: 40px 50px;
    border-radius: 25px;
    text-align: center;
    min-width: 250px;
    transition: var(--transition-normal);
}

.language-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.language-flag {
    font-size: 5rem;
    margin-bottom: 20px;
}

.language-card h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.language-card ul {
    list-style: none;
    text-align: left;
}

.language-card li {
    padding: 8px 0;
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
}

.language-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 1.5rem;
    line-height: 1.2;
}

.schedule-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.schedule-item h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.schedule-item p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.large-time {
    font-size: 2rem !important;
    color: var(--primary-orange) !important;
}

.small-text {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--medium-gray) !important;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-fun);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* ========== REGISTRATION FORM ========== */
.registration-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.registration-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.form-section h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-orange);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.name-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-text {
    background: var(--light-gray);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--dark-gray);
}

.info-text strong {
    color: var(--primary-orange);
}

/* Camp Weeks Selection */
.camp-weeks {
    display: grid;
    gap: 20px;
}

.camp-week-option {
    cursor: pointer;
}

.camp-week-option input[type="checkbox"],
.camp-week-option input[type="radio"] {
    display: none;
}

.week-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 20px;
    border: 3px solid transparent;
    transition: var(--transition-normal);
    position: relative;
}

.camp-week-option input:checked + .week-card {
    background: var(--white);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.week-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.week-dates {
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.week-theme {
    color: var(--dark-gray);
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-style: italic;
}

.week-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-green);
}

.special-package .week-card {
    background: var(--gradient-fun);
    color: var(--white);
}

.special-package input:checked + .week-card {
    background: var(--gradient-sunny);
}

.package-card {
    position: relative;
    padding-top: 40px;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.85rem;
}

.package-card h3 {
    color: var(--white);
    font-size: 2rem;
}

.package-card .week-dates,
.package-card .week-theme {
    color: rgba(255, 255, 255, 0.9);
}

.original-price {
    text-decoration: line-through;
    font-size: 1.1rem !important;
    opacity: 0.7;
}

.sale-price {
    font-size: 2rem !important;
    color: var(--white) !important;
}

.savings {
    background: var(--primary-green);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 10px;
}

.warning-text {
    color: var(--accent-red);
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin-top: 15px;
}

/* Excursions */
.excursions {
    display: grid;
    gap: 15px;
}

.excursion-option {
    cursor: pointer;
}

.excursion-option input[type="checkbox"] {
    display: none;
}

.excursion-card {
    background: var(--light-gray);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.excursion-option input:checked + .excursion-card {
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.excursion-icon {
    font-size: 2.5rem;
}

.excursion-details h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.excursion-price {
    font-weight: 800;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Waiver */
.waiver-text {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.waiver-text p {
    margin-bottom: 15px;
}

.waiver-text strong {
    color: var(--primary-orange);
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Pricing Summary */
.pricing-summary {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-row.total-row {
    border-top: 3px solid var(--primary-orange);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.price-row.discount-row {
    color: var(--primary-green);
}

.coupon-input {
    display: flex;
    gap: 10px;
}

.coupon-input input {
    flex: 1;
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.coupon-message {
    margin-top: 10px;
    font-weight: 700;
    font-size: 0.95rem;
}

.coupon-message.success {
    color: var(--primary-green);
}

.coupon-message.error {
    color: var(--accent-red);
}

/* Stripe Element */
.stripe-element {
    background: var(--white);
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.stripe-element:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

#card-errors {
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.95rem;
}

.submit-button {
    width: 100%;
    background: var(--gradient-sunny);
    color: var(--white);
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-display);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== COMING SOON ========== */
.coming-soon {
    padding: 100px 20px;
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 6rem;
    margin-bottom: 30px;
}

.coming-soon-content h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        padding: 20px 25px;
        min-width: 90px;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .name-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .language-options {
        flex-direction: column;
        align-items: center;
    }

    .schedule-info {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .offer-card,
    .details-card {
        padding: 25px 20px;
    }
}

/* ========== NEW STYLES - NO EMOJIS VERSION ========== */

/* Simple Daily Routine List */
.routine-simple-list {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.routine-simple-list ul {
    list-style: none;
}

.routine-simple-list li {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-normal);
}

.routine-simple-list li:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

/* Essential Camp Info Section */
.essential-info {
    background: var(--gradient-sunny);
    padding: 60px 20px;
    margin-top: -1px;
}

.essential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.essential-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.essential-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.essential-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.essential-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: var(--font-display);
    margin-bottom: 10px;
    line-height: 1.2;
}

.essential-note {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Camp Details List Sections */
.section-title-alt {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-weight: 600;
}

.details-list-box {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.camp-details-list {
    list-style: none;
}

.camp-details-list li {
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
}

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

.camp-details-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 1.8rem;
    line-height: 1.2;
}

.camp-details-list.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}

.camp-details-list.dates-list li {
    padding-left: 0;
}

.camp-details-list.dates-list li:before {
    display: none;
}

.highlight-info {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-align: center;
    margin: 25px 0;
}

.language-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.language-list-grid h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Excursion Week Info */
.excursion-week {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 5px 0;
    font-style: italic;
}

/* Gallery Styles */
.gallery-section {
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.gallery-caption {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Blog Styles */
.blog-section {
    padding: 60px 20px;
    min-height: 500px;
}

.admin-controls {
    text-align: right;
    margin-bottom: 40px;
}

.admin-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.admin-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 20px;
}

.no-posts p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.blog-post-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.post-date {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.post-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.delete-post-btn {
    background: var(--accent-red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.delete-post-btn:hover {
    background: #c0392b;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 25px;
    max-width: 700px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.close-modal {
    color: var(--dark-gray);
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--accent-red);
}

.modal-content h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 2rem;
}

.error-message {
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1.05rem;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.image-preview {
    margin-top: 15px;
}

.image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-actions button {
    flex: 1;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .essential-value {
        font-size: 1.8rem;
    }

    .camp-details-list.two-column,
    .language-list-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 25px;
    }
}

.routine-simple-list {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.routine-simple-list ul {
    list-style: none;
}

.routine-simple-list li {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-normal);
}

.routine-simple-list li:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

/* INLINE EXCURSIONS (UNDER WEEKS) - THIS IS THE IMPORTANT PART! */
.week-excursion {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 2px dashed var(--primary-blue);
}

.package-excursion-title {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.excursion-inline {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.excursion-inline:hover {
    background: var(--white);
    border-color: var(--primary-orange);
}

.excursion-inline input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
}

.excursion-inline input[type="checkbox"]:checked + .excursion-inline-content {
    color: var(--primary-orange);
}

.excursion-inline-content {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.excursion-inline-content strong {
    color: var(--primary-blue);
}

.info-text-small {
    font-size: 0.95rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Update week cards to accommodate excursions */
.camp-week-option {
    display: block;
    margin-bottom: 20px;
}

/* ========== LANDSCAPE BLOG POST LAYOUT ========== */

/* Landscape blog post card */
.blog-post-card-landscape {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    min-height: 250px;
}

.blog-post-card-landscape:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Image container - left side */
.post-image-container {
    flex: 0 0 400px;
    max-width: 400px;
    overflow: hidden;
}

.post-image-landscape {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content - right side */
.post-content-landscape {
    flex: 1;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
}

.post-content-landscape h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.post-content-landscape .post-date {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.post-content-landscape .post-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: auto;
    flex: 1;
    font-size: 1.05rem;
    overflow-y: auto;
    max-height: 150px;
}

.post-content-landscape .delete-post-btn {
    align-self: flex-start;
    margin-top: 20px;
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
    .blog-post-card-landscape {
        flex-direction: column;
        min-height: auto;
    }
    
    .post-image-container {
        flex: 0 0 250px;
        max-width: 100%;
        height: 250px;
    }
    
    .post-content-landscape {
        padding: 25px;
    }
    
    .post-content-landscape .post-description {
        max-height: none;
    }
}


/* Update blog posts container for landscape layout */
.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* ========== PAGINATION STYLES ========== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    font-family: var(--font-body);
}

.page-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.page-ellipsis {
    color: var(--dark-gray);
    font-weight: 700;
    padding: 0 5px;
}

/* ========== DELETE MODAL STYLES ========== */

.delete-confirm-btn {
    background: var(--accent-red) !important;
}

.delete-confirm-btn:hover {
    background: #c0392b !important;
}

.warning-text {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 5px;
    }
    
    .page-btn {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}


/* ========================================
   INTERACTIVE GALLERY WITH LIGHTBOX
   ======================================== */

/* Gallery Grid */
.gallery-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Gallery Item */
.gallery-item-interactive {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.gallery-item-interactive img,
.gallery-item-interactive video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item-interactive:hover img,
.gallery-item-interactive:hover video {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-interactive:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.video-icon {
    font-size: 1.5rem;
    margin-right: 8px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.lightbox-active {
    opacity: 1;
}

/* Lightbox Content */
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease;
}

.lightbox-media {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Lightbox Caption */
.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-grid-interactive {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-caption {
        bottom: 20px;
        font-size: 1rem;
        padding: 10px 20px;
        max-width: 80%;
    }
    
    .lightbox-counter {
        top: 20px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

