@charset "utf-8";
* {
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0f172a;
    color: #e5e7eb;
    line-height: 1.8;
    margin: 0;
}


.navbar {
    background: linear-gradient(90deg, #020617, #111827);
}

.navbar-brand {
    letter-spacing: 1px;
}

.nav-link {
    color: #e5e7eb !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #facc15 !important;
    transform: translateY(-2px);
}


.hero-section {
    background: radial-gradient(circle at top, #facc15 0, #e11d48 40%, #0f172a 80%);
    color: #fff;
}

.hero-section h1 {
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.hero-section .btn-warning {
    border-radius: 999px;
    padding: 0.7rem 2.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
}

.hero-section .btn-warning:hover {
    transform: translateY(-2px);
}


.card {
    background-color: #111827;
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

#features,
#team,
#faq,
section.container {
    background-color: #020617;
}


#features h2,
#gallery h2,
#team h2,
#faq h2,
.container > h1,
.container > h2,
.container > h3 {
    color: #facc15;
}


#gallery {
    background-color: #020617;
}

#mainCarousel img {
    max-height: 420px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.8));
}


.list-group-item {
    background-color: #020617;
    color: #e5e7eb;
    border-color: rgba(255, 255, 255, 0.08);
}


.progress {
    height: 20px;
    background-color: #1e293b;
}


form input,
form textarea {
    background-color: #0f172a;
    color: #fff;
    border: 1px solid #334155;
}

form input::placeholder,
form textarea::placeholder {
    color: #9ca3af;
}

form input:focus,
form textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 0.2rem rgba(250, 204, 21, 0.3);
}


.alert {
    border-radius: 0.5rem;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}


section.py-5.container {
    background-color: #020617;
    border-radius: 0.75rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
    padding: 2.5rem 1.5rem !important;
}
p {
    color: #FFFFFF;
    text-shadow: 1px 1px 20px #000000;
}


@media (max-width: 768px) {
    .hero-section {
        padding: 0 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    #mainCarousel img {
        max-height: 260px;
    }

    section.py-5.container {
        margin-top: 5rem;
        margin-bottom: 2rem;
        padding: 2rem 1rem !important;
    }
}
