:root {
    --primary-color: #2c3e50;
    --secondary-color: #c0392b;
    --background-color: #ecf0f1;
    --text-color: #34495e;
    --light-text-color: #ffffff;
    --card-background: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text-color);
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .description {
	justify-content: center;
    align-items: center;
    text-align: center;
	font-size: 1.1rem;
}
.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

main {
    padding: 3rem 2rem;
}

section {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}
a {
	color: var(--light-text-color);
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0.5rem auto 0;
}

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

.shop-card {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.shop-image-placeholder {
    height: 200px;
    background-color: #bdc3c7;
    /* In a real project, you would use an <img> tag or a background-image URL here */
}

.shop-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
}

.shop-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.newsletter-signup {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 4rem 2rem;
    text-align: center;
}

.signup-content {
    max-width: 700px;
    margin: 0 auto;
}

.signup-content h2 {
    color: white
}

.signup-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.signup-form input {
    width: 60%;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.signup-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #e74c3c;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-color);
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .signup-form {
        flex-direction: column;
        align-items: center;
    }

    .signup-form input,
    .signup-form button {
        width: 100%;
        max-width: 400px;
    }
}
