/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    overflow-x: hidden;
    background: #000;
}

/* Custom font */
@font-face {
    font-family: 'ToastyMilk';
    src: url('Toasty Milk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Logo styling */
.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Background video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7) contrast(1.2);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ffd700;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Landing Section */
.landing-section {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.3), 
        rgba(212, 255, 0, 0.1));
}

.content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 1.5s ease;
}

.main-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    animation: slideInLeft 1s ease 0.5s both;
}

.title-highlight {
    display: block;
    font-size: 5rem;
    background: linear-gradient(45deg, rgb(212, 255, 0), #fff, rgb(212, 255, 0));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, slideInRight 1s ease 0.8s both;
    text-shadow: 0 0 30px rgba(212, 255, 0, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 1s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(212, 255, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 255, 0, 0.3);
}

.feature i {
    font-size: 1.5rem;
    color: rgb(212, 255, 0);
}

.feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 1.4s both;
}

.cta-primary, .cta-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, rgb(212, 255, 0), #fff);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 255, 0, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgb(212, 255, 0);
    color: rgb(212, 255, 0);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease 1.6s both;
    z-index: 10;
}

.scroll-indicator p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 255, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(212, 255, 0, 0.1);
}

.scroll-arrow:hover {
    border-color: rgb(212, 255, 0);
    background: rgba(212, 255, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.4);
}

.scroll-arrow i {
    font-size: 1.8rem;
    color: rgb(212, 255, 0);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(212, 255, 0, 0.6);
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.icon-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navigation styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 255, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav a {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    letter-spacing: 0.5px;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 255, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

nav a:hover::before {
    left: 100%;
}

nav a:hover,
nav a:active {
    color: rgb(212, 255, 0);
    background: rgba(212, 255, 0, 0.15);
    border-color: rgba(212, 255, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 255, 0, 0.3);
    text-shadow: 0 0 10px rgba(212, 255, 0, 0.5);
}

nav a.active {
    background: rgba(212, 255, 0, 0.2);
    border-color: rgba(212, 255, 0, 0.6);
    color: rgb(212, 255, 0);
    box-shadow: 0 4px 15px rgba(212, 255, 0, 0.3);
    text-shadow: 0 0 8px rgba(212, 255, 0, 0.6);
}

/* Responsive navigation */
@media (max-width: 768px) {
    nav {
        gap: 1rem;
        padding: 0 15px;
    }
    
    nav a {
        font-size: 1rem;
        padding: 10px 18px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    nav a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0;
    min-height: 100vh;
    backdrop-filter: blur(10px);
}

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

.gallery-title {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-subtitle {
    color: #ccc;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Simple Gallery */
.simple-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Allow portrait images to display in natural aspect ratio */
.gallery-card img {
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: contain;
}

/* Allow portrait videos to display in natural aspect ratio */
.gallery-card video {
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .title-line {
        font-size: 1.8rem;
    }
    
    .title-highlight {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .feature {
        padding: 12px 20px;
    }
    
    .feature span {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 200px;
        text-align: center;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    nav {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    .logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 1.5rem;
    }
    
    .title-highlight {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    nav {
        gap: 1rem;
    }
    
    nav a {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .logo {
        height: 40px;
    }
}

/* Hide filtered items */
.gallery-item.hidden {
    display: none;
}

/* Container styles for other pages - ensuring consistent fonts */
.about-sections,
.camp-programs,
.spotlight-container,
.events-container,
.mission-container,
.story-container,
.values-container,
.camp-detail-container {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.about-sections h2,
.camp-programs h2,
.spotlight-container h2,
.events-container h2,
.mission-container h2,
.story-container h2,
.values-container h2,
.camp-detail-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-sections h3,
.camp-programs h3,
.spotlight-container h3,
.events-container h3,
.mission-container h3,
.story-container h3,
.values-container h3,
.camp-detail-container h3 {
    font-size: 2rem;
    margin: 30px 0 15px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-sections h4,
.camp-programs h4,
.spotlight-container h4,
.events-container h4,
.mission-container h4,
.story-container h4,
.values-container h4,
.camp-detail-container h4 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-sections p,
.camp-programs p,
.spotlight-container p,
.events-container p,
.mission-container p,
.story-container p,
.values-container p,
.camp-detail-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-sections ul,
.camp-programs ul,
.spotlight-container ul,
.events-container ul,
.mission-container ul,
.story-container ul,
.values-container ul,
.camp-detail-container ul {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
    margin: 15px auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-sections li,
.camp-programs li,
.spotlight-container li,
.events-container li,
.mission-container li,
.story-container li,
.values-container li,
.camp-detail-container li {
    margin-bottom: 8px;
}

/* Back link styling */
.back-link {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 100;
}

.back-link a {
    color: #ffd700;
    font-size: 1.2rem;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.back-link a:hover {
    color: white;
    transform: translateX(-5px);
}

/* Grid layouts for content sections */
.about-links,
.program-links,
.entrepreneur-grid,
.events-grid,
.mission-pillars,
.timeline-item,
.values-grid,
.curriculum-grid,
.features-grid,
.impact-stats,
.team-highlights,
.registration-options,
.faq-grid,
.past-events-grid,
.testimonials-grid,
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Highlight styling to match other cards */
.highlight {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.highlight i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: #ffd700;
}

.highlight h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.highlight p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Card styling */
.about-link,
.program-link,
.entrepreneur-card,
.event-card,
.pillar,
.value-card,
.curriculum-day,
.feature-item,
.impact-stat,
.team-member,
.registration-card,
.faq-item,
.past-event,
.testimonial {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: white;
    display: block;
}

.about-link:hover,
.program-link:hover,
.entrepreneur-card:hover,
.event-card:hover,
.pillar:hover,
.value-card:hover,
.curriculum-day:hover,
.feature-item:hover,
.impact-stat:hover,
.team-member:hover,
.registration-card:hover,
.faq-item:hover,
.past-event:hover,
.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    text-decoration: none;
    color: white;
}

/* About and Program Link specific styling to match entrepreneur cards */
.about-link,
.program-link {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-link i,
.program-link .program-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: #ffd700;
}

.about-link span,
.program-link h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
    display: block;
}

.about-link p,
.program-link p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.program-link ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
}

.program-link li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.program-link .coming-soon-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Remove hover effects for program-link since they're not clickable */
.program-link:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 215, 0, 0.3);
}

/* Success message styling improvements */
.success-message {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.success-message h3 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.success-message p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Button styling */
.register-btn,
.subscribe-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-btn:hover,
.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Form styling */
.signup-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-size: 1rem;
    margin-right: 10px;
    backdrop-filter: blur(10px);
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Icon styling */
.value-icon,
.program-icon,
.entrepreneur-avatar {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

/* Tag styling */
.business-tags {
    margin-top: 15px;
}

.tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin: 0 5px 5px 0;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Quote styling */
blockquote {
    font-style: italic;
    font-size: 1.3rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin: 20px 0;
    padding: 20px;
    border-left: 4px solid #ffd700;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 10px 10px 0;
}

/* Stats styling */
.stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat p {
    font-size: 1rem;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-sections,
    .camp-programs,
    .spotlight-container,
    .events-container,
    .mission-container,
    .story-container,
    .values-container,
    .camp-detail-container {
        padding: 100px 15px 40px;
    }
    
    .about-sections h2,
    .camp-programs h2,
    .spotlight-container h2,
    .events-container h2,
    .mission-container h2,
    .story-container h2,
    .values-container h2,
    .camp-detail-container h2 {
        font-size: 2.5rem;
    }
    
    .about-sections h3,
    .camp-programs h3,
    .spotlight-container h3,
    .events-container h3,
    .mission-container h3,
    .story-container h3,
    .values-container h3,
    .camp-detail-container h3 {
        font-size: 1.8rem;
    }
    
    .about-links,
    .program-links,
    .entrepreneur-grid,
    .events-grid,
    .mission-pillars,
    .values-grid,
    .curriculum-grid,
    .features-grid,
    .impact-stats,
    .team-highlights,
    .registration-options,
    .faq-grid,
    .past-events-grid,
    .testimonials-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Professional Website Structure Styles */

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

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
}

.main-nav a.active {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text {
    animation: fadeInUp 1.5s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.about-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.about-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
}

/* Programs Preview Section */
.programs-preview {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.9);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.program-card.featured {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.program-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-features span {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.program-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.coming-soon-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Success Preview Section */
.success-preview {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.success-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.success-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-cta {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.footer-bottom p {
    color: #e0e0e0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav a {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cards,
    .programs-grid,
    .success-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-card,
    .program-card,
    .success-card {
        padding: 1.5rem;
    }
}



