/* Reset CSS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: white;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7B2CBF 0%, #A855F7 50%, #C084FC 100%);
    overflow: hidden;
}

.language-selector {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 20;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Background decorations */
.bg-decoration {
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.bg-decoration-1 {
    top: -160px;
    right: -160px;
}

.bg-decoration-2 {
    bottom: -160px;
    left: -160px;
    animation-delay: 3s;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
}

.palco-star {
    width: 96px;
    height: 96px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(123, 44, 191, 0.3));
    animation: rotate 20s linear infinite;
}

.palco-star-glow {
    width: 96px;
    height: 96px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite, rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Typography */
.hero-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-slogan {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.badge-purple {
    background: rgba(147, 51, 234, 0.1);
    color: rgb(147, 51, 234);
    border-color: rgba(147, 51, 234, 0.3);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #7B2CBF;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(123, 44, 191, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(123, 44, 191, 0.8);
    }
}

/* Sections */
.mission-vision-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.features-section {
    padding: 5rem 0;
    background: white;
}

.categories-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.coming-soon-section {
    padding: 5rem 0;
    background: white;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #7B2CBF 0%, #A855F7 50%, #C084FC 100%);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #7B2CBF 0%, #A855F7 50%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.white {
       background: none;
       -webkit-text-fill-color: white;
       -webkit-background-clip: unset;
       background-clip: unset;
       color: white;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.9);
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.card-gradient {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: none;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #7B2CBF 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(123, 44, 191, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #7B2CBF 0%, #A855F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.2);
}

.category-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
}

.category-icon svg {
    color: white;
}

.category-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

/* Coming Soon */
.coming-soon-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

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

.progress-card {
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 0.75rem;
    background: white;
}

.progress-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.progress-status {
    color: #9333ea;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7B2CBF 0%, #A855F7 100%);
    border-radius: 9999px;
    transition: width 1s ease;
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

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

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    color: #333;
    background: white;
}

.cta-button-form {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-star {
    width: 48px;
    height: 48px;
    animation: rotate 20s linear infinite;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-slogan {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-contact {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-email {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #A855F7;
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-slogan {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
