﻿body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.navbar {
    margin-bottom: 0;
}

.navbar-header .navbar-brand {
    padding: 0;
}

.navbar-brand img {
    max-height: 60px; /* Adjust if needed */
    height: auto;
}

.navbar-nav {
    margin: 0;
}

    .navbar-nav > li > a {
        padding: 15px 20px;
        font-size: 16px;
    }


#content_hero {
    background: url('') no-repeat center center;
     background-size: contain; /* Ensure the entire image is visible */
    background-position: center; /* Center the image within the div */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    width: 100vw; /* Full viewport width */
    height: 300px; /* Default height; adjust as needed */
    min-height: 150px; /* Minimum height to ensure visibility on smaller screens */
    box-sizing: border-box;
}

    #content_hero h1 {
        font-size: 3em;
        margin-bottom: 20px;
        font-weight: bold;
    }

    #content_hero p {
        font-size: 1.5em;
    }

.container.section {
    padding: 40px 15px;
}

.products h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #3498db;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px); /* Adjusted width for smaller screens */
    max-width: 350px; /* Maximum width for consistency */
    text-align: center;
    padding: 20px; /* Increased padding */
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px; /* Added margin for spacing between rows */
}

    .product-item:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .product-item img {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }

    .product-item h3 {
        font-size: 1.2em;
        margin: 10px 0;
        color: #3498db;
    }

    .product-item .price {
        color: #e74c3c;
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .product-item .details {
        font-size: 0.9em;
        color: #555;
        margin-bottom: 10px;
    }

.quantity-control {
    margin: 10px 0;
}

    .quantity-control button {
        background-color: #3498db;
        border: none;
        color: white;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1.2em;
        margin: 0 5px;
    }

.add-to-cart button {
    background-color: #202b55;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 1.1em;
}

    .add-to-cart button:hover {
        background-color: #811b24;
    }

.reservation1 {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .reservation1 h2 {
        font-size: 2em;
        margin-top: 0;
        color: #3498db;
    }

    .reservation1 ul {
        list-style: none;
        padding: 0;
    }

    .reservation1 li {
        margin-bottom: 15px;
    }

    .reservation1 input[type="text"],
    .reservation1 input[type="email"],
    .reservation1 input[type="tel"] {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1em;
    }

    .reservation1 .btn {
        background-color: #202b55;
        color: white;
        padding: 10px;
        text-align: center;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.1em;
    }

        .reservation1 .btn:hover {
            background-color: #811b24;
        }

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

    footer a {
        color: #fff;
    }

        footer a:hover {
            color: #3498db;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-item {
        width: calc(100% - 20px); /* Full width on small screens */
    }

    .reservation1 {
        padding: 15px;
    }

    #content_hero h1 {
        font-size: 2em;
    }

    #content_hero p {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .navbar-nav > li > a {
        font-size: 14px;
        padding: 10px 15px;
    }
}
