/* Enhanced Visual Effects to Match React Version */

/* Improved card styling */
.highlight-card, .program-card, .testimonial-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced gradient backgrounds */
.hero {
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.9) 0%, 
        rgba(236, 72, 153, 0.8) 35%, 
        rgba(255, 140, 66, 0.9) 100%);
}

/* Improved section backgrounds */
.welcome-section {
    background: linear-gradient(135deg, var(--very-light-purple) 0%, rgba(243, 232, 255, 0.5) 100%);
}

.programs-section {
    background: linear-gradient(135deg, var(--very-light-orange) 0%, rgba(254, 243, 199, 0.5) 100%);
}

.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, rgba(248, 250, 252, 0.8) 100%);
}

.gallery-section {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, rgba(224, 242, 254, 0.5) 100%);
}

/* Enhanced button styling */
.btn-primary {
    background: linear-gradient(135deg, var(--bright-orange) 0%, var(--hot-pink) 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Enhanced logo styling */
.logo-img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Improved text shadows */
.hero-title {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced section dividers */
.section-line {
    position: relative;
    overflow: hidden;
}

.section-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced card borders */
.highlight-card, .program-card, .testimonial-card {
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
}

.highlight-card::before, .program-card::before, .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vibrant-purple), var(--hot-pink), var(--bright-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-card:hover::before, .program-card:hover::before, .testimonial-card:hover::before {
    transform: scaleX(1);
}

/* Improved gallery hover effects */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Enhanced navigation */
.navbar {
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vibrant-purple), var(--hot-pink));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Enhanced footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vibrant-purple), var(--hot-pink), var(--bright-orange), transparent);
}