/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #e8d5ff 0%, #f8d7da 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: transparent;
    mix-blend-mode: multiply;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: transparent;
    mix-blend-mode: multiply;
}

.logo-text h2 {
    color: #7c3aed;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-text span {
    color: #6b46c1;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4c1d95;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #4c1d95;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #7c3aed;
    border: 2px solid #7c3aed;
}

.btn-secondary:hover {
    background: #7c3aed;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ddd6fe 0%, #f9a8d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #4c1d95;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4c1d95;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    color: #7c3aed;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #4c1d95;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-content p {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: #ec4899;
    font-weight: 700;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #4c1d95;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
}

.values h2 {
    text-align: center;
    color: #4c1d95;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: #7c3aed;
    margin-bottom: 1rem;
}

.programs {
    padding: 4rem 0;
}

.programs h2 {
    text-align: center;
    color: #4c1d95;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.programs-list {
    display: grid;
    gap: 2rem;
}

.program-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ec4899;
}

.program-item h3 {
    color: #7c3aed;
    margin-bottom: 1rem;
}

.impact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
}

.impact h2 {
    text-align: center;
    color: #4c1d95;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.impact-content p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.impact-stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.impact-stat h3 {
    color: #ec4899;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info-center h2 {
    color: #4c1d95;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: #ec4899;
    text-decoration: underline;
}

.contact-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #ddd6fe 0%, #f9a8d4 100%);
    padding: 1rem;
    border-radius: 10px;
}

.contact-method h3 {
    color: #7c3aed;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h2 {
    color: #4c1d95;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #4c1d95;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.enrollment-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.enrollment-info h2 {
    text-align: center;
    color: #4c1d95;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.enrollment-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.enrollment-card h3 {
    color: #7c3aed;
    margin-bottom: 1.5rem;
}

.enrollment-card ol,
.enrollment-card ul {
    color: #6b7280;
    padding-left: 1.5rem;
}

.enrollment-card li {
    margin-bottom: 0.5rem;
}

.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    color: #4c1d95;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #7c3aed;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #6b7280;
}

/* Photo Carousel */
.photo-carousel {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
}

.photo-carousel h2 {
    text-align: center;
    color: #4c1d95;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(76, 29, 149, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
}

.carousel-slide {
    display: none;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

.photo-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e8d5ff 0%, #f8d7da 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4c1d95;
}

.photo-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.photo-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.carousel-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #d1d5db;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #7c3aed;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
footer {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    color: white;
    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 {
    margin-bottom: 1rem;
    color: #e8d5ff;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    color: #d8b4fe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .placeholder-image {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}