:root {
    --dark-blue: #1a1f24;
    --dark-grey: #1e2328;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --blue-accent: #3182ce;
    --blue-hover: #2c5282;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-primary);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: var(--dark-grey);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--text-primary);
}

.add-store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--blue-accent);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-store-btn:hover {
    background-color: var(--blue-hover);
}

/* Main Content Styles */
.main-content {
    padding: 3rem 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.sidebar h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.prose p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Store Card Styles */
.store-card {
    background-color: var(--dark-grey);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.store-image {
    height: 12rem;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.description {
    color: var(--text-secondary);
    flex-grow: 0.5;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.detail a {
    color: var(--blue-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.detail a:hover {
    color: var(--blue-hover);
}

/* Icon Styles */
.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-grey);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: var(--text-secondary);
}

.footer-note {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }
}