/* ── Brand Colors ── */
:root {
  --yellow: #FFA500;
  --black: #111111;
  --dark: #1a1a1a;
}

/* ── Base ── */
body {
  background-color: var(--black);
  font-family: 'Segoe UI', sans-serif;
}

/* ── Utility ── */
.text-yellow { color: var(--yellow) !important; }
.bg-yellow   { background-color: var(--yellow) !important; }
.bg-dark-custom { background-color: #181818; }

/* ── Navbar Logo ── */
.navbar-logo {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 8px;
}

/* ── Buttons ── */
.btn-yellow {
  background-color: var(--yellow);
  color: var(--black);
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.btn-yellow:hover {
  background-color: #e69400;
  color: var(--black);
  transform: translateY(-1px);
}

.btn-black {
  background-color: var(--black);
  color: #fff;
  border: 2px solid var(--black);
  transition: background-color 0.2s ease;
}
.btn-black:hover {
  background-color: #333;
  color: #fff;
}

.btn-outline-yellow {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-outline-yellow:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/* ── Hero ── */
.hero-section {
  min-height: 90vh;
  background: radial-gradient(ellipse at 70% 50%, #2a1e00 0%, var(--black) 65%);
  padding: 80px 0;
}

/* ── Hero Animated Particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particles span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.12;
  animation: floatUp linear infinite;
  user-select: none;
}

.hero-particles span:nth-child(1)  { left: 5%;  font-size: 2.5rem; animation-duration: 12s; animation-delay: 0s;   }
.hero-particles span:nth-child(2)  { left: 15%; font-size: 1.6rem; animation-duration: 15s; animation-delay: 2s;   }
.hero-particles span:nth-child(3)  { left: 28%; font-size: 3rem;   animation-duration: 10s; animation-delay: 4s;   }
.hero-particles span:nth-child(4)  { left: 42%; font-size: 2rem;   animation-duration: 18s; animation-delay: 1s;   }
.hero-particles span:nth-child(5)  { left: 58%; font-size: 1.8rem; animation-duration: 13s; animation-delay: 6s;   }
.hero-particles span:nth-child(6)  { left: 68%; font-size: 2.8rem; animation-duration: 9s;  animation-delay: 3s;   }
.hero-particles span:nth-child(7)  { left: 76%; font-size: 1.5rem; animation-duration: 16s; animation-delay: 0.5s; }
.hero-particles span:nth-child(8)  { left: 84%; font-size: 2.2rem; animation-duration: 11s; animation-delay: 5s;   }
.hero-particles span:nth-child(9)  { left: 91%; font-size: 1.7rem; animation-duration: 14s; animation-delay: 7s;   }
.hero-particles span:nth-child(10) { left: 97%; font-size: 3.2rem; animation-duration: 8s;  animation-delay: 2.5s; }

@keyframes floatUp {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0;    }
  10%  { opacity: 0.14; }
  90%  { opacity: 0.10; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0;    }
}

.hero-img {
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(255, 165, 0, 0.25);
  max-height: 420px;
}

/* ── Section Spacing ── */
.py-section {
  padding: 90px 0;
}

/* ── Menu Cards ── */
.menu-card {
  background-color: #222222;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(255, 165, 0, 0.2);
}
.menu-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* ── How It Works – Step Icons ── */
.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--black);
}

/* ── Locations ── */
.location-card {
  background-color: #222222;
  border-radius: 16px;
  border: 1px solid #2e2e2e;
  transition: border-color 0.2s ease;
}
.location-card:hover {
  border-color: var(--yellow);
}

/* ── Footer ── */
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--yellow);
}

.social-link {
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.social-link:hover {
  color: var(--yellow);
}

/* ── Badge override ── */
.bg-yellow.text-black {
  color: var(--black) !important;
}

/* ── Locations Accordion ── */
.locations-accordion {
  border-radius: 12px;
  overflow: hidden;
}

.location-accordion-item {
  background-color: #222222;
  border: 1px solid #2e2e2e !important;
  margin-bottom: 8px;
  border-radius: 12px !important;
  overflow: hidden;
}

.location-accordion-btn {
  background-color: #222222 !important;
  color: #fff !important;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: none !important;
}

.location-accordion-btn:not(.collapsed) {
  background-color: #2a2a2a !important;
  border-bottom: 2px solid var(--yellow);
}

.location-accordion-btn::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

.location-accordion-item .accordion-body {
  background-color: #1e1e1e;
  padding: 1.25rem;
}

/* ── Floating Contact Buttons ── */
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.float-call {
  background-color: var(--yellow);
  color: var(--black);
}

.float-whatsapp {
  background-color: #25D366;
  color: #fff;
}

/* ── Social Feed Section ── */
.social-highlight-card {
  background-color: #222222;
  border-radius: 16px;
  border: 1px solid #2e2e2e;
}

.fb-page-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: #222;
}

.social-ig-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 110%, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-large {
  grid-column: span 2;
}

.gallery-large img {
  height: 340px;
}

.gallery-wide {
  grid-column: span 3;
}

.gallery-wide img {
  height: 260px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-large { grid-column: span 2; }
  .gallery-wide  { grid-column: span 2; }
  .gallery-item img      { height: 180px; }
  .gallery-large img     { height: 220px; }
  .gallery-wide img      { height: 180px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-large, .gallery-wide { grid-column: span 1; }
}
