:root {
    --primary-color: #DAA520; /* Goldenrod / Gipfeli-Gold */
    --primary-hover: #B8860B;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Lora', serif;
}

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

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-color: #333;
    color: white;
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../img/hero.webp');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Bakery Grid */
.bakery-selection {
    padding: 60px 0;
    text-align: center;
}

.bakery-selection h2 {
    font-family: var(--font-heading);
    margin-bottom: 40px;
    font-size: 2rem;
}

.bakery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.bakery-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bakery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.bakery-link {
    text-decoration: none;
    color: inherit;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.logo-wrapper {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: white;
    padding: 10px;
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bakery-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bakery-meta {
    padding: 15px;
    background: #f1f1f1;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.external-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.external-link:hover {
    text-decoration: underline;
}

/* CTA Card Specifics */
.cta-card {
    border: 2px dashed var(--primary-color);
    background: #fffdf5;
}

.plus-icon {
    font-size: 5rem;
    color: var(--primary-color);
    font-weight: 300;
}

.cta-card p {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 5px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    background: #333;
    color: #ccc;
    margin-top: 60px;
}

.footer nav {
    margin-bottom: 20px;
}

.footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

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

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