:root {
  --blue-fjord: #3a5d77;
  --main-red: #c62828;
  --gold-warm: #e0b36d;
  --off-white: #f5f5f5;
  --deep-navy: #121b25;
  --shadow: rgba(0, 0, 0, 0.4);
}

body {
  background: linear-gradient(to bottom, #4b6b88 0%, var(--blue-fjord) 40%, #1a1a1a 100%);
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--off-white);
  line-height: 1.6;
}

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

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

.site-header {
  background: linear-gradient(
    to right,
    rgba(58, 93,119, 0.85) 0%,
    rgba(18, 27, 37, 0.85) 50%,
    rgba(58, 93, 119, 0.85) 100%
  );
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(58, 93, 119, 0.85) 0%,
    rgba(58, 93, 119, 0) 100%
  );
  z-index: -1;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.reeks {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 4.0em;
  letter-spacing: 2px;
  color: white;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.7),
    -1px -1px 0 var(--gold-warm),
    1px 1px 0 var(--gold-warm);
}

.barbershop {
  font-family: 'Great Vibes', cursive;
  font-size: 1.9em;
  color: var(--gold-warm);
  position: relative;
  bottom: 8px;
  text-transform: none;
  letter-spacing: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    #ffffff 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.8s linear infinite;
}

.nav-links a {
  margin-left: 20px;
  color: var(--off-white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold-warm);
  text-shadow: 0 0 10px var(--gold-warm);
}

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%);
  width: 100%;
  height: 100%;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: top center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(58, 93, 119, 0.40) 0%,
    transparent 20%,
    transparent 70%,
    rgba(58, 93, 119, 0.40) 100%
  );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent 40%, rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8em;
  font-weight: bold;
  color: var(--off-white);
  margin-bottom: 9px;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.7),
    -1px -1px 0 var(--gold-warm),
    1px -1px 0 var(--gold-warm),
    -1px 1px 0 var(--gold-warm),
    1px 1px 0 var(--gold-warm);
}

.btn {
  padding: 12px 28px;
  background-color: var(--main-red);
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: #b71c1c;
  color: #fff;
  transform: scale(1.05);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: var(--main-red);
  margin: 10px auto 40px auto;
  border-radius: 2px;
}

.services,
.booking,
.contact {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  margin: 30px auto;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-styled {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.input-row input,
.input-row select {
  flex: 1;
  min-width: 220px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #111;
  border: none;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form input,
form select,
form textarea {
  padding: 12px;
  font-size: 1em;
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #f4f4f4;
  color: #111;
}

form button {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  font-size: 1em;
  padding: 10px 20px;
  background-color: var(--main-red);
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
  background-color: #b71c1c;
  color: #000;
  transform: scale(1.05);
}

form textarea {
  background-color: rgba(255, 255, 255, 0.9);
  color: #111;
  border-radius: 6px;
  border: none;
  padding: 12px;
  min-height: 80px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: var(--deep-navy);
  color: #888;
  margin-top: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.enhanced-service-card {
  background-color: rgba(25, 38, 51, 0.9);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.service-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--main-red);
  position: relative;
  padding-left: 12px;
}

.service-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--main-red);
  border-radius: 2px;
}

.service-title,
.service-title::before,
.contact strong {
  color: white !important;
  background: none;
}

.contact {
  background-color: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 40px 25px;
  margin: 30px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: var(--off-white);
}

.contact h2 {
  color: var(--off-white);
}

.contact p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.social-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

.social-row {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-row a { display: inline-flex; }

.social-img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  filter: drop-shadow(0 0 4px rgba(0,0,0.5));
  transition: transform 0.2s ease, filter 0.3s ease;
}

@keyframes shimmer {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}

@media (max-width: 768px) {
  /* header & Nav adjustments */
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
  }

  .nav-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    margin: 5px 10px;
    font-size: 1em;
  }

  .logo {
    flex-direction: column;
    gap: 4px;
  }

  .reeks {
    font-size: 2.3em;
  }

  .barbershop {
    font-size: 1.2em;
  }

  /* Hero section */
  .hero-content h1 { font-size: 2em; }

  .btn {
    font-size: 1em;
    padding: 10px 20px;
  }

  /* Hero image scaling */
  .hero {
    background-position: center;
    background-size: cover;
    min-height: 300px;
  }

  /* Booking form adjustments */
  .booking-form {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 1em;
    padding: 10px;
  }


  /* Footer */
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .site-header {
    background: linear-gradient(
      to right,
      rgba(58, 93, 119, 0.40) 0%,
      rgba(58, 93, 119, 0.40) 100%
    );
  }

  .site-header::after {
    background: linear-gradient(
      to bottom,
      rgba(58, 93, 119, 0.40) 0%,
      rgba(58, 93, 119, 0) 100%
    );
  }

  .about { padding: 26px 18px; }
  .about-content { font-size: 1rem; }
}


section.about {
  position: relative;
  background: linear-gradient(145deg, rgba(25,38,51,0.92), rgba(18,27,37,0.95));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
  padding: 36px 28px;
  margin: 40px auto;
  max-width: 1000px;
  overflow: visible;
  z-index: 1;
}


.about .section-title {
text-align: center;
font-family: 'Great Vibes', cursive;
color: var(--off-white);
font-size: clamp(2.8rem, 3.6vw + 1rem, 4rem);
line-height: 1.1;
font-weight: 400;
letter-spacing: 0.2px;
margin-bottom: 18px;
text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.about .section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 10px auto 0;
  background: var(--main-red);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(198,40,40,0.45);
}


.about-content {
  position: relative;
  z-index: 2; /* above halos */
  font-size: 1.15rem;
  line-height: 1.85;
  letter-spacing: .2px;
  color: var(--off-white);
}
.about-content p { margin-bottom: 0; }

section.about::before,
section.about::after {
  content: none !important;
}
section.about::before {
  top: -90px; right: -90px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(224,179,109,0.9) 0%, rgba(224,179,109,0) 75%);
}
section.about::after {
  bottom: -90px; left: -90px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(198,40,40,0.85) 0%, rgba(198,40,40,0) 75%);
}

footer .clover {
  color: var(--gold-warm);
  margin-left: 0.35em;
  font-size: 1.1em;
  vertical-align: middle;
}

footer p {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.2rem, 1.0rem + 0.6vw, 1rem);
  line-height: 1.1;
  letter-spacing: 0.3px;
}

footer .clover { font-size: 1.1em; }

.soundcloud-wrap{}
.soundcloud-player{}
.soundcloud-wrap{margin:12px 0;}
.soundcloud-player{display:block;width:100%;height:86px;border:0;border-radius:8px;}
