/* General Body & Typography */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f8fb; /* Very light blue/off-white */
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a2a40; /* Darker blue for headings */
}

h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1.5em;
    color: #1a2a40;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 0.8em;
}

p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

.subtitle {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 2em;
    color: #555;
}

a {
    color: #007bff; /* Standard blue link */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* For image overflows */
}

/* Background colors adjusted for more vibrance */
.bg-blue {
    background-color: #39a7d3; /* A more vibrant mid-blue */
    color: #ffffff; /* White text on this blue */
}
.bg-blue h2, .bg-blue h3, .bg-blue p {
    color: #ffffff; /* Ensure all text is white */
}


.bg-light-blue {
    background-color: #e0f2f7; /* Keep a softer light blue for contrast */
}


/* Buttons - slight tweaks for more pop */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #ff6f00; /* Vibrant orange for primary button */
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.4);
}

.btn-secondary {
    background-color: #6c757d; /* Grey button for secondary actions */
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}


/* Header & Navigation - New Background Image and Overlay */
.hero-section {
    /* Replace 'path/to/hero-background.jpg' with your actual image */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x800/1e3047/ffffff?text=Vibrant+Bar+Vibes') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    height: 70vh; /* Make it a bit taller */
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Add text shadow for readability */
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute; /* Position nav absolutely within hero */
    top: 20px;
    left: 0;
    padding: 0 20px; /* Add padding to nav */
    z-index: 100; /* Ensure nav is above other content */
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8em;
    color: #fff;
    text-shadow: none; /* Remove shadow from logo */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
    text-shadow: none; /* Remove shadow from nav links */
}

nav ul li a:hover {
    color: #ffddaa; /* Lighter orange/yellow on hover */
}

.hero-content {
    max-width: 800px;
    margin-top: 50px; /* Adjust spacing from nav */
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 2em;
    color: #ffe0b3; /* Slightly warmer white for readability */
}

/* How It Works Section */
.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card img {
    width: 80px; /* Adjust icon size */
    margin-bottom: 20px;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.why-us-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.why-us-item img {
    width: 60px; /* Icon size */
    margin-bottom: 15px;
}

.image-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.img-responsive {
    max-width: 48%; /* Adjust for two images per row */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* Stronger shadow for images */
    transition: transform 0.3s ease;
}

.img-responsive:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

.full-width {
    max-width: 90%; /* For the single image in features */
}

/* Features Section */
.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.feature-list li {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 1.1em;
    line-height: 1.8;
    transition: box-shadow 0.3s ease;
}

.feature-list li:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.feature-list li strong {
    color: #ff6f00; /* Use the vibrant orange for emphasis */
}

/* Testimonials Section */
.testimonial-carousel {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling if many testimonials */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px; /* Space for scrollbar */
}

.testimonial-item {
    flex: 0 0 100%; /* Each item takes full width of container */
    scroll-snap-align: start;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-right: 20px; /* Space between items */
    text-align: center;
    max-width: 800px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.testimonial-item .author {
    font-weight: 600;
    color: #ff6f00; /* Use the vibrant orange */
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #fff;
}

/* Footer */
footer {
    background-color: #1a2a40; /* Dark blue footer */
    color: #d0e8f2;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

footer a {
    color: #a0d8f0;
}

footer a:hover {
    color: #fff;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .hero-section {
        padding: 80px 0;
        height: auto;
    }

    nav {
        flex-direction: column;
        position: relative;
        top: auto;
        padding: 20px;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 15px 10px 15px;
    }

    .hero-content {
        margin-top: 30px;
    }

    .steps-grid, .why-us-grid {
        grid-template-columns: 1fr;
    }

    .img-responsive {
        max-width: 90%; /* Single image per row on small screens */
    }

    .testimonial-item {
        flex: 0 0 95%; /* Adjust width for small screens */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .contact-form {
        padding: 25px;
    }
}