/* Custom styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #ffcc00;
}

.navbar-brand {
    font-weight: bold;
    color: #3e2723;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-toggler {
    border-color: #3e2723;
}

.navbar-toggler-icon {
    color: #3e2723;
}

/* Hero section with wallpaper */
.hero-section {
    background-image: url('images/biryaniwallpaper.jpeg');
    /* Path to your wallpaper image */
    background-position: center;
    background-size: cover;
    height: 650px;
}

.hero-section h1 {
    font-size: 3em;
    margin: 0;
}

.hero-section p {
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-section h1 {
        font-size: 2.5em;
    }

    .hero-section p {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1em;
    }
}

/* Testimonials Section */
#customer-testimonials {
    background-color: #f9f9f9;
    /* Light background for the section */
    padding: 40px 0;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 380px;
    /* Ensure full image display */
}

.card-body {
    background-color: #fff;
    padding: 20px;
}

.card-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.card-text {
    font-style: italic;
    color: #555;
}

.text-muted {
    font-size: 0.9rem;
    color: #777;
}

/* Footer Section */
footer {
    background-color: #3e2723;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
}

@media (max-width: 576px) {
    footer {
        font-size: 0.9rem;
    }
}

/* Navbar Adjustments */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 5px;
    }
}
