/* ==============================
   FONTS & ROOT VARIABLES
================================ */

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('/assets/fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #B96D5F;
  --text-color: #7E6761;
  --bg-color: #e8dcd8;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
}

h1 {
  color: var(--text-color);
  font-size: 4rem;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Cormorant", serif;
}

h2 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-color);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

h3 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2rem);
  color: var(--text-color);
}

/* ========== BUTTONS ========== */

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0.3rem 2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: rgba(185, 109, 95, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(185, 109, 95, 0.2);
}

.btn-primary.large {
  padding: 1rem 2.5rem;
  font-weight: 500;
  font-size: 1.3rem;
}

.btn-service {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-service:hover {
  background: rgba(185, 109, 95, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(185, 109, 95, 0.2);
}

/* ========== UTILITY CLASSES ========== */

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

p {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* ========== HERO SECTION ========== */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 600px;
  padding: 0 2rem;
  background-color: var(--bg-color);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 12.5%;
  margin-bottom: auto;
}

.hero-logo {
  width: 500px;
  max-width: 90%;
  margin-bottom: 1.5rem;
}

.hero p {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* ========== SCROLL INDICATOR ========== */

.scroll-indicator,
.info-scroll-indicator {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator svg,
.info-scroll-indicator svg {
  width: 60px;
  height: 60px;
  fill: var(--primary-color);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ========== TABS ========== */

.hero-tabs,
.info-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  z-index: 2;
}

.tab-button,
.info-tab-button {
  background: var(--primary-color);
  color: white;
  border: 3px solid transparent;
  padding: 0.2rem 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
  border-radius: 5px;
  font-weight: 300;
}

.tab-button:hover,
.info-tab-button:hover {
  background: rgba(185, 109, 95, 0.7);
  transform: translateY(-2px);
}

.tab-button.active,
.info-tab-button.active {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
}

/* ========== CONTENT SECTIONS ========== */

.treatments-section,
.treatments-content,
.info-content {
  background-color: var(--bg-color);
  padding: 5rem 2rem;
}

.tab-panel,
.info-panel {
  display: none;
}

.tab-panel.active,
.info-panel.active {
  display: block;
}

/* ========== ROWS & LAYOUT ========== */

.treatment-row,
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.treatment-row.reverse,
.info-row.reverse {
  flex-direction: row-reverse;
}

.treatment-text,
.info-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.treatment-text.right,
.info-text.right {
  text-align: right;
}

.treatment-image,
.info-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.treatment-image img,
.info-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom-left-radius: 125px;
  border-top-right-radius: 125px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}

.info-image-mij {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  text-align: center;
}

.info-image-mij img {
  max-width: 100%;
  height: auto;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 200px;
}

/* ========== CARD LAYOUTS (col3 - 3 columns) ========== */

.section-title {
  text-align: center;
  color: var(--text-color);
  font-size: 3rem;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  font-weight: 900;
  font-family: "Cormorant", serif;
}

.row-col3 {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 1rem;
}

.col3 {
  flex: 1 1 30%;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto;
}

.col3 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  display: block;
}

.col3 h2,
.col3 h3 {
  color: var(--text-color);
  letter-spacing: 1px;
  margin: 0;
  font-weight: bold;
}

.col3 h2 {
  font-size: 1.5rem;
}

.col3 h3 {
  font-size: 1.3rem;
}

.col3 p {
  max-width: 275px;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.col3 a {
  margin-top: auto;
}

/* ========== SECTION-SPECIFIC ========== */

.all-treatments {
  text-align: center;
  background-color: var(--bg-color);
  padding: 3rem 2rem;
}

/* ========== CREDITS SECTION ========== */

.credits-section {
  text-align: center;
  padding: 2rem 1rem;
}

.credits-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.credits-link {
  display: inline-block;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .credits-section {
    display: none;
  }
}

.gelnagels-intro {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 1.5rem;
}

/* Gel Extras */
.gel-extras-section {
  margin-top: 3.5rem;
  padding-top: 2rem;
}

.gel-extras-section h3 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
}

.gel-extras-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}

.gel-extras-list {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gel-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(126, 103, 97, 0.1);
}

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

.gel-extra-name {
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
  font-family: 'Cormorant', serif;
}

.gel-extra-price {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
}

.gel-extras-image {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gel-extras-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  display: block;
}

/* ========== RESPONSIVE: TABLET (768px) ========== */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .scroll-indicator svg,
  .info-scroll-indicator svg {
    width: 40px;
    height: 40px;
  }

  .hero-tabs,
  .info-tabs {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .tab-button,
  .info-tab-button {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }

  .treatments-section,
  .treatments-content,
  .info-content {
    padding: 3rem 1.5rem;
  }

  .treatment-row,
  .treatment-row.reverse,
  .info-row,
  .info-row.reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3.5rem;
    gap: 2rem;
  }

  .treatment-text,
  .treatment-text.right,
  .info-text,
  .info-text.right {
    text-align: center;
    max-width: 100%;
  }

  .treatment-text h2,
  .info-text h2 {
    font-size: 1.75rem;
  }

  .treatment-text p,
  .info-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .treatment-image,
  .info-image {
    max-width: 100%;
    width: 100%;
  }

  .treatment-image img,
  .info-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .row-col3 {
    gap: 1.5rem;
  }

  .col3 {
    flex: 1 1 45%;
    max-width: none;
    margin-bottom: 1rem;
  }

  .col3 h2,
  .col3 h3 {
    font-size: 1.2rem;
  }

  .col3 p {
    font-size: 0.95rem;
  }

  .gel-extras-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .gel-extras-list {
    width: 100%;
  }

  .gel-extras-image {
    order: 2;
    width: 80%;
    max-width: 420px;
    flex: none;
  }

  .gel-extra-name {
    font-size: 1rem;
  }

  .hero {
    min-height: 500px;
    padding: 3rem 1.5rem 2rem;
  }

  .hero-logo {
    width: 280px;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}

/* ========== RESPONSIVE: MOBILE (480px) ========== */

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .hero {
    min-height: 400px;
    padding: 2.5rem 1rem 1.5rem;
  }

  .hero-logo {
    width: 240px;
  }

  .hero p {
    font-size: 1rem;
  }

  .scroll-indicator svg,
  .info-scroll-indicator svg {
    width: 35px;
    height: 35px;
  }

  .hero-tabs,
  .info-tabs {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .tab-button,
  .info-tab-button {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }

  .treatments-section,
  .treatments-content,
  .info-content {
    padding: 2rem 1rem;
  }

  .treatment-row,
  .info-row {
    margin-bottom: 2.5rem;
    gap: 1.5rem;
  }

  .treatment-text h2,
  .info-text h2 {
    font-size: 1.5rem;
  }

  .treatment-text p,
  .info-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .btn-primary,
  .btn-service {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  .row-col3 {
    gap: 1.5rem;
  }

  .col3 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .col3 h2,
  .col3 h3 {
    font-size: 1.1rem;
  }

  .col3 p {
    font-size: 0.9rem;
  }

  .gel-extras-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .gel-extras-image {
    width: 100%;
    max-width: 100%;
  }

  .gel-extra-name {
    font-size: 1rem;
  }

  .gel-extra-price {
    font-size: 0.85rem;
  }

  .all-treatments {
    padding: 2rem 1rem;
  }
}

/* ========== GALLERY SECTION ========== */

.gallery-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ========== CONTACT SECTIONS ========== */

.contact-content {
  padding: 3rem 0 6rem;
}

.contact-section {
  padding: 3rem 0;
  border-top: none;
}

.section-content {
  border-top: 4px solid var(--primary-color);
  padding-top: 1.25rem;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-section .info-image,
.contact-section .contact-image {
  flex: 0 0 320px;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.contact-section .info-image img,
.contact-section .contact-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .contact-section .info-image,
  .contact-section .contact-image {
    flex: 0 0 260px;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .contact-section .info-image,
  .contact-section .contact-image {
    flex: 0 0 220px;
    max-width: 220px;
  }
}

.contact-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.contact-label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-value {
  font-size: 1rem;
  color: var(--text-color);
}

.contact-value a {
  color: var(--text-color);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 600px;
  background: transparent; /* no white card */
  border: none; /* no border */
  padding: 0; /* no internal padding */
  box-shadow: none; /* no card */
}

/* ensure fields stack vertically */
.contact-form .form-row {
  display: none;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.25rem;
  border: none;
  border-bottom: 1px solid rgba(126, 103, 97, 0.12); /* subtle underline */
  background: transparent; /* transparent background for fields */
  border-radius: 0;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--primary-color);
}

.btn-primary.btn-small {
  padding: 0.45rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  display: inline-block;
  width: auto;
}


.opening-hours,
.vacation-periods {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.opening-hours li,
.vacation-periods li {
  padding: 0.35rem 0;
  font-size: 1rem;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .contact-content {
    padding: 2rem 0 4rem;
  }

  .info-row {
    flex-direction: column;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-item {
    gap: 0.75rem;
  }

  .section-content {
    border-top-width: 3px;
    padding-top: 0.75rem;
  }
}

.gallery-container {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  max-width: 1200px;   /* keeps your row at nice width */
  width: 100%;
  justify-content: center;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 calc(20% - 0.4rem);
  min-width: calc(20% - 0.4rem);
  height: 250px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== MUTUALITEIT GALLERY ========== */

.mutual-gallery {
  display: block;
  margin: 2.5rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.mutual-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

.mutual-item {
  overflow: hidden;
  flex: 0 0 calc(33.333% - 0.66rem);
  max-width: calc(33.333% - 0.66rem);
  height: 160px;
}

.mutual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .mutual-row {
    flex-wrap: wrap;
  }

  .mutual-item {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    height: 140px;
  }

  /* Last overall item should be full width */
  .mutual-row:last-child .mutual-item:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    height: 180px;
  }
}

/* Contact form image shape */

.contact-form-image {
  flex: 0 0 320px;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  overflow: hidden;
  transform: rotate(-2deg);
  border-radius: 28% 72% 72% 28% / 28% 28% 72% 72%;
}

.contact-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .contact-form-image {
    flex: 0 0 260px;
    max-width: 260px;
    transform: rotate(0);
    border-radius: 18% 82% 82% 18% / 18% 18% 82% 82%;
  }
}

/* ========== RESPONSIVE: MOBILE (480px) ========== */

@media (max-width: 480px) {
  .gallery-section {
    display: none;
  }
}

.samenspraak-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}