/* ===================================
   Babymassage Puur Geluk - Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Warm, baby-friendly palette */
    --color-primary: #f4a6a3;        /* Soft pink */
    --color-secondary: #a8d8ea;      /* Light blue */
    --color-accent: #f9d77e;         /* Warm yellow */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #fff8f8;  /* Very subtle light pink */
    --color-border: #e8e8e8;
    
    /* Header height for scroll offset */
    --header-height: 120px;
    
    /* Typography */
    --font-family-base: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: var(--spacing-lg); }
h3 { font-size: 1.5rem; margin-top: var(--spacing-md); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: #d88886;
    text-decoration: underline;
}

ul, ol {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-xs);
}

strong {
    color: var(--color-text);
}

/* Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    text-align: center;
    padding: var(--spacing-sm) 0;
    position: relative;
}

.site-title {
    font-size: 2rem;
    margin-bottom: 0;
    color: white;
}

.site-tagline {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Carousel */
.carousel-section {
    background-color: white;
    padding: var(--spacing-lg) 0;
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.carousel-image-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.carousel-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
}

.carousel-arrow {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #f294a1 0%, #8ec9df 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow span {
    line-height: 1;
}

/* Navigation */
.main-nav {
    margin-top: var(--spacing-md);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0 var(--spacing-sm);
}

.nav-menu a {
    color: white;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

/* Main Content */
.site-main {
    min-height: 60vh;
}

.page-section {
    padding: var(--spacing-xl) 0;
}

.page-section:nth-child(odd) {
    background-color: white;
}

.page-section:nth-child(even) {
    background-color: var(--color-background-alt);
}

.hero-section {
    background: linear-gradient(135deg, rgba(244, 166, 163, 0.1) 0%, rgba(168, 216, 234, 0.1) 100%);
    padding: var(--spacing-xl) 0;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #e89b9a 0%, #8fc5dc 100%);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: var(--spacing-xs);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.95);
}

.footer-menu a:hover {
    color: white;
    text-decoration: underline;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.95);
}

.footer-col strong {
    color: white;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.95);
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    /* padding-top: var(--spacing-md); */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-base: 14px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: var(--spacing-md);
        z-index: 1001;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
        padding: var(--spacing-sm) 0;
        margin-top: var(--spacing-sm);
        border-radius: var(--border-radius);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: var(--spacing-xs) 0;
        width: 100%;
        text-align: center;
    }
    
    .page-section {
        padding: var(--spacing-md) 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .carousel {
        gap: var(--spacing-sm);
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
    }
    
    .site-title {
        font-size: 1.75rem;
    }
    
    .site-tagline {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .nav-toggle {
        display: none;
    }
    
    .page-section {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}