body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #fff !important;
}

/* Hero Section */
.hero-carousel,
.carousel-item {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 60px;
    background: rgba(0, 0, 0, 0.55);
    padding: 20px 40px;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
}

/* PRODUCT SECTIONS */
.products {
    border-bottom: 2px solid #fff;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: scroll !important; /* makes mobile responsive */
    padding: 60px 0;
}

.products img {
    width: 100%;
    height: auto;
}

.products h2 {
    font-size: 50px;
    color: #fff;
    margin-top: 20px;
}

.products p {
    font-size: 20px;
    color: #fff;
    line-height: 28px;
}

/* FOOTER */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 50px 0 20px;
}

.logo-star {
    color: #007bff;
    font-size: 2.2rem;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .carousel-caption h1 {
        font-size: 2.3rem;
    }
    .carousel-caption p {
        font-size: 1.1rem;
    }
    .products {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 15px 25px;
    }

    .products .col-md-5,
    .products .col-md-6 {
        text-align: center !important;
    }

    .products h2 {
        margin-top: 30px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-carousel,
    .carousel-item {
        height: 70vh;
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}
