* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(138, 92, 246, 0.856), rgba(236, 72, 153, 0.8)), 
        url('studio_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    animation: fadeIn 5s ease-in-out;
}

.logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 0 35px rgba(140, 94, 248, 0.568);
    animation: pulse 1s infinite;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e5e5e5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #2d2d2d;
}

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

.about-image {
    text-align: center;
}

.microphone {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.language-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-section h3 {
    color: #8B5CF6;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.language-section p {
    color: #e5e5e5;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-item h3 {
    color: #8B5CF6;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #e5e5e5;
}

.contact-item a {
    color: #EC4899;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8B5CF6;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    padding: 50px 0;
    background-color: #000000a6;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.2);
}

.email-button {
    margin-bottom: 30px;
}

.email-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background-color: #8B5CF6;
    color: white;
}

.partner {
    margin-bottom: 30px;
}

.partner-logo {
    display: flex;
    height: 32px;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(236, 72, 153, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo {
        width: 200px;
        height: 200px;
    }
    
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .social-media {
        flex-wrap: wrap;
    }
}

