/* Base Variables (Bellalux Dark-Chic Theme) */
:root {
    /* Colors extracted from the salon photo */
    --bg-main: #0B4A40; /* Deep Emerald Green (Wall) */
    --bg-card: #155E53; /* Slightly Lighter Green */
    --text-primary: #FFFFFF; /* High contrast for readability */
    --text-secondary: #FFFFFF; /* Pure white for paragraphs */
    
    --accent-pink: #F89EB0; /* Coral/Salmon pink from the chair */
    --accent-pink-dark: #C9167F; /* Fuchsia from the dress/flowers */
    
    --honey-gold: #E5C383; /* Warm gold from the logo and crown */
    --honey-light: #216D61; /* Darker accent background */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Layout styling */
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-pill: 50px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Shadows - adjusted for dark theme */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.85; 
    overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--honey-gold);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--honey-gold);
}

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

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 158, 176, 0.95); /* Light pink navbar */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 195, 131, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 700;
    color: var(--bg-main); /* Dark green logo on pink navbar */
}

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

.nav-links a:not(.btn-primary-small) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bg-main); /* Dark text for contrast on pink navbar */
    transition: var(--transition);
    position: relative;
}

.nav-links a.active {
    color: var(--bg-main);
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--bg-main);
    bottom: -4px;
    left: 0;
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--bg-main);
    bottom: -4px;
    left: 0;
    transition: var(--transition);
}

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

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

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary {
    display: inline-block;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--honey-gold);
    color: var(--bg-main);
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 20px rgba(229, 195, 131, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-pink);
    color: var(--bg-main);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(248, 158, 176, 0.4);
}

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    background-color: var(--accent-pink);
    color: var(--bg-main);
    font-size: 0.9rem;
}

.btn-primary-small:hover {
    background-color: var(--honey-gold);
    color: var(--bg-main);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--honey-gold);
    border: 2px solid var(--honey-gold);
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background-color: var(--honey-gold);
    color: var(--bg-main);
}

/* Page Header & Hero */
.hero, .page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(circle at top, rgba(33, 109, 97, 0.4) 0%, rgba(11, 74, 64, 0) 70%);
}

.hero {
    height: 100vh;
    min-height: 700px;
}

.hero::before, .page-header::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--accent-pink-dark);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--honey-gold);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.2;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.subtitle {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Info Grid (Vakken) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(229, 195, 131, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(248, 158, 176, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--honey-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover .card-icon {
    background-color: var(--accent-pink);
    color: var(--bg-main);
}

/* Offerte Section */
.offerte-section {
    background-color: var(--honey-light);
    border-radius: 40px;
    margin: 2rem;
    box-shadow: var(--shadow-soft);
}

.offerte-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: inset 0 0 0 1px rgba(229, 195, 131, 0.3);
}

.offerte-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(229, 195, 131, 0.2);
    padding-bottom: 1.5rem;
}

.offerte-header .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin: 0;
    font-weight: 700;
}

.offerte-list {
    list-style: none;
    text-align: center;
}

.offerte-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-secondary);
}

.offerte-list i {
    color: var(--honey-gold);
}

.offerte-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Moodboard Styles */
.portfolio-category {
    margin-bottom: 5rem;
    text-align: center;
}

.mb-desc {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.placeholder-box {
    background: rgba(33, 109, 97, 0.5);
    border: 1px dashed var(--accent-pink-dark);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
}

.placeholder-box:hover {
    background: rgba(229, 195, 131, 0.1);
    border-color: var(--honey-gold);
}

.mb-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    grid-auto-rows: 350px;
}

.mb-reels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.placeholder-box.vertical {
    aspect-ratio: 9/16;
    height: auto;
}

.placeholder-box.landscape {
    width: 100%;
    aspect-ratio: 16/9;
}

/* Contact Page */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

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

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-top: 0.2rem;
}

.contact-item strong {
    font-family: var(--font-heading);
    color: var(--honey-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

.contact-item a {
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--honey-gold);
}

.aesthetic-blob {
    width: 100%;
    height: 600px;
    background: radial-gradient(circle at right, var(--accent-pink-dark) 0%, var(--honey-light) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.2), var(--shadow-soft);
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Layout utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .aesthetic-blob {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.btn-primary-small) {
        display: none; /* simple mobile nav */
    }
    .offerte-section {
        margin: 0;
        border-radius: 0;
    }
    .offerte-card {
        padding: 2rem;
    }
    .hide-mobile {
        display: none !important;
    }
}
