
/* Import Futuristic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;800&display=swap');

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

html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 149, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00BFFF;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00BFFF;
}

.nav-logo img {
    border-radius: 50%;
    border: 2px solid #00BFFF;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00BFFF, #1E90FF);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.music-toggle {
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300BFFF" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-banner {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #00BFFF;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00BFFF, #1E90FF, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.7)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.9)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #87CEEB;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-primary {
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
    color: white;
    border-color: #00BFFF;
}

.btn-secondary {
    background: transparent;
    color: #00BFFF;
    border-color: #00BFFF;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

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

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #00BFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, #1E90FF);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.about-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00BFFF;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00BFFF;
}

.info-item i {
    color: #00BFFF;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-item strong {
    color: #00BFFF;
    font-family: 'Orbitron', monospace;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 3px solid #00BFFF;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

/* Programs Section */
.programs {
    padding: 6rem 0;
}

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

.program-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: #00BFFF;
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.program-icon {
    font-size: 3rem;
    color: #00BFFF;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00BFFF;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00BFFF;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #00BFFF;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.program-link:hover {
    background: #00BFFF;
    color: white;
}

/* Specialization Section */
.specialization {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.spec-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15), rgba(30, 144, 255, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: scale(1.05);
    border-color: #00BFFF;
}

.spec-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00BFFF;
    margin-bottom: 1rem;
}

.spec-card a {
    color: #00BFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Organization Section */
.organization {
    padding: 6rem 0;
}

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

.org-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-5px);
    border-color: #00BFFF;
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.2);
}

.org-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00BFFF;
    margin-bottom: 1rem;
}

.org-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00BFFF;
    margin-bottom: 0.5rem;
}

.photo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00BFFF;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #00BFFF;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.photo-link:hover {
    background: #00BFFF;
    color: white;
}

/* Extracurricular Section */
.extracurricular {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.eskul-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.eskul-card:hover {
    transform: scale(1.05);
    border-color: #00BFFF;
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.2);
}

.eskul-card i {
    font-size: 3rem;
    color: #00BFFF;
    margin-bottom: 1rem;
}

.eskul-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00BFFF;
    margin-bottom: 1rem;
}

.eskul-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00BFFF;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #00BFFF;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.eskul-card a:hover {
    background: #00BFFF;
    color: white;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

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

.contact-info h3, .social-media h3 {
    font-family: 'Orbitron', monospace;
    color: #00BFFF;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00BFFF;
}

.contact-item i {
    color: #00BFFF;
    font-size: 1.5rem;
}

.social-links {
    display: grid;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid;
}

.social-link.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border-color: #25D366;
}

.social-link.instagram {
    background: linear-gradient(45deg, #E4405F, #C13584);
    color: white;
    border-color: #E4405F;
}

.social-link.tiktok {
    background: linear-gradient(45deg, #000000, #FF0050);
    color: white;
    border-color: #FF0050;
}

.social-link.facebook {
    background: linear-gradient(45deg, #1877F2, #4267B2);
    color: white;
    border-color: #1877F2;
}

.social-link:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    padding: 2rem 0;
    border-top: 2px solid #00BFFF;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #00BFFF;
}

.footer-logo img {
    border-radius: 50%;
    border: 2px solid #00BFFF;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin-bottom: 0.5rem;
    color: #87CEEB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #1E90FF, #00BFFF);
}

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

.section-title,
.program-card,
.eskul-card,
.org-card,
.spec-card {
    animation: fadeInUp 0.6s ease-out;
}
