/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    text-align: center;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* Navigation Bar */
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366;
    color: white;
    padding: 10px 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-bar ul {
    display: flex;
}

.nav-bar li {
    margin-right: 20px;
}

.nav-bar a {
    text-decoration: none;
    color: white;
}

.nav-bar a:hover {
    color: #ddd; /* Optional hover effect */
}

/* Hero Section */
.hero {
    background-image: url('hero-image.jpg'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 2.5em;
}

.hero-content p {
    font-size: 1.2em;
}

/* Content Section */
.content-section {
    padding: 40px 20px; /* Adjusted padding for spacing consistency */
}

.content-section h2,
.content-section h3 {
    color: #003366; /* Matches the navigation bar color */
}

.bullet-list {
    max-width: 800px; /* Centers content and limits width */
    margin: auto; /* Centers the list */
}

.bullet-list li {
    margin-bottom: 10px; /* Adds spacing between list items */
}

/* Footer Section */
.footer {
    background-color: #003366; /* Matches the navigation bar color */
    color: white;
    text-align: center;
}

.footer-nav ul {
    display: flex;
    justify-content: center; /* Centers navigation links in footer */
}

.footer-nav li {
    margin-right: 15px; /* Adds spacing between links */
}

.footer-nav a {
    text-decoration: none; /* Removes underline from links */
}

a {
    text-decoration: none;
    color: white;
}

/* About Images Section */
.about-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-images img {
    width: 30%;
}
.faq-images {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds spacing between images */
    margin-top: 20px; /* Adds spacing above the image row */
}

.faq-images img {
    width: 30%; /* Ensures images are evenly sized */
    border-radius: 5px; /* Optional: Adds rounded corners for a polished look */
}

/* Content Section Enhancements */
#restaurants, #grocery-stores, #lodging {
    padding: 40px 20px; /* Adds consistent spacing */
    background-color: #f9f9f9; /* Light background for better readability */
    border-radius: 10px; /* Adds rounded corners */
    margin: 20px auto; /* Centers the sections and adds spacing between them */
    max-width: 900px; /* Limits section width for a clean layout */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
}

#restaurants h2, #grocery-stores h2, #lodging h2 {
    color: #003366; /* Matches navigation bar color */
    font-size: 1.8em; /* Slightly larger font size for section titles */
    margin-bottom: 15px; /* Adds spacing below titles */
}

#restaurants p, #grocery-stores p, #lodging p {
    font-size: 1.1em; /* Slightly larger font size for text */
    line-height: 1.6; /* Improves readability by increasing line spacing */
    margin-bottom: 20px; /* Adds spacing below paragraphs */
}

#restaurants ul, #grocery-stores ul, #lodging ul {
    list-style-type: disc; /* Adds bullet points */
    padding-left: 40px; /* Indents bullet points for better alignment */
}

#restaurants li, #grocery-stores li, #lodging li {
    margin-bottom: 10px; /* Adds spacing between list items */
}

/* Images Section Enhancements */
#stay-images {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds consistent spacing between images */
    margin-top: 30px; /* Adds spacing above the image row */
}

#stay-images img {
    width: 30%; /* Ensures images are evenly sized */
    border-radius: 10px; /* Adds rounded corners to images */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
}

