/* =============================================
   Haar Concept — Kapper Amsterdam West
   Brand colors: Burgundy/Maroon (#950616), warm cream
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --burgundy: #950616;
    --burgundy-light: #b8182a;
    --burgundy-dark: #7a0512;
    --dark: #1a1a1a;
    --brown: #3a2a2a;
    --brown-light: #5a4040;
    --cream: #faf8f5;
    --cream-dark: #f0ece7;
    --warm-white: #fffdf9;
    --gold: #c8965a;
    --gold-light: #e8c799;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --overlay: rgba(26, 16, 16, 0.6);
    --overlay-dark: rgba(26, 16, 16, 0.75);
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 253, 249, 0.97);
    box-shadow: var(--shadow);
    padding: 0.5rem 2rem;
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--transition);
}

nav.scrolled .nav-logo { color: var(--burgundy); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--transition);
}

nav.scrolled .nav-links a { color: var(--brown); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--burgundy);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--burgundy); }

.nav-cta {
    background: var(--burgundy);
    color: white !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--burgundy-light);
    color: white;
    transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    transition: all var(--transition);
}

nav.scrolled .nav-toggle span { background: var(--brown); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 16, 16, 0.2) 0%,
        rgba(26, 16, 16, 0.4) 50%,
        rgba(26, 16, 16, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--burgundy);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--burgundy);
    color: white;
}

.btn-primary:hover {
    background: var(--burgundy-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 6, 22, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: white;
    color: var(--brown);
    border-color: white;
}

.btn-outline-dark {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn-outline-dark:hover {
    background: var(--burgundy);
    color: white;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--burgundy);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero .hero-bg { filter: brightness(0.45); }

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* ===== HIGHLIGHTS / CARDS ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== STORY / ABOUT SECTION ===== */
.story-section {
    background: var(--brown);
    color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 { color: white; }
.story-content .section-label { color: var(--gold-light); }

.story-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price-tag {
    color: var(--burgundy);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.price-tag small {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

/* ===== PRICE TABLE (diensten page) ===== */
.price-category {
    margin-bottom: 3rem;
}

.price-category h3 {
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--burgundy);
    display: inline-block;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
    gap: 1rem;
}

.price-item:last-child { border-bottom: none; }

.price-item-info { flex: 1; }

.price-item-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.price-item-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.price-item-duration {
    display: inline-block;
    background: var(--cream-dark);
    color: var(--text-light);
    padding: 0.15rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-top: 0.3rem;
}

.price-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--burgundy);
    white-space: nowrap;
}

/* ===== TEAM ===== */
.team-profile {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.team-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.team-bio h2 {
    font-size: 2.2rem;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--burgundy);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: block;
}

.team-bio p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.stat-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 700; color: var(--burgundy); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* ===== CONTACT / INFO ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.info-card p, .info-card a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-card a { color: var(--burgundy); font-weight: 500; }

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== HOURS TABLE ===== */
.hours-table-styled {
    width: 100%;
    max-width: 500px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; }
.hours-time { color: var(--text-light); }

/* Dark hours section */
.hours-dark { background: var(--dark); color: white; }
.hours-dark .section-header h2 { color: white; }
.hours-dark .section-header p { color: rgba(255,255,255,0.6); }
.hours-dark .hours-row { border-color: rgba(255,255,255,0.1); }
.hours-dark .hours-day { color: white; }
.hours-dark .hours-time { color: rgba(255,255,255,0.6); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--burgundy);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--burgundy);
}

/* ===== BOOKING BOX ===== */
.booking-box {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-box h3 {
    color: var(--brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.booking-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.booking-note {
    background: var(--cream);
    border-left: 4px solid var(--burgundy);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: left;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.features-list li .icon {
    color: var(--burgundy);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; }

footer li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

footer li a:hover { color: var(--burgundy-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links { display: flex; gap: 1rem; }

.social-links a {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    transition: color var(--transition);
}

.social-links a:hover { color: var(--burgundy-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(58, 42, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.open { display: flex; }
    .nav-links a { color: white !important; font-size: 1.2rem; }
    .nav-toggle { display: flex; }

    .story-grid, .team-profile { grid-template-columns: 1fr; gap: 2rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .hero { min-height: 100svh; }

    .price-item { flex-direction: column; gap: 0.5rem; }
    .price-item-price { align-self: flex-start; }

    .stat-row { flex-wrap: wrap; gap: 1.5rem; }

    nav { padding: 0.75rem 1rem; }
    nav.scrolled { padding: 0.5rem 1rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; align-items: center; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu toggle animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
body.menu-open {
    overflow: hidden;
}


/* ===== SERVICE IMAGE (replacing emoji icons) ===== */
.service-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
    width: calc(100% + 4rem);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-card {
    overflow: hidden;
}
