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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    background-color: #FFDE21;
    color: #333;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    height: 48vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FFDE21 0%, #FFC700 100%);
    color: #333;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4vw;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

/* Services Section */
.services-section {
    background-color: #f5f5f5;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    max-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    color: #FFDE21;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* SparkPlay Card Special Styling */
.sparkplay-card {
    background: linear-gradient(135deg, #FFDE21 0%, #FFC700 100%);
    color: #333;
}

.sparkplay-card h3 {
    color: #333;
}

.sparkplay-card p {
    color: #333;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #333;
    color: #FFDE21;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.contact-item {
    flex: 1 1 300px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #FFDE21;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

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

.contact-item a:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: #FFDE21;
    color: #333;
    text-align: center;
    padding: 2rem;
}

.footer p {
    font-size: 1rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 8vw;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .contact-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 10vw;
    }

    .section {
        padding: 40px 15px;
    }
}
