:root {
    /* Kleurenpalet uit de afbeelding */
    --brand-pink-light: #DBB4B3;
    --brand-pink: #CFA29F;
    --brand-cream: #F5EEEB;
    --brand-beige-light: #EDE4DD;
    --brand-beige: #BFB2A6;
    --brand-dark: #1D1D1B;

    /* Typografie */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Cinzel', serif;
    --font-cursive: 'Great Vibes', cursive;
}

body {
    font-family: var(--font-sans);
    color: var(--brand-dark);
    background-color: #ffffff;
}

/* Typografie Utility Classes */
.font-serif { font-family: var(--font-serif); }
.font-cursive { font-family: var(--font-cursive); }
.text-pink { color: var(--brand-pink); }
.bg-cream { background-color: var(--brand-cream); }
.bg-pink { background-color: var(--brand-pink); }
.letter-spacing-wide { letter-spacing: 2px; }
.text-xs { font-size: 0.75rem; }

/* Custom Buttons */
.btn-brand-pink {
    background-color: var(--brand-pink);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}
.btn-brand-pink:hover {
    background-color: var(--brand-pink-light);
    color: #ffffff;
}
.btn-outline-pink {
    background-color: transparent;
    color: var(--brand-pink);
    border: 1px solid var(--brand-pink);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}
.btn-outline-pink:hover {
    background-color: var(--brand-pink);
    color: #ffffff;
}

/* Navigatie Hover */
.nav-link-custom {
    color: var(--brand-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nav-link-custom:hover {
    color: var(--brand-pink);
}

/* Specifieke Afbeelding Vormen (Ronde bogen) */
.img-arch-hero {
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    object-fit: cover;
    height: 100%;
    min-height: 500px;
    width: 100%;
}
.img-arch-about {
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    border-bottom-left-radius: 500px;
    object-fit: cover;
    height: 100%;
    min-height: 450px;
    width: 100%;
}
.img-portfolio {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Icon box voor Over Ons */
.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

/* Custom Inputs voor formulieren */
.form-control-custom {
    background-color: rgba(245, 238, 235, 0.4);
    border: 1px solid #e9ecef;
    border-radius: 0;
    font-size: 0.8rem;
    padding: 10px 15px;
}
.form-control-custom:focus {
    border-color: var(--brand-pink);
    box-shadow: none;
    background-color: rgba(245, 238, 235, 0.6);
}
