/* Hero Section */
.hero {
    position: relative;
    background-image: url("/static/images/spirits.839b759f37b0.jpg"); /* Replace with your image */
    background-size: cover; /* Ensures the image covers the container */
    background-position: center; /* Centers the image */
    height: 600px; /* Fixed height of 500px */
    display: flex; /* For centering content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: Add text shadow for better readability */
    overflow: hidden;
}

.hero::before {
    content: ''; /* Creates the overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Default overlay for desktops */
    z-index: 1; /* Ensure it’s behind text but above the image */
}

.hero > * {
    position: relative; /* Position content above the overlay */
    z-index: 2;
}


.hero h1 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Carousel Section */

#carousel-section {
    background-color: #f8f9fa; /* Light background for contrast */
}

.carousel-inner img {
    height: 500px; /* Set a fixed height for the images */
    object-fit: cover; /* Ensure the images cover the container */
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Improve text readability */
}

.carousel-caption p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    padding: 10px 20px; /* Add padding for better spacing */
    font-size: 1.2rem; /* Increase font size for visibility */
    text-shadow: none; /* Remove text shadow for a clean look */
}

.carousel-caption .btn:hover {
    background-color: #0056b3; /* Change the hover color */
    color: #fff; /* Ensure text remains visible */
}


/* Subscription Section */
.subscribe h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscribe form .form-control {
    max-width: 400px;
}


.subscribe form button {
   background-color: orange;
}


#stores-section {
    background-color: #f8f9fa; /* Light background for contrast */
}

.card {
    border: none; /* Remove default border for a cleaner look */
    border-radius: 10px; /* Add rounded corners */
}

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

.card-body {
    padding: 20px;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 10px;
}





@media (max-width: 768px) {
    .hero {
        height: 275px; /* Adjust the height for smaller screens */

    }

    .hero::before {
        background-color: rgba(0, 0, 0, 0.5); /* Darker overlay for better text readability on mobile */
    }

    .hero h1 {
        font-size: 1.0rem; /* Decrease font size for mobile */
        line-height: 1.2; /* Adjust line height for better readability */
    }



 .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }


     .carousel-caption .btn {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .subscribe h2 {
        font-size: 1.5rem;
    }

    .subscribe form {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center elements on the page */
    }

    .subscribe form .form-control {
        width: 80% !important; /* Make the email input wider on mobile */
        margin-bottom: 10px; /* Add spacing below the input field */
    }

    .subscribe form button {
        width: 80%; /* Match button width to input field */
	background-color: orange;
    }
}


