/* =========================
   Preloader
========================= */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
#preloader img {
    width: 100px;
    height: 100px;
    animation: spin 2.5s linear forwards;
}
@keyframes spin {
    0% { transform: rotate(0deg); opacity: 1; }
    80% { transform: rotate(720deg); opacity: 1; }
    100% { transform: rotate(720deg); opacity: 0; }
}

/* =========================
   Body & Typography
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #111;
}

/* =========================
   Navbar
========================= */
.navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.navbar .nav-link {
    color: #111 !important;
    font-weight: 500;
    transition: color 0.3s;
}
.navbar .nav-link:hover {
    color: #ff6f00 !important;
}
.navbar-brand {
    font-weight: 700;
    color: #ff6f00 !important;
    font-size: 1.6rem;
}

/* =========================
   Hero Section
========================= */
.hero-section {
    position: relative;
    padding: 6rem 0;
    background-color: #f9f9f9;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-title .text-warning {
    color: #ff6f00 !important;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}
.hero-buttons .btn-warning {
    background-color: #ff6f00;
    border: none;
    transition: transform 0.3s;
}
.hero-buttons .btn-warning:hover {
    transform: translateY(-3px);
}
.hero-buttons .btn-outline-light {
    color: #ff6f00;
    border-color: #ff6f00;
}
.hero-buttons .btn-outline-light:hover {
    background-color: #ff6f00;
    color: #fff;
}
.hero-section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* =========================
   Features Section
========================= */
.features-section {
    background-color: #fff;
    padding: 5rem 0;
}
.section-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: #777;
    font-size: 1rem;
    margin-bottom: 3rem;
}
.feature-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-icon i {
    font-size: 2.5rem;
    color: #ff6f00;
    margin-bottom: 1rem;
}
.feature-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: #555;
}

/* =========================
   Event Carousel Section
========================= */
.event-carousel {
    background-color: #f9f9f9;
    padding: 5rem 0;
}
.carousel-item img {
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}
.carousel-caption {
    background: rgba(17,17,17,0.8);
    border-radius: 12px;
    padding: 1.5rem;
}
.carousel-caption h3 {
    color: #ff6f00;
    font-weight: 700;
}
.carousel-caption p {
    color: #fff;
    margin-bottom: 0.5rem;
}
.carousel-caption a.btn {
    margin-top: 0.5rem;
}

/* =========================
   CTA Section
========================= */
.cta-section {
    background-color: #111;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    border-radius: 15px;
    margin: 5rem 2rem;
}
.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section p {
    color: #ddd;
    margin-bottom: 2rem;
}
.cta-section .btn-warning {
    background-color: #ff6f00;
    border: none;
}

/* =========================
   Footer
========================= */
footer {
    background-color: #111;
    color: #ccc;
    padding: 3rem 0;
}
footer a {
    color: #ff6f00;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* =========================
   Responsive Adjustments
========================= */
@media(max-width: 991px){
    .hero-section {
        padding: 4rem 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .cta-section {
        margin: 3rem 1rem;
        padding: 3rem 1rem;
    }
}

@media(max-width: 576px){
    .feature-card {
        padding: 1.5rem;
    }
    .carousel-item img {
        height: 300px;
    }
}
