
/* ---------- Base Styles ---------- */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #333;
}

header {

    background: #1c2b39;

    color: #fff;

    padding: 20px;

    text-align: center;

}

header h1,
header p {
    color: #ffffff;
    margin: 5px 0;
}

nav {

    background: #0f1923;

    padding: 10px;

    text-align: center;

}

nav a {

    color: #fff;

    margin: 0 10px;

    text-decoration: none;

    font-weight: bold;

}

nav a:hover {

    text-decoration: underline;

}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
}

h2, h3 {
    color: #003366;
}

/* ---------- Image Section ---------- */
.hero-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* ---------- Listing Cards ---------- */
.listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #eeeeee;
}

.card h3 {
    margin-top: 0;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* ---------- Links ---------- */
a {
    color: #0033aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---------- Footer ---------- */
footer {
    background: #eeeeee;
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 30px;
}

.store-grid,
.listings {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}