/* Main Styles for PADRIVE */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.book-court-btn {
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 600;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
}

.hero-carousel .carousel-item {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    max-width: 700px;
}

.hero-carousel .carousel-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-carousel .carousel-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-carousel .carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-carousel .carousel-content .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-content .btn-explore {
    background-color: #fff;
    color: #0d6efd;
}

.hero-carousel .carousel-content .btn-explore:hover {
    background-color: #0d6efd;
    color: #fff;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-stats {
    margin-top: -40px;
    margin-bottom: 40px;
}

.stats-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stats-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0d6efd;
}

.stats-box p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-carousel .carousel-content h1 {
        font-size: 3rem;
    }
    
    .hero-carousel .carousel-content h2 {
        font-size: 2rem;
    }
    
    .hero-carousel .carousel-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel .carousel-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-carousel .carousel-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-carousel .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-stats {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-carousel .carousel-content h1 {
        font-size: 2rem;
    }
    
    .hero-carousel .carousel-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-carousel .carousel-content p {
        font-size: 1rem;
    }
    
    .hero-carousel .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
}
