/* Sparkling Blush Theme */

body {
    background-color: #FFF5F7;
    color: #4B2C3A;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #FADADD;
    box-shadow: 0 4px 10px rgba(255, 192, 203, 0.3);
}

.navbar-brand,
.nav-link {
    color: #5C2A3D !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: #B76E79 !important;
    border-bottom: 2px solid #C88EA7;
}

.btn-primary {
    background-color: #C88EA7;
    border-color: #C88EA7;
}

.btn-primary:hover {
    background-color: #B76E79;
    border-color: #B76E79;
}

.alert-success {
    background-color: #FFD1DC;
    color: #5C2A3D;
    border: none;
}

h1,
h2,
h3 {
    color: #5C2A3D;
}

.card {
    background-color: #FFFFFF;
    border: 1px solid #FADADD;
    box-shadow: 0 4px 8px rgba(255, 182, 193, 0.2);
    border-radius: 12px;
}

.sticky-appointment-btn:hover,
.sticky-appointment-btn:focus {
    background-color: #B76E79;
    text-decoration: none;
    transform: translateX(-50%) scale(1.03);
}

.content-with-button {
    padding-bottom: 100px; /* or more, depending on button size */
}


.page-header {
    width: 100%;
    height: 30vh;           /* 30% of viewport height */
    min-height: 90px;      /* never shorter than 60px */
    max-height: 400px;      /* never taller than 400px */
    background-image: url('background-col.png'); /* Your full-width background image */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}

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

.header-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-logo {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: 100%;
    padding-bottom: 20px; /* pushes title to the bottom */
}

.page-title {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    color: #5C2A3D; /* Match your content color */
    font-size: clamp(0.8rem, 2vw, 1.6rem);
    font-weight: 600;
}

/* Sticky appointment button */
.sticky-appointment-btn {
    position: fixed;
    bottom: 20px;
    /* keep lowest */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    background-color: #C88EA7;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(200, 142, 167, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    white-space: nowrap; /* prevent line break */
}

/* Social icons above the button */
.social-icons {
    position: fixed;
    bottom: 68px;
    /* appears above the sticky button */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1040;
    display: flex;
    gap: 16px;
}

.social-icon {
    color: #C88EA7;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #B76E79;
    transform: scale(1.2);
}

.google-icon {
    width: 24px;
    height: 24px;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 0.3s ease, transform 0.2s ease;
}

.google-icon:hover {
    filter: none;
    transform: scale(1.2);
}

form button.btn-primary {
    background-color: #a75d66;
    border-color: #a75d66;
}

form button.btn-primary:hover {
    background-color: #8f4e56;
    border-color: #8f4e56;
}

.carousel {
    max-width: 800px;
    /* breedte van de carousel */
    margin: 0 auto;
}

.carousel-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    /* portretverhouding */
    max-height: 600px;
    /* maximale hoogte */
    overflow: hidden;
    background-color: #f8f9fa;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* vult het kader zonder vervorming */
}

.custom-control {
  font-size: 3rem;          /* grotere iconen */
  color: #e69ca5;           /* blush kleur */
  transition: color 0.3s;   /* smooth hover effect */
}

.custom-control:hover {
  color: #d17a86;           /* iets donkerdere blush tint bij hover */
}

.carousel-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #e69ca5; /* blush kleur */
  margin-bottom: 1rem;
}

/* Indicators blush kleur */
.carousel-indicators [data-bs-target] {
  background-color: #e69ca5; /* blush */
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.2s ease;
}

/* Hover effect */
.carousel-indicators [data-bs-target]:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Actieve indicator duidelijker */
.carousel-indicators .active {
  background-color: #d17b8d; /* iets donkerder blush */
  opacity: 1;
  width: 16px;
  height: 16px;
}

.modal-dialog {
  max-width: 90%;
  margin: auto;
}

.modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.modal-body {
  padding: 0;
  text-align: center;
}

#modalImage {
  max-width: 90%;
  max-height: 90vh;
  display: block;
  margin: auto;
}

/* Blush kleur voor de knoppen */
#imgModal .carousel-control-prev-icon,
#imgModal .carousel-control-next-icon {
  background-color: #f7c6c7; /* blush kleur */
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#imgModal .carousel-control-prev,
#imgModal .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}

/* Blush kleur voor sluitknop */
#imgModal .btn-close {
    filter: none; /* verwijder standaard invert voor white */
    background-color: #f7c6c7; /* blush kleur */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1100; /* hoger dan de afbeelding */
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Pas het kruisje zelf aan */
#imgModal .btn-close::before,
#imgModal .btn-close::after {
    background-color: white; /* kruisje blijft wit */
}

/* Hover effect: donkere blush */
#imgModal .btn-close:hover {
    background-color: #e69aa1; /* donkere blush */
}

#imgModal .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#imgModal .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.text-blush { color: #d88c9a; } /* zachte blush kleur */
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 0.5rem 1rem rgba(216, 140, 154, 0.25);
}

.text-blush {
  color: #d88c9a;
}

.btn-blush {
  background-color: #d88c9a;
  color: #fff;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-blush:hover {
  background-color: #b86f7e; /* donkerdere blush bij hover */
  color: #fff;
}

.blush-card {
  background-color: #fff;
  border-top: 4px solid #d88c9a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blush-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(216, 140, 154, 0.25);
}

.blush-photo {
    border: 4px solid #f9e1e7;
    /* subtiele rand in blush tint */
    max-width: 90%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blush-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 0.75rem 1.25rem rgba(216, 140, 154, 0.3);
}

@media (max-width: 768px) {
    .blush-card {
        text-align: center;
    }

    .blush-photo {
        max-width: 70%;
    }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.blush-card, .blush-photo {
  animation: fadeInUp 0.8s ease both;
}