/* ===========================
   ABOUT US PAGE STYLES
   =========================== */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Variables */
  --deep-green: #014421;
  --soft-gold: #c9aa71;
  --off-white: #f9f9f9;
  --white: #ffffff;
  --dark-gray: #333333;
  --light-gray: #666666;
  --transition: all 0.3s ease;

  /* Typography Variables - Desktop */
  --font-header-xl: 4rem; /* Hero H1 */
  --font-header-lg: 2.5rem; /* Section H2 */
  --font-header-md: 1.8rem; /* H3, Card titles */
  --font-header-sm: 1.5rem; /* H4, Room titles */
  --font-subheader: 1.3rem; /* Hero subtitle, large paragraphs */
  --font-body-lg: 1.1rem; /* Body text, descriptions */
  --font-body-md: 1rem; /* Standard body text */
  --font-body-sm: 0.9rem; /* Small text, captions */
  --font-button: 1.1rem; /* Button text */
  --font-nav: 1rem; /* Navigation text */

  /* Line Heights */
  --line-height-tight: 1.1; /* Headers */
  --line-height-normal: 1.4; /* Subheaders */
  --line-height-relaxed: 1.6; /* Body text */
  --line-height-loose: 1.8; /* Long paragraphs */

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Unified background for overview and WYIM sections */
.overview-section,
.wyim-section {
  background-color: var(--off-white);
}

/* Modern Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--deep-green);
}

/* Hero Carousel Container */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero Slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image Container */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Parallax Effect on Active Slide */
.hero-slide.swiper-slide-active .hero-image {
  transform: scale(1.05);
}

/* Gradient Overlay */
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.0) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 2;
}

/* Modern Navigation */
.hero-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
  pointer-events: none;
}

.hero-nav-btn {
  width: 64px;
  height: 64px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.8;
  color: white;
  pointer-events: auto;
}

.hero-nav-btn:hover {
  background: rgba(201, 170, 113, 0.2);
  border-color: rgba(201, 170, 113, 0.4);
  transform: scale(1.1);
  opacity: 1;
}

.hero-nav-btn:active {
  transform: scale(0.95);
}

.hero-nav-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.hero-nav-btn:hover svg {
  transform: translateX(2px);
}

.hero-prev:hover svg {
  transform: translateX(-2px);
}

/* Modern Pagination Container */
.hero-pagination-container {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Custom Pagination Bullets */
.hero-pagination {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--soft-gold);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(201, 170, 113, 0.4);
}

.hero-pagination .swiper-pagination-bullet-active::before {
  border-color: rgba(201, 170, 113, 0.3);
}

/* Bottom Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Modern Counter */
.hero-counter {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
}

.counter-current {
  font-size: 18px;
  font-weight: 600;
  color: var(--soft-gold);
}

.counter-separator {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 12px;
}

.counter-total {
  font-size: 14px;
  opacity: 0.8;
}

/* Gallery Link - Glass Effect (matches other pages) */
.gallery-link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}

.gallery-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.gallery-link-btn:hover::before {
  left: 100%;
}

.gallery-link-btn:hover {
  background: rgba(201, 170, 113, 0.15);
  border-color: rgba(201, 170, 113, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(201, 170, 113, 0.2);
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.btn-text {
  transition: transform 0.3s ease;
}

.btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.gallery-link-btn:hover .btn-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.btn-icon svg,
.btn-arrow svg {
  width: 16px;
  height: 16px;
}

/* Essential Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* WYIM (With You In Mind) Section */
.wyim-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.wyim-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wyim-section .section-header h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.wyim-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wyim-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 6rem;
}

.wyim-item.reverse {
  direction: rtl;
}

.wyim-item.reverse .wyim-content {
  direction: ltr;
}

.wyim-content {
  padding: 2rem;
}

.wyim-icon {
  margin-bottom: 1.5rem;
}

.wyim-icon i {
  width: 48px;
  height: 48px;
  color: var(--soft-gold);
  background: rgba(201, 170, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.wyim-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.wyim-content p,
.wyim-description {
  font-size: var(--font-body-lg);
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.wyim-description p {
  margin-bottom: 1rem;
}

.wyim-description p:last-child {
  margin-bottom: 0;
}

.wyim-description-list {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.wyim-description-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: var(--font-body-lg);
  line-height: 1.6;
  color: var(--light-gray);
}

.wyim-description-list li::before {
  content: "•";
  color: var(--soft-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.wyim-description-list li .wyim-list-link {
  color: var(--soft-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
  font-weight: 500;
}

.wyim-description-list li .wyim-list-link:hover {
  color: var(--deep-green);
  text-decoration: underline;
}

.wyim-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--deep-green);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.wyim-action-btn:hover {
  background: #0a2e1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wyim-action-btn .action-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.wyim-action-btn:hover .action-arrow {
  transform: translateX(4px);
}

/* Wrapper for image and caption */
.wyim-image-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wyim-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wyim-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wyim-image:hover img {
  transform: scale(1.05);
}

/* Caption container - OUTSIDE the image */
.image-caption-container {
  margin-top: 1rem;
  padding: 0;
}

.image-caption {
  color: var(--light-gray);
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: italic;
}

/* Swiper styles for WYIM images */
.wyim-swiper {
  width: 100%;
  height: 100%;
}

.wyim-swiper .swiper-pagination {
  bottom: 15px;
}

.wyim-swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
}

.wyim-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--deep-green);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .wyim-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wyim-item.reverse {
    direction: ltr;
  }

  .wyim-section .section-header h2 {
    font-size: 2.5rem;
  }

  /* Ensure consistent aspect ratio on tablet */
  .wyim-image-wrapper {
    height: auto;
    order: -1;
  }
  
  .wyim-image {
    aspect-ratio: 16/9;
    height: auto;
  }
  
  .image-caption-container {
    margin-top: 0.85rem;
  }
  
  .image-caption {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .hero-navigation {
    padding: 0 20px;
  }

  .hero-nav-btn {
    width: 56px;
    height: 56px;
  }

  .hero-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .hero-pagination-container {
    bottom: 100px;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .hero-controls {
    bottom: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .hero-counter {
    padding: 10px 16px;
  }

  .counter-current {
    font-size: 16px;
  }

  .counter-total {
    font-size: 14px;
  }

  .gallery-link-btn {
    padding: 12px 20px;
    font-size: 12px;
    gap: 8px;
  }

  .btn-icon svg,
  .btn-arrow svg {
    width: 14px;
    height: 14px;
  }

  .wyim-section {
    padding: 4rem 0;
  }
  
  .wyim-section .section-header {
    margin-bottom: 3rem;
  }

  .wyim-section .section-header h2 {
    font-size: 2rem;
  }

  .wyim-item {
    order: -1;
    margin-bottom: 4rem;
  }

  .wyim-content h3 {
    font-size: 1.8rem;
  }

  /* Ensure consistent aspect ratio on mobile */
  .wyim-image-wrapper {
    height: auto;
    order: -1;
  }
  
  .wyim-image {
    aspect-ratio: 16/9;
    height: auto;
  }
  
  .image-caption-container {
    margin-top: 0.75rem;
  }
  
  .image-caption {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  /* Hero Section - Match Archive Offer Height */
  .hero {
    height: 45vh;
    min-height: 320px;
    margin-top: 60px;
    margin-bottom: 25px;
  }

  /* Hero Carousel */
  .hero-carousel {
    height: 100%;
  }

  /* Hero Slide */
  .hero-slide {
    height: 100%;
  }

  /* Hero Image Container - Full Cover on Mobile */
  .hero-image-container {
    background-color: var(--deep-green) !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 0;
  }

  /* Hero Image - Full Size */
  .hero-image {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1 !important;
  }

  /* Hero Gradient Overlay */
  .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  /* Hero Navigation Buttons - Smaller */
  .hero-navigation {
    padding: 0 15px;
  }

  .hero-nav-btn {
    width: 44px;
    height: 44px;
  }

  .hero-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Hero Pagination - Lower Position */
  .hero-pagination-container {
    bottom: 70px;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .hero-pagination .swiper-pagination-bullet::before {
    width: 16px;
    height: 16px;
  }

  /* Hero Controls - Smaller and Adjusted */
  .hero-controls {
    bottom: 20px;
    gap: 16px;
    animation: fadeInUp 0.8s ease 1.5s forwards;
  }

  /* Image Counter - Smaller */
  .hero-counter {
    padding: 8px 14px;
    border-radius: 25px;
  }

  .counter-current {
    font-size: 14px;
  }

  .counter-separator {
    width: 16px;
    margin: 0 8px;
  }

  .counter-total {
    font-size: 12px;
  }

  /* Gallery Link Button - Smaller */
  .gallery-link-btn {
    padding: 10px 16px;
    font-size: 11px;
    gap: 8px;
    border-radius: 40px;
  }

  .btn-icon svg,
  .btn-arrow svg {
    width: 13px;
    height: 13px;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  .wyim-section {
    padding: 3rem 2rem;
  }
  
  .wyim-section .section-header {
    margin-bottom: 2rem;
  }

  .wyim-section .section-header h2 {
    font-size: 1.8rem;
  }

  .wyim-item {
    margin-bottom: 3rem;
  }

  .wyim-content {
    padding: 0;
  }

  .wyim-content h3 {
    font-size: 1.5rem;
  }

  .wyim-zigzag {
    padding: 0;
  }
  
  .image-caption-container {
    margin-top: 0.5rem;
  }
  
  .image-caption {
    font-size: 0.75rem;
  }
}

/* ===========================
   ABOUT TABS SECTION
   =========================== */

.about-tabs-section {
  padding: 6rem 0;
  background: var(--off-white);
}

/* Overview Section inside Tab */
.overview-section-inner {
  padding: 0 0 4rem 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-section-inner h2 {
  font-size: 2.5rem;
  font-weight: var(--font-semibold);
  color: var(--deep-green);
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
  margin: 0;
  padding: 0 2rem;
}

/* Tab Navigation */
.about-tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.about-tab-btn {
  padding: 1rem 2.5rem;
  background: var(--white);
  border: 2px solid var(--soft-gold);
  color: var(--deep-green);
  font-size: var(--font-body-lg);
  font-weight: var(--font-medium);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
}

.about-tab-btn:hover {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(2px);
  box-shadow: 0 4px 15px rgba(201, 170, 113, 0.3);
}

.about-tab-btn.active {
  background: var(--soft-gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 170, 113, 0.4);
}

/* Tab Content */
.about-tabs-content {
  position: relative;
}

.about-tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.about-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Header for Tab Content */
.about-tab-content .section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-tab-content .section-header h2 {
  font-size: 3rem;
  font-weight: var(--font-semibold);
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-tab-content .section-header p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  line-height: 1.8;
}

/* ===========================
   PEOPLE CARDS GRID (Kempinski Style)
   =========================== */

.people-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.people-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.people-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.people-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--light-gray);
}

.people-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.people-card:hover .people-card-image img {
  transform: scale(1.1);
}

.people-card-info {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: var(--white);
}

.people-card-info h3 {
  font-size: var(--font-header-sm);
  font-weight: var(--font-semibold);
  color: var(--deep-green);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.people-card-info p {
  font-size: var(--font-body-md);
  color: var(--light-gray);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Tabs and Cards */
@media (max-width: 1024px) {
  .people-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .about-tab-content .section-header h2 {
    font-size: 2.5rem;
  }
  
  .overview-section-inner h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-tabs-section {
    padding: 4rem 0;
  }

  .about-tabs-navigation {
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .about-tab-btn {
    padding: 0.85rem 1.75rem;
    font-size: var(--font-body-md);
  }

  .people-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-tab-content .section-header {
    margin-bottom: 3rem;
  }

  .about-tab-content .section-header h2 {
    font-size: 2rem;
  }

  .about-tab-content .section-header p {
    font-size: var(--font-body-md);
  }

  .people-card-info h3 {
    font-size: var(--font-header-sm);
  }
  
  .overview-section-inner {
    padding: 0 0 3rem 0;
  }
  
  .overview-section-inner h2 {
    font-size: 1.8rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-tabs-section {
    padding: 3rem 0;
  }

  .about-tabs-navigation {
    gap: 0.75rem;
    padding: 1rem 1rem;
    flex-direction: row; 
    justify-content: flex-start;
    scrollbar-width: thin;
    scrollbar-color: var(--soft-gold) var(--light-gray);
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    overflow-y: hidden;
  }

  .about-tab-btn {
    padding: 0.75rem 1rem;
    font-size: var(--font-body-sm);
    min-width: 200px;
    text-align: center;
  }

  .people-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .about-tab-content .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .about-tab-content .section-header h2 {
    font-size: 1.75rem;
  }

  .people-card-info {
    padding: 1.25rem 1rem;
  }

  .people-card-info h3 {
    font-size: 1.25rem;
  }
  
  .overview-section-inner {
    padding: 0 0 2rem 0;
  }
  
  .overview-section-inner h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}

.wyim-clickable-image {
  cursor: pointer !important;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wyim-clickable-image:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

/* Lightbox Base */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 15000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

#lightbox-image {
  max-width: 100vw !important;
  max-height: 100vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.lightbox-media-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  max-height: 100vh;
  padding: 0;
  box-sizing: border-box;
}

.lightbox-media-container img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* Close Button */
.lightbox-close-x {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lightbox-close-x:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lightbox-close-x svg {
  width: 28px;
  height: 28px;
}

/* Caption Toggle Button */
.lightbox-caption-toggle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.lightbox-caption-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.lightbox-caption-toggle.active {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 1);
  color: #000;
}

.lightbox-caption-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.lightbox-caption-toggle.active svg {
  stroke: #000;
}

/* Lightbox Caption */
.lightbox-caption {
  position: absolute;
  top: 10px;
  left: 70px;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  z-index: 1001;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.lightbox-caption.hidden {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.lightbox-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: white;
  line-height: 1.4;
}

.lightbox-description {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.lightbox-title:empty,
.lightbox-description:empty {
  display: none;
}

/* Navigation Areas */
.lightbox-screen-click-area {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  z-index: 998;
  cursor: pointer;
  background: transparent;
  pointer-events: auto;
  display: flex;
  align-items: center;
}

.lightbox-screen-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 20px;
}

.lightbox-screen-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 20px;
}

.lightbox-screen-click-area::after {
  content: "";
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-screen-prev::after {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 25px solid rgba(255, 255, 255, 0.9);
}

.lightbox-screen-next::after {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 25px solid rgba(255, 255, 255, 0.9);
}

.lightbox-screen-click-area:hover::after {
  opacity: 1;
}

/* Mobile Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-close-x {
    width: 70px;
    height: 70px;
    top: 8px;
    right: 8px;
  }

  .lightbox-close-x svg {
    width: 36px;
    height: 36px;
  }

  .lightbox-caption-toggle {
    top: 10px;
    left: 10px;
    width: 44px;
    height: 44px;
  }

  .lightbox-caption-toggle svg {
    width: 22px;
    height: 22px;
  }

  .lightbox-caption {
    top: 65px;
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 1rem;
  }

  .lightbox-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .lightbox-description {
    font-size: 0.85rem;
  }

  .lightbox-screen-click-area {
    width: 30%;
  }

  .lightbox-screen-prev {
    padding-left: 15px;
  }

  .lightbox-screen-next {
    padding-right: 15px;
  }

  .lightbox-screen-prev::after {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid rgba(255, 255, 255, 0.9);
  }

  .lightbox-screen-next::after {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 480px) {
  .lightbox-close-x {
    width: 64px;
    height: 64px;
    top: 5px;
    right: 5px;
  }

  .lightbox-close-x svg {
    width: 32px;
    height: 32px;
  }

  .lightbox-caption-toggle {
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
  }

  .lightbox-caption-toggle svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-caption {
    top: 55px;
    left: 5px;
    right: 5px;
    padding: 0.875rem;
  }

  .lightbox-title {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .lightbox-description {
    font-size: 0.8rem;
  }

  .lightbox-screen-click-area {
    width: 25%;
  }

  .lightbox-screen-prev {
    padding-left: 10px;
  }

  .lightbox-screen-next {
    padding-right: 10px;
  }

  .lightbox-screen-prev::after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 18px solid rgba(255, 255, 255, 0.9);
  }

  .lightbox-screen-next::after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid rgba(255, 255, 255, 0.9);
  }

  .lightbox-screen-click-area:active::after {
    opacity: 1 !important;
  }
}
