/* NailsByMags – zachte, ronde, professionele pastel stijl – februari 2026 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdf9fa;
    color: #4e4e56;
    line-height: 1.65;
    overflow-x: hidden;
  }
  
  /* === HEADER & NAVIGATIE === */
  
  header {
    background: white;
    padding: 1.3rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f3e8ed;
  }
  
  nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  
  .logo-img {
    height: 58px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
  }
  
  .logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 2.4rem;
  }
  
  nav a {
    color: #5a4f55;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.07rem;
    padding: 0.5rem 0.9rem;
    border-radius: 12px;
    transition: all 0.28s ease;
  }
  
  nav a:hover,
  nav a.active {
    color: #c97ea8;
    background: rgba(201, 126, 168, 0.07);
    transform: translateY(-1px);
  }
  
  /* === MAIN & SECTIONS === */
  
  main {
    max-width: 1380px;
    margin: 0 auto;
    padding: 3rem 5% 4rem;
  }
  
  section {
    background: white;
    border-radius: 26px;
    padding: 3.5rem 4.2rem;
    margin-bottom: 3.2rem;
    box-shadow: 0 12px 42px rgba(0,0,0,0.055);
    transition: all 0.4s ease;
  }
  
  section:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 62px rgba(0,0,0,0.085);
  }
  
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.3rem;
    color: #b96c9b;
    text-align: center;
    margin-bottom: 1.4rem;
    letter-spacing: -0.5px;
  }
  
  h2 {
    font-family: 'Playfair Display', serif;
    color: #ae5f8f;
    font-size: 2.15rem;
    margin: 2.2rem 0 1.3rem;
  }
  
  /* === CTA KNOPPEN === */
  
  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e6bed5, #c97ea8);
    color: white;
    padding: 1rem 2.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.12rem;
    box-shadow: 0 8px 24px rgba(201, 126, 168, 0.28);
    transition: all 0.32s ease;
    cursor: pointer;
    border: none;
  }
  
  .cta-button:hover {
    transform: translateY(-4px) scale(1.035);
    box-shadow: 0 14px 38px rgba(201, 126, 168, 0.38);
    background: linear-gradient(135deg, #c97ea8, #b96c9b);
  }
  
  /* Donkere variant voor afspraak-knoppen */
  .cta-button.dark {
    background: linear-gradient(135deg, #4a1e38, #2d1b24);
    box-shadow: 0 10px 30px rgba(74, 30, 56, 0.45);
  }
  
  .cta-button.dark:hover {
    background: linear-gradient(135deg, #2d1b24, #4a1e38);
    box-shadow: 0 14px 40px rgba(74, 30, 56, 0.6);
    transform: translateY(-4px) scale(1.04);
  }
  
  /* === GALERIJ === */
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transition: all 0.38s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.065);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  }
  
  /* === CONTACTFORMULIER === */
  
  .contact-form {
    background: #fefcfd;
    padding: 2.8rem;
    border-radius: 22px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.06);
  }
  
  .form-group {
    margin-bottom: 2rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: #5c5157;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 1rem 1.3rem;
    border: 1.5px solid #f0e2e8;
    border-radius: 16px;
    font-size: 1.03rem;
    background: #fdf9fa;
    transition: all 0.26s ease;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: #c97ea8;
    box-shadow: 0 0 0 4px rgba(201,126,168,0.14);
    outline: none;
  }
  
  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23c97ea8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 14px;
  }
  
  /* === CONTACT OPTIES GRID === */
  
  .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.8rem;
  }
  
  .option-card {
    background: #fff8fb;
    padding: 2rem 1.6rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 7px 24px rgba(0,0,0,0.06);
    transition: all 0.34s ease;
  }
  
  .option-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 42px rgba(201,126,168,0.20);
  }
  
  .option-card h3 {
    color: #b96c9b;
    margin-bottom: 0.9rem;
  }
  
  .option-link {
    color: #c97ea8;
    font-weight: 600;
    text-decoration: none;
  }
  
  .option-link:hover {
    text-decoration: underline;
  }
  
  /* === FOOTER – twee regels, gecentreerd === */
  
  footer {
    text-align: center;
    padding: 3rem 1rem;
    color: #8c7a82;
    font-size: 0.96rem;
    border-top: 1px solid #f3e8ed;
    background: white;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* === AFSPRAKPAGINA STIJLING === */
  
  .appointment-hero {
    background: linear-gradient(135deg, #fff8fb 0%, #fefcfd 100%);
    padding: 6rem 5% 8rem;
    text-align: center;
  }
  
  .appointment-hero .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .appointment-hero h1 {
    margin-bottom: 1.2rem;
  }
  
  .appointment-hero .lead {
    font-size: 1.28rem;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    color: #6b5c64;
    line-height: 1.6;
  }
  
  .calendly-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.12);
    border: 1px solid #f0e2e8;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .after-booking {
    background: white;
    border-radius: 26px;
    padding: 4rem 5%;
    margin: -5rem auto 4rem;
    max-width: 900px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .after-booking h2 {
    margin-bottom: 1.6rem;
  }
  
  .after-booking p {
    font-size: 1.12rem;
    color: #6b5c64;
    margin-bottom: 2.8rem;
    line-height: 1.6;
  }
  
  .quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .quick-links .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
  
  /* === RESPONSIVE (NAVIGATIE + FOOTER + AFSPRAAK) === */
  
  @media (max-width: 820px) {
    nav {
      flex-direction: column;
      gap: 1.2rem;
      padding: 1rem 0;
    }
  
    .logo-img {
      height: 48px;
      margin-bottom: 0.8rem;
    }
  
    nav ul {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.2rem 1.8rem;
      width: 100%;
      margin-top: 0.5rem;
    }
  
    nav a {
      font-size: 1rem;
      padding: 0.6rem 1rem;
    }
  
    main {
      padding: 2rem 5%;
    }
  
    section {
      padding: 2.5rem 2rem;
      border-radius: 20px;
    }
  
    h1 {
      font-size: 2.6rem;
    }
  
    footer {
      padding: 2rem 1rem;
      min-height: auto;
      gap: 0.6rem;
    }
  
    .appointment-hero {
      padding: 4rem 5% 6rem;
    }
  
    .appointment-hero .lead {
      font-size: 1.15rem;
    }
  
    .calendly-card {
      border-radius: 20px;
    }
  
    .after-booking {
      margin: -3rem 5% 3rem;
      padding: 3rem 2rem;
    }
  
    .quick-links {
      flex-direction: column;
      gap: 1.2rem;
    }
  
    .quick-links .cta-button {
      width: 100%;
      max-width: 320px;
    }
  }
  
  @media (max-width: 480px) {
    nav ul {
      flex-direction: column;
      gap: 0.9rem;
    }
  
    nav a {
      width: 100%;
      text-align: center;
      padding: 0.8rem;
      font-size: 1.05rem;
    }
  
    .appointment-hero h1 {
      font-size: 2.4rem;
    }
  }
  
  /* Extra: voorkom horizontale scroll overal */
  html, body {
    overflow-x: hidden;
  }
  
  section, main {
    padding-left: 4%;
    padding-right: 4%;
  }
  
  /* Forceer normale header op mobiel – blokkeer zwevende badges/overlays */
  .rounded-full, .fixed, .z-50, .inset-0, .bg-opacity-50, [class*="overlay"], [class*="sidebar"], [class*="drawer"] {
    display: none !important;
  }
  
  nav, header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }
  
  nav ul {
    position: static !important;
    background: none !important;
    box-shadow: none !important;
  }
/* === OPVALLEND "BOEK AFSPRAAK" KNOP IN NAV === */

.nav-book-btn {
    background: linear-gradient(135deg, #c97ea8, #b96c9b);
    color: white !important;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(201, 126, 168, 0.35);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .nav-book-btn:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 24px rgba(201, 126, 168, 0.5);
    background: linear-gradient(135deg, #b96c9b, #c97ea8);
  }
  
  /* Zorg dat hij op mobiel ook mooi blijft */
  @media (max-width: 820px) {
    .nav-book-btn {
      padding: 0.8rem 1.4rem;
      font-size: 1rem;
      margin: 0.5rem 0;
    }
  
    nav ul {
      justify-content: center;
    }
  }
  /* === BEVESTIGINGSPAGINA NA BOEKING === */

.confirmation-hero {
    background: linear-gradient(135deg, #fff8fb 0%, #fefcfd 100%);
    padding: 6rem 5% 8rem;
    text-align: center;
  }
  
  .confirmation-hero .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .confirmation-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #c97ea8;
  }
  
  .confirmation-hero h1 {
    margin-bottom: 1.2rem;
  }
  
  .confirmation-hero .lead {
    font-size: 1.32rem;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    color: #6b5c64;
    line-height: 1.6;
  }
  
  .confirmation-details {
    background: white;
    border-radius: 26px;
    padding: 2.5rem;
    margin: 0 auto 3rem;
    max-width: 700px;
    box-shadow: 0 12px 42px rgba(0,0,0,0.06);
    text-align: left;
  }
  
  .confirmation-details h3 {
    margin-bottom: 1.2rem;
    color: #b96c9b;
  }
  
  .confirmation-details ul {
    list-style: none;
    padding: 0;
  }
  
  .confirmation-details li {
    margin: 1rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
    color: #6b5c64;
  }
  
  .confirmation-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c97ea8;
    font-weight: bold;
  }
  
  .confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .confirmation-actions .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
  
  /* Mobiel optimalisatie */
  @media (max-width: 820px) {
    .confirmation-hero {
      padding: 4rem 5% 6rem;
    }
  
    .confirmation-icon {
      font-size: 4rem;
    }
  
    .confirmation-hero .lead {
      font-size: 1.18rem;
    }
  
    .confirmation-details {
      padding: 2rem;
    }
  
    .confirmation-actions {
      flex-direction: column;
      gap: 1rem;
    }
  
    .confirmation-actions .cta-button {
      width: 100%;
      max-width: 320px;
    }
  }
  
  @media (max-width: 480px) {
    .confirmation-hero h1 {
      font-size: 2.6rem;
    }
  }
  .confirmation-hero {
    background: linear-gradient(135deg, #fff8fb 0%, #fefcfd 100%);
    padding: 6rem 5% 8rem;
    text-align: center;
  }
  
  .confirmation-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #c97ea8;
  }
  
  .confirmation-details {
    background: white;
    border-radius: 26px;
    padding: 2.5rem;
    margin: 0 auto 3rem;
    max-width: 700px;
    box-shadow: 0 12px 42px rgba(0,0,0,0.06);
    text-align: left;
  }
  
  .confirmation-details h3 {
    margin-bottom: 1.2rem;
    color: #b96c9b;
  }
  
  .confirmation-details p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  .confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }