

/* Summer Hero Section */
.summer-hero {
    position: relative;
    padding: 3rem 0 8rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
   
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #000!important;
    line-height: 1.2;
}

.hero-heading span {
    color: var(--primary);
    position: relative;
}

.hero-heading span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--accent);
    z-index: -1;
    opacity: 0.7;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
     color: var(--text)!important;
    max-width: 500px;
    z-index: 1!important;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
   
}

.primary-cta:hover {
    transform: translateY(-3px);

    background-color: var(--primary-dark);
}

.primary-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.primary-cta:hover i {
    transform: translateX(5px);
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background-color: white;
    color: var(--primary);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.secondary-cta:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.secondary-cta i {
    margin-right: 8px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-composition {
    position: relative;
    width: 100%;
    height: 500px;
}

.image-composition .main-image {
    position: absolute;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: var(--radius);
  
    top: 0;
    right: 0;
    z-index: 2;
    border: 5px solid white;
}

.image-composition .secondary-image {
    position: absolute;
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: var(--radius);
  
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 5px solid white;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.2;
    z-index: 0;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.hero-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Camp Programs Section */
.camp-programs {
    padding: 6rem 0;
    background-color: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.highlight {
    position: relative;
    color: var(--primary);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    z-index: -1;
    opacity: 0.5;
}

.subhead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.program-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 12px 24px;
    background-color: var(--bg-light);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.tab-button.active {
    background-color: var(--primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-level {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.program-info {
    padding: 1.5rem;
}

.program-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.program-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary);
}

.program-cta {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Camp Benefits Section */
.camp-benefits {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content {
    max-width: 600px;
}

.benefits-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius);
 
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefit-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefits-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
 
}

.badge-content {
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    display: block;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.camp-testimonials {
    padding: 6rem 0;
    background-color: white;
}

.testimonial-slider {
  
    margin: 3rem auto 0;
}

.testimonial-slide {
    padding: 0 1rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
   
}

.testimonial-quote {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote i {
    color: var(--primary);
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.camp-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--primary);
    position: relative;
}

.cta-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--accent);
    z-index: -1;
    opacity: 0.5;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        margin-top: 0rem;
    }
    
    .hero-description, .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-content {
        max-width: 100%;
        text-align: center;
    }
    
    .benefits-list {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .image-composition {
        height: 400px;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
    }
    .cta-content h2 {
    font-size: 1.3rem!important;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--primary);
    position: relative;
}

.cta-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--accent);
    z-index: -1;
    opacity: 0.5;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
}
}

/* Slider Styles */
.testimonial-slider .slick-dots {
    bottom: -40px;
}

.testimonial-slider .slick-dots li button:before {
    color: var(--primary);
    opacity: 0.3;
    font-size: 10px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    color: var(--primary);
    font-size: 30px;
}

.testimonial-slider .slick-prev {
    left: -50px;
}

.testimonial-slider .slick-next {
    right: -50px;
}

@media (max-width: 768px) {
    .testimonial-slider .slick-prev {
        left: -20px;
    }
    
    .testimonial-slider .slick-next {
        right: -20px;
    }
}