    
        /* Page Banner */
        .page-banner {
            background: url('../img/banner6.jpg') center/cover;
        }
        
        /* Summer Theme Colors */
        .summer-sky { color: #48dbfb; }
        .summer-sun { color: #feca57; }
        .summer-orange { color: #ff9ff3; }
        .summer-green { color: #1dd1a1; }
        
        /* Summer Features */
        .summer-features {
            background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        body.dark-mode .summer-features {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        
        .summer-features::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }
        
        .summer-features::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }
        
        .feature-item {
            text-align: center;
            padding: 20px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        /* Activity Cards */
        .activity-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            background: white;
            height: 100%;
        }
        
        body.dark-mode .activity-card {
            background: var(--dark-card);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .activity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .activity-img-container {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .activity-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .activity-card:hover .activity-img {
            transform: scale(1.1);
        }
        
        .activity-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            color: white;
        }
        
        .activity-icon {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .activity-content {
            padding: 25px;
        }
        
        .activity-title {
            color: var(--accent);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        /* Schedule */
        .schedule-day {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        body.dark-mode .schedule-day {
            background: var(--dark-card);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        
        .day-title {
            color: var(--accent);
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .schedule-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        body.dark-mode .schedule-item {
            border-bottom: 1px dashed #444;
        }
        
        .schedule-time {
            min-width: 100px;
            font-weight: 600;
            color: var(--primary);
        }
        
        body.dark-mode .schedule-time {
            color: var(--accent);
        }
        
        .schedule-activity {
            flex-grow: 1;
        }
        
        /* Photo Gallery */
        /* Gallery Fix */
        .gallery-container {
            padding: 20px 0;
        }
        
        .gallery-img {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 250px; /* Fixed height for container */
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f1f1f1;
        }
        
        .gallery-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-img:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        /* Registration CTA */
        .registration-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            margin: 50px 0;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .btn-summer {
            background: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-summer:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            overflow: hidden;
            border: none;
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            border-bottom: none;
        }
        
        body.dark-mode .modal-header {
            background: linear-gradient(135deg, var(--dark-card) 0%, var(--primary) 100%);
        }
        
        .modal-title {
            font-weight: 700;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        body.dark-mode .form-label {
            color: var(--accent);
        }
        
        .form-control {
            border-radius: 10px;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        body.dark-mode .form-control {
            background-color: #2d2d42;
            border-color: #444;
            color: #fff;
        }
        
        body.dark-mode .form-control:focus {
            background-color: #2d2d42;
            border-color: var(--secondary);
            color: #fff;
        }
        
        .btn-modal {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
            margin-top: 15px;
        }
        
        .btn-modal:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .activity-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .summer-features {
                padding: 25px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .modal-body {
                padding: 20px;
            }
        }
		.btn-close.white {
			filter: invert(1);
		}
        
        /* Honeypot fields */
        .honeypot {
            display: none;
        }
}
