/* =========================================================
   KING'S CAVE ABOUT PAGE
   Diseño basado en Figma / PDF Nosotros
========================================================= */

/* =========================
   RESET / FULL WIDTH
========================= */

body:has(.kc-about) {
  background: #0b0b0b !important;
}

body:has(.kc-about) main,
body:has(.kc-about) .main,
body:has(.kc-about) .public-main,
body:has(.kc-about) .content,
body:has(.kc-about) .page-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #0b0b0b !important;
}

.kc-about {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0b0b0b;
  color: #f6efe1;
  overflow-x: hidden;
}

.kc-about *,
.kc-about *::before,
.kc-about *::after {
  box-sizing: border-box;
}

.kc-about .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HEADER FIX ABOUT
========================= */








body:has(.kc-about) header a[href*="login"],
body:has(.kc-about) header a[href*="register"],
body:has(.kc-about) header a[href*="booking"],
body:has(.kc-about) header a[href*="reserva"],
body:has(.kc-about) .navbar a[href*="login"],
body:has(.kc-about) .navbar a[href*="register"],
body:has(.kc-about) .navbar a[href*="booking"],
body:has(.kc-about) .navbar a[href*="reserva"],
body:has(.kc-about) .public-header a[href*="login"],
body:has(.kc-about) .public-header a[href*="register"],
body:has(.kc-about) .public-header a[href*="booking"],
body:has(.kc-about) .public-header a[href*="reserva"] {
  background: linear-gradient(135deg, #d8b76a, #c69a45) !important;
  color: #111 !important;
  padding: 14px 28px !important;
  border-radius: 0 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

/* =========================
   GENERAL TYPOGRAPHY
========================= */

.kc-about h1,
.kc-about h2,
.kc-about h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.kc-eyebrow,
.kc-section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #d4a953;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

.kc-eyebrow::before,
.kc-eyebrow::after,
.kc-section-tag::before,
.kc-section-tag::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(212, 169, 83, 0.72);
}

/* =========================
   HERO
   Fondo: static/img/fondo.jpg
========================= */

.kc-about-hero {
  position: relative;
  min-height: 400px;
  padding: 120px 20px 70px;
  background-image: url("../img/fondo_nosotros.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kc-about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.48) 45%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.62) 100%
    );
  z-index: 1;
}

.kc-about-hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  margin: 0 auto;
  text-align: center;
}

.kc-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  width: 398px;
  max-width: 100%;
  height: 18px;

  margin: 0 auto 22px;

  color: #C6A15B;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;

  white-space: nowrap;
}

.kc-eyebrow::before,
.kc-eyebrow::after {
  content: "";
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: #C6A15B;
  opacity: 0.75;
}

.kc-about-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -1.2px;
}

.kc-about-hero-line {
  width: 110px;
  height: 1px;
  margin: 22px auto 20px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 161, 91, 0.95),
    transparent
  );
}

.kc-about-hero p {
  width: 576px !important;
  max-width: 100% !important;
  margin: 22px auto 0 !important;

  color: #FFFFFF !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  text-align: center !important;

  text-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .kc-about-hero {
    min-height: 520px;
    padding: 150px 18px 70px;
    background-position: center center;
  }

  .kc-eyebrow {
    font-size: 10px;
    letter-spacing: 2.4px;
    gap: 10px;
  }

  .kc-eyebrow::before,
  .kc-eyebrow::after {
    width: 28px;
  }

  .kc-about-hero h1 {
  margin: 0;
  color: #ffffff;

  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
  text-align: center;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

  .kc-about-hero p {
    font-size: 13px;
  }
}
/* =========================
   EL CLUB
   Fondo: static/img/fondo.jpg
   Imagen: static/img/sillabarbero.png
========================= */

.kc-about-section,
.kc-club-section {
  position: relative;
  padding: 96px 0 88px;
  background:
    linear-gradient(
      180deg,
      rgba(7, 7, 7, 0.84) 0%,
      rgba(7, 7, 7, 0.80) 45%,
      rgba(7, 7, 7, 0.88) 100%
    ),
    url("../img/fondo.jpg") center center / cover repeat;
  overflow: hidden;
}

.kc-club-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(212,169,83,.10), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.22), transparent 45%, rgba(0,0,0,.20));
  pointer-events: none;
  z-index: 1;
}

.kc-about-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 78px;
  align-items: center;
}

.kc-about-copy {
  max-width: 560px;
}

.kc-about-copy .kc-section-tag {
  justify-content: flex-start;
}

.kc-about-copy h2 {
  color: #f7efe1;
  font-size: clamp(2.5rem, 3.4vw, 3.9rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 30px;
}

.kc-about-copy p {
  color: #FFFFFF !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  text-align: left !important;

  margin: 0 0 28px !important;
  text-shadow: none !important;
}

.kc-club-image-wrap {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(212, 169, 83, 0.18);
  overflow: hidden;
  background: #070707;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.kc-club-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* =========================
   THE KING'S EXPERIENCE
   Fondo: static/img/fondo.jpg
   Iconos: Privacidad.png, Precisión.png, Bienestar.png
========================= */

.kc-experience-section {
  position: relative;
  padding: 74px 0 72px;
  background:
    linear-gradient(
      180deg,
      rgba(7, 7, 7, 0.90) 0%,
      rgba(7, 7, 7, 0.86) 46%,
      rgba(7, 7, 7, 0.92) 100%
    ),
    url("../img/fondo.jpg") center center / cover repeat;
  overflow: hidden;
}

.kc-experience-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 10%, rgba(212,169,83,.06), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.22));
  pointer-events: none;
}

.kc-experience-inner {
  position: relative;
  z-index: 2;
}

.kc-section-head {
  max-width: 820px;
  margin: 0 auto 44px;
}

.kc-section-head-center {
  text-align: center;
}

.kc-section-head-center .kc-section-tag {
  margin-bottom: 18px;
}

.kc-section-head h2 {
  color: #f7efe1;
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.kc-experience-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.kc-experience-card {
  min-height: 225px;
  padding: 28px 24px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255,255,255,.045);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
}

.kc-experience-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kc-experience-icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(212, 169, 83, 0.18));
}

.kc-experience-card h3 {
  color: #d4a953;
  font-size: 1.52rem;
  font-weight: 500;
  margin: 0 0 12px;
  text-transform: none;
}

.kc-experience-card p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.92rem;
  line-height: 1.48;
  margin: 0 auto;
  max-width: 220px;
}

/* =========================
   KING'S POWER BANNER ABOUT
   Igual al diseño: texto izquierda, perro derecha
   Imágenes:
   - static/img/fachada.jpeg
   - static/img/dog-king.png
========================= */

.kc-power-banner {
  position: relative;
  width: 100%;
  height: 390px;
  min-height: 390px;
  background: #070707;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(212,169,83,.06);
  border-bottom: 1px solid rgba(212,169,83,.08);
}

.kc-power-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../img/fachada.jpeg");
  background-size: cover;
  background-position: center 46%;
  background-repeat: no-repeat;
  filter: grayscale(1);
  opacity: 0.34;
}

.kc-power-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 68% 48%, rgba(212,169,83,.14), transparent 18%),
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.66) 38%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.72) 100%);
}

.kc-power-banner__inner {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  height: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.52fr 0.48fr;
  align-items: center;
}

.kc-power-banner__text {
  position: relative;
  z-index: 5;
  align-self: center;
  transform: translateY(10px);
}

.kc-power-banner__text h2 {
  color: rgba(247,239,225,.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 4.05vw, 4.8rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -0.055em;
  margin: 0;
}

.kc-power-banner__text h2 strong {
  display: inline-block;
  color: #f7efe1;
  font-weight: 700;
}

.kc-power-banner__dog {
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: -2px;
  width: 410px;
  height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.kc-power-banner__dog img {
  display: block;
  width: 410px;
  height: auto;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,.72));
}

/* =========================
   CTA FINAL
   Imagen: static/img/whisky.png
========================= */

.kc-final-cta-section {
  width: 100%;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #111;
  border-top: 1px solid rgba(212,169,83,.08);
  border-bottom: 1px solid rgba(212,169,83,.08);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.kc-final-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #050505;
}

.kc-final-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.06) 55%,
      rgba(0,0,0,.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.34) 100%
    );
  pointer-events: none;
  z-index: 2;
}

.kc-final-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.kc-final-content {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 78px;
  background:
    linear-gradient(
      90deg,
      rgba(12,12,12,.96) 0%,
      rgba(16,16,16,.94) 100%
    ),
    url("../img/fondo.jpg") center center / cover repeat;
  position: relative;
}

.kc-final-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(212,169,83,.08), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.34));
  pointer-events: none;
}

.kc-final-content > * {
  position: relative;
  z-index: 2;
}

.kc-final-content .kc-section-tag {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.kc-final-content h2 {
  color: #f7efe1;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  max-width: 520px;
}

.kc-final-content p {
  color: #FFFFFF !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  text-align: left !important;

  max-width: 720px;
  margin: 0 0 32px !important;
  text-shadow: none !important;
}

.kc-gold-button {
  width: fit-content;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  background: linear-gradient(135deg, #d8b76a, #c69a45);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.16);
  transition: 0.25s ease;
}

.kc-gold-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e0c27a, #cca04d);
}
/* =========================
   FOOTER ABOUT
========================= */

.kc-about-footer-cta {
  padding: 44px 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.90) 0%,
      rgba(8, 8, 8, 0.94) 100%
    ),
    url("../img/fondo.jpg") center center / cover repeat;
  border-top: 1px solid rgba(212,169,83,.10);
}

.kc-about-footer-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.kc-footer-brand img {
  width: 115px;
  height: auto;
  display: block;
}

.kc-footer-contact h3,
.kc-footer-schedule h3 {
  color: #d4a953;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

.kc-footer-contact p,
.kc-footer-schedule p {
  color: rgba(255,255,255,.72);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 8px;
}

.kc-footer-action {
  display: flex;
  justify-content: flex-end;
}

.kc-footer-button {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid #d4a953;
  color: #f7efe1;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.kc-footer-button:hover {
  background: #d4a953;
  color: #111;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .kc-about-intro {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .kc-about-copy {
    max-width: 100%;
  }

  .kc-club-image-wrap,
  .kc-club-image {
    min-height: 390px;
  }

  .kc-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kc-final-cta-section {
  grid-template-columns: 1fr;
}

.kc-final-image,
.kc-final-image img {
  min-height: 300px;
}

.kc-final-content {
  min-height: auto;
  padding: 56px 36px;
}

  .kc-about-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .kc-footer-action {
    justify-content: flex-start;
  }
}

@media (max-width: 1000px) {
  .kc-power-banner {
    height: 420px;
    min-height: 420px;
  }

  .kc-power-banner__inner {
    height: 420px;
    grid-template-columns: 1fr;
  }

  .kc-power-banner__text {
    transform: none;
    align-self: center;
    padding-left: 10px;
  }

  .kc-power-banner__text h2 {
    font-size: clamp(2.8rem, 9vw, 4.3rem);
  }

  .kc-power-banner__dog {
    right: -42px;
    bottom: 0;
    width: 340px;
    height: 390px;
  }

  .kc-power-banner__dog img {
    width: 340px;
    max-height: 390px;
  }
}

@media (max-width: 768px) {
  .kc-about {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .kc-about .container {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

 

  .kc-about-hero {
    height: 500px;
    min-height: 500px;
    background-position: center center;
  }

  .kc-about-hero-inner {
    padding: 0 20px;
  }

  .kc-about-hero .kc-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    gap: 9px;
  }

  .kc-eyebrow::before,
  .kc-eyebrow::after,
  .kc-section-tag::before,
  .kc-section-tag::after {
    width: 28px;
  }

  .kc-about-hero h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
    line-height: 1;
  }

  .kc-about-hero p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .kc-about-section,
  .kc-club-section {
    padding: 72px 0;
  }

  .kc-about-copy h2 {
    font-size: clamp(2.65rem, 10vw, 3.7rem);
    line-height: 1.04;
  }

  .kc-about-copy p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .kc-club-image-wrap,
  .kc-club-image {
    min-height: 310px;
  }

  .kc-experience-section {
    padding: 64px 0 72px;
  }

  .kc-experience-grid {
    grid-template-columns: 1fr;
  }

  .kc-experience-card {
    min-height: auto;
  }

  .kc-final-image,
.kc-final-image img {
  min-height: 250px;
}

.kc-final-content {
  padding: 54px 24px;
}


.kc-final-content h2 {
  font-size: clamp(2.2rem, 9vw, 3.3rem);
}

  .kc-final-content h2 {
    font-size: clamp(2.2rem, 9vw, 3.3rem);
  }

  .kc-gold-button {
    width: 100%;
    max-width: 260px;
  }

  .kc-about-footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .kc-footer-action {
    justify-content: flex-start;
  }

  .kc-footer-button {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 620px) {
  .kc-power-banner {
    height: 430px;
    min-height: 430px;
  }

  .kc-power-banner__inner {
    width: min(100%, calc(100% - 34px));
    height: 430px;
  }

  .kc-power-banner__text {
    align-self: start;
    padding-top: 64px;
    padding-left: 0;
  }

  .kc-power-banner__text h2 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .kc-power-banner__dog {
    right: -74px;
    bottom: 0;
    width: 292px;
    height: 300px;
  }

  .kc-power-banner__dog img {
    width: 292px;
    max-height: 300px;
  }
}

@media (max-width: 420px) {
  .kc-about .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .kc-about-hero {
    height: 460px;
    min-height: 460px;
  }

  .kc-about-hero h1 {
    font-size: 2.55rem;
  }

  .kc-about-hero .kc-eyebrow,
  .kc-section-tag {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .kc-about-copy h2 {
    font-size: 2.55rem;
  }

  .kc-club-image-wrap,
  .kc-club-image {
    min-height: 260px;
  }
}