/* ═══════════════════════════════════════════════════════════════
   RADISH WEBSITE - Custom Styles
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   Base & Utilities
   ─────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

/* ───────────────────────────────────────────────────────────────
   Hero Section
   ─────────────────────────────────────────────────────────────── */
.hero-gradient {
  background: linear-gradient(135deg, #FDF8F3 0%, #F5EDE4 50%, #EDE5DA 100%);
}

#heroImage {
  transition: opacity 0.15s ease;
}

/* ───────────────────────────────────────────────────────────────
   Buttons
   ─────────────────────────────────────────────────────────────── */
.btn-primary {
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 75, 75, 0.25);
}

.btn-secondary:hover {
  background: #2D2A26;
  color: #FDF8F3;
}

/* ───────────────────────────────────────────────────────────────
   Unit Cards
   ─────────────────────────────────────────────────────────────── */
.unit-card:hover .unit-image {
  transform: scale(1.05);
}

/* ───────────────────────────────────────────────────────────────
   Press Links
   ─────────────────────────────────────────────────────────────── */
.press-link {
  color: #5E584F;
  text-decoration: underline;
  text-decoration-color: rgba(200, 75, 75, 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.press-link:hover {
  color: #C84B4B;
  text-decoration-color: #C84B4B;
}

.press-link:focus-visible {
  outline: 2px dashed #C84B4B;
  outline-offset: 4px;
}

/* ───────────────────────────────────────────────────────────────
   Media Grid (Neighborhood Section)
   ─────────────────────────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 170px);
  gap: 16px;
}

.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.media-grid img:nth-child(1) {
  grid-row: 1 / span 2;
  grid-column: 1;
}

@media (max-width: 900px) {
  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 150px);
  }
  .media-grid img:nth-child(1) {
    grid-row: auto;
    grid-column: auto;
  }
}

/* ───────────────────────────────────────────────────────────────
   Thumbnails
   ─────────────────────────────────────────────────────────────── */
.thumbnail {
  cursor: pointer;
}

.thumbnail:focus {
  outline: none;
}

/* ───────────────────────────────────────────────────────────────
   Carousel
   ─────────────────────────────────────────────────────────────── */
.radish-carousel-thumb {
  min-width: 84px;
  height: 84px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.radish-carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.radish-carousel-thumb:hover {
  transform: translateY(-2px);
}

.radish-carousel-thumb.active {
  border-color: #C84B4B;
  opacity: 0.9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.carousel-nav {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  color: #2D2A26;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

/* ───────────────────────────────────────────────────────────────
   Gallery & Lightbox
   ─────────────────────────────────────────────────────────────── */
.gallery-image {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-image:hover {
  transform: scale(1.01);
}

.gallery-image img {
  transition: transform 0.3s ease;
}

.gallery-image:hover img {
  transform: scale(1.02);
}

#lightboxImage {
  transition: opacity 0.2s ease;
}

/* ───────────────────────────────────────────────────────────────
   Gallery Tiles (Interview Cards)
   ─────────────────────────────────────────────────────────────── */
.gallery-tile {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}

