/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #e6f7ff, #f4f4f4); /* Gradient background */
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header and Footer Styling */
header, footer {
    background-color: #007BFF; /* Blue color for header/footer */
    color: white;
    padding: 20px;
    border-radius: 10px;
}

header h1, footer p {
    margin: 0;
}

footer p {
    font-size: 14px;
}

/* Navigation Bar Styling */
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 16px;
    background-color: #0056b3; /* Slightly darker blue for buttons */
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #004099; /* Dark blue hover effect */
}

/* Headings Styling */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.2em;
    color: #555;
}

/* Section Styling */
section {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* About Us Section with Background */
#about {
    position: relative;
    padding: 30px 20px;
    background: url('images/about-us.jpg') no-repeat center center fixed; /* Background image */
    background-size: cover; /* Ensures the image covers the entire section */
    color: white; /* Makes text stand out on dark backgrounds */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Adds a shadow to the text for readability */
    min-height: 200px; /* Reduced minimum height */
}

/#about h2, #about p {
    z-index: 2;
    position: relative;
}

/* List Styling */
ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
}

li {
    font-size: 18px;
    margin: 5px 0;
}

/* Button Styling */
button, .special-button {
    background-color: #28a745; /* Green color for buttons */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Ensures buttons and links look consistent */
    display: inline-block;
}

button:hover, .special-button:hover {
    background-color: #218838; /* Darker green hover effect */
}

/* Image Grid Styling */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.image-grid div {
    text-align: center;
}

.image-grid img {
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Creates depth effect */
}

/* Price Tag Styling */
.price-tag {
    display: inline-block;
    background-color: #FFD700; /* Golden background */
    color: #000; /* Black text */
    font-weight: bold;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.slides {
    display: none;
    width: 100%;
    max-width: 800px; /* Set the maximum width */
    height: 450px; /* Consistent height */
    object-fit: cover; /* Ensures consistent scaling */
    margin: auto;
    border-radius: 10px;
}

/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth; /* Enables smooth scrolling to sections */
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    ul li {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column; /* Stack navigation items on smaller screens */
    }

    .image-grid img {
        width: 90%; /* Make images more adaptable on smaller screens */
    }
}