/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #333;
    color: white;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background-color: maroon;
    color: white;
    padding: 20px 0;
    text-align: center;
}

h1, h2 {
    margin-bottom: 20px;
}

/* Navigation Bar Styling */
nav {
    width: 100%;
    background-color: grey;
    color: white
    padding: 20px 0;
    text-align: center;
    position: relative;
    font-size: 1em;
    
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    
    
}

nav a:hover {
    background-color: #555;
}
a {
    color: #cc0000; /* Change this to your desired color for links */
}

a:hover {
    color: #FF0000; /* Change this to your desired hover color */
}
/* Dropdown Menu Styling */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: grey;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%; /*Ensure dropdown is below the tab */
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #555;
}

.dropdown:hover .dropdown-content {
    display: block;
}/* Section Styling */
section {
    padding: 80px 20px; /* Adjust to leave space for fixed navbar */
    margin-top: 40px;
}

.business-list {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 1.8rem;
    color: maroon;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-top: 40px;
}

/* Grid Layout for Business Listings */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.business-item {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.business-item h3 {
    margin-bottom: 10px;
    color: maroon;
}

.business-item p {
    font-size: 1rem;
    color: #333;
}

/* Add some hover effects to enhance interactivity */
.business-item:hover h3 {
    color: #555;
}
