/* ==========================================
   RED FISH – Custom Styles
   ========================================== */

/* Fonts are loaded from Google Fonts in base.html */

/* ── Navbar scroll effect ── */
#navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

/* ── Hero ── */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.65) 60%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

/* ── Gold divider ── */
.divider-gold {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
  margin: 1rem auto;
}

.divider-gold-left {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, transparent);
  margin: 1rem 0;
}

/* ── Section page hero ── */
.page-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

/* ── Card hover glow ── */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12);
}

/* ── Menu item separator ── */
.menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  transition: border-color 0.2s;
}
.menu-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.menu-item:last-child {
  border-bottom: none;
}

/* ── Gallery grid ── */
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item .gallery-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, #c9a84c 0%, #b87333 100%);
  color: #0a0a0a;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline-gold {
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-gold:hover {
  background: #c9a84c;
  color: #0a0a0a;
}

/* ── Text gradient ── */
.text-gradient-gold {
  background: linear-gradient(135deg, #c9a84c, #e8d5a3, #b87333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll fade-in animation ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Background textures ── */
.bg-dark-section {
  background-color: #111111;
}
.bg-darker-section {
  background-color: #0d0d0d;
}
.bg-card {
  background-color: #1a1a1a;
}

/* ── Form inputs ── */
.form-input {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: border-color 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: #c9a84c;
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ── Mobile nav drawer ── */
#mobile-menu {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#mobile-menu.hidden {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
#mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

/* ── Champagne / tag badge ── */
.badge-gold {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #c9a84c;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Overline label ── */
.overline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 500;
}

/* ── Horizontal rule gold ── */
.hr-gold {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.4), transparent);
  margin: 3rem 0;
}

/* ── Responsive typography adjustments ── */
@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
}
