/* styles.css - Babywerk Brochure Site */

:root {
    --primary-color: #222222;
    --background-color: #ffffff;
    --accent-color: #5dade2;
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --font-family: 'Lato', sans-serif;
}

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

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

header {
    background: var(--background-color);
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
}

.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: white;
    padding: 12rem 2rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Lighter overlay */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.logo img {
    height: 60px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.partner-logos img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background: #4a90c2;
}

footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
