/* HAR TRAVELS — main.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* === COLORES ABERCROMBIE & KENT (extraidos del sitio) === */

  /* Backgrounds */
  --color-bg: #f5f2eb;
  /* linen */
  --color-bg-2: #faf9f8;
  /* lighter-grey */
  --color-bg-3: #f4f1ec;
  /* ak-shade */
  --color-bg-4: #e4e1dc;
  /* light-grey */
  --color-surface: #ffffff;
  --color-surface-2: #f5f5f5;
  /* ak-shade2 */

  /* Dark — Replaced pure blacks with warm deep tones for premium A&K feel */
  --color-dark: #121212;
  /* primaryDark — warmed and softened */
  --color-dark-surface: #1e1e1e;
  /* Softer dark surface */
  --color-dark-border: rgba(255, 255, 255, 0.05);

  /* Borders */
  --color-border: rgba(0, 0, 0, 0.15);
  /* cta-border-color */
  --color-border-2: #ced4da;
  /* borderColor */

  /* Primary — A&K Orange */
  --color-primary: #f28a21;
  /* ak-orange / primaryColor */
  --color-primary-light: #f9c47e;
  /* lighter orange */
  --color-primary-dark: #c97018;
  /* darker orange */

  /* Accent colors */
  --color-warm-sand: #c3aa84;
  /* warm-sand */
  --color-canvas: #e6dbc1;
  /* canvas */
  --color-soft-blue: #c1cce6;
  /* soft-blue */
  --color-forest: #335525;
  /* forest */
  --color-blue: #0b3868;
  /* ak-blue */
  --color-cerulean: #94a9cb;
  /* cerulean */
  --color-amber: #e0a526;
  /* amber */

  /* Text */
  --color-text: #1c1b1f;
  /* iconDarkColor */
  --color-text-muted: #5a5a5a;
  /* textSecondary */
  --color-text-dim: #939598;
  /* ak-lightGrey2 */
  --color-text-on-dark: #ffffff;
  /* primaryLight */

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Utilities */
  --radius-sm: 0px;
  --radius-md: 2px;
  --radius-lg: 4px;
  --radius-xl: 8px;
  --radius-full: 9999px;

  --shadow-base: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 0 0 transparent;

  --transition-base: .3s ease;
  --transition-smooth: .5s cubic-bezier(0.2, 0, 0, 1);

  --max-width: 1400px;
  --nav-height: 90px;
}

/* Vibrant Har Theme — Cliente Alternative */
/* Removed Vibrant theme as per new design guidelines */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

a {
  color: inherit;
  text-decoration: none
}

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.section {
  padding: 6rem 0
}

.section-sm {
  padding: 4rem 0
}

.section-lg {
  padding: 8rem 0
}

.text-primary {
  color: var(--color-primary)
}

.text-muted {
  color: var(--color-text-muted)
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-center {
  text-align: center
}

.italic {
  font-style: italic
}

.uppercase {
  text-transform: uppercase
}

.tracking-wide {
  letter-spacing: .1em
}

.tracking-widest {
  letter-spacing: .2em
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--color-text)
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden
}

/* btn-gold uses A&K orange */
.btn-gold {
  background: var(--color-primary);
  color: #fff
}

.btn-gold:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 138, 33, 0.35)
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary)
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px)
}

.btn-wa {
  background: var(--color-primary);
  color: #fff
}

.btn-wa:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 138, 33, 0.35)
}

.btn-lg {
  font-size: .9rem;
  padding: 1.1rem 2.5rem
}

/* Cards */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative
}

.card:hover {
  border-color: var(--color-border-2);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  transform: translateY(-6px)
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s ease
}

.card:hover .card-img {
  transform: scale(1.06)
}

.card-body {
  padding: 1.5rem
}

.card-glass {
  background: rgba(20, 20, 20, .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg)
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

/* Strong top gradient so the navbar is always readable over hero images */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .30) 35%, rgba(0, 0, 0, .55) 80%, rgba(0, 0, 0, .85) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1rem 0
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-2), transparent)
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-2), transparent)
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color var(--transition-base);
  padding: .75rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  user-select: none
}

.marquee-item:hover {
  color: var(--color-primary);
  border-color: var(--color-primary)
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* Pillar */
.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition-smooth)
}

.pillar-card:hover .pillar-icon {
  background: var(--color-primary);
  color: #fff
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.badge-gold {
  background: var(--color-primary);
  color: #fff
}

.badge-green {
  background: #f28a21;
  color: #fff
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: var(--color-bg)
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-2);
  border-radius: var(--radius-full)
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light)
}

::selection {
  background: var(--color-primary-light);
  color: #fff
}

@media(max-width:768px) {
  .container {
    padding: 0 1rem
  }

  .section {
    padding: 4rem 0
  }

  .section-lg {
    padding: 5rem 0
  }
}

/* =========================================
   NAVBAR SLOGAN (acts as tagline under logo)
   ========================================= */
.navbar-logo .navbar-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: none;
  line-height: 1.3;
  transition: color .4s ease;
  margin-top: 2px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.navbar:not(.scrolled) .navbar-logo .navbar-slogan {
  color: rgba(255, 255, 255, 0.55)
}

.navbar.scrolled .navbar-logo .navbar-slogan {
  color: var(--color-text-muted)
}

/* Hide theme toggle globally */
.theme-toggle {
  display: none !important
}

/* Dark section utility — Warm deep tones (not pure black) */
.section-dark {
  background: var(--color-dark);
  color: var(--color-text-on-dark)
}

.section-dark .section-title {
  color: #f5f2eb;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4)
}

.section-dark .section-subtitle {
  color: rgba(245, 242, 235, 0.6)
}

.section-dark .section-label {
  color: var(--color-primary-light)
}

/* Improved card styles for dark sections */
.section-dark .card,
.section-dark .facilitator-card,
.section-dark .benefit-card,
.section-dark .upcoming-card,
.section-dark .value-card {
  background: var(--color-dark-surface);
  border-color: var(--color-dark-border);
  color: var(--color-text-on-dark);
}

.section-dark .card-body h3,
.section-dark .facilitator-name,
.section-dark .benefit-title,
.section-dark .upcoming-title,
.section-dark .value-title {
  color: #f0ebe0;
}

.section-dark .card-body p,
.section-dark .facilitator-desc,
.section-dark .benefit-desc,
.section-dark .upcoming-desc,
.section-dark .value-desc {
  color: rgba(240, 235, 224, 0.6);
}

/* Card Variants */
.audience-card.card-canvas {
  background: var(--color-canvas);
  color: var(--color-text);
  border: none
}

.audience-card.card-canvas .audience-title {
  color: var(--color-dark)
}

.audience-card.card-canvas .audience-desc {
  color: rgba(0, 0, 0, 0.65)
}

.audience-card.card-canvas .audience-icon {
  color: var(--color-dark)
}

.audience-card.card-canvas .pillar-link {
  color: var(--color-dark)
}

.audience-card.card-blue {
  background: var(--color-soft-blue);
  color: var(--color-text);
  border: none
}

.audience-card.card-blue .audience-title {
  color: var(--color-dark)
}

.audience-card.card-blue .audience-desc {
  color: rgba(0, 0, 0, 0.65)
}

.audience-card.card-blue .audience-icon {
  color: var(--color-dark)
}

.audience-card.card-blue .pillar-link {
  color: var(--color-dark)
}

.text-gold {
  color: var(--color-primary)
}

.text-shimmer {
  color: var(--color-primary);
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center
  }
}