/* ============================================
   YUN TEA — Visit Us Page Styles
   ============================================ */

/* --- Visit Hero --- */
.visit-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.visit-hero .hero-bg img {
  object-position: center 50%;
}

.visit-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-16) var(--space-3) var(--space-8);
}

.visit-hero h1 {
  font-size: var(--text-hero);
  color: var(--color-hero-text);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.visit-hero p {
  color: var(--color-hero-text);
  opacity: 0.85;
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto;
}

/* --- Info Section --- */
.visit-info {
  padding: var(--space-10) var(--space-3);
}

.visit-info-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.info-block {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107, 107, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-block h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}

.info-block p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.info-block a {
  color: var(--color-accent);
  font-weight: 500;
}

.info-block a:hover {
  text-decoration: underline;
}

/* --- Map Section --- */
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  text-align: center;
  padding: var(--space-4);
  color: var(--color-text-muted);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-2);
  opacity: 0.4;
}

/* --- Gallery Section --- */
.visit-gallery {
  padding: var(--space-10) var(--space-3);
  background: var(--color-section-alt);
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

/* --- Hours Table --- */
.hours-table {
  width: 100%;
  margin-top: var(--space-2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 10px 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hours-today {
  color: var(--color-accent);
}

.hours-today .hours-day {
  color: var(--color-accent);
}

/* --- Reservation CTA --- */
.visit-cta {
  padding: var(--space-10) var(--space-3);
  text-align: center;
}

.visit-cta h2 {
  margin-bottom: var(--space-2);
}

.visit-cta p {
  margin: 0 auto var(--space-4);
  font-size: var(--text-lg);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .visit-info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .visit-hero h1 {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
  }
}
