/* Mary's Apotheke - Static Landing Page */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #cf2e2e;
    --color-primary-dark: #a82424;
    --color-text: #32373c;
    --color-text-light: #666;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #f5f5f5;
    --color-gray: #e0e0e0;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--color-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: var(--color-white);
}

.locations h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-text);
}

.locations-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: var(--color-gray-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.location-link {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

.location-card:hover .location-link {
    text-decoration: underline;
}

/* Emergency Section */
.emergency {
    padding: 60px 0;
    background: var(--color-gray-light);
    text-align: center;
}

.emergency-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(207, 46, 46, 0.3);
}

.emergency-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 46, 46, 0.4);
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-contact a {
    color: var(--color-white);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .locations {
        padding: 60px 0;
    }

    .locations h2 {
        font-size: 1.6rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-card {
        padding: 30px 20px;
    }

    .emergency-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-image {
        max-width: 250px;
        margin-bottom: 30px;
    }
}
