/* ===== HOME PAGE STYLES ===== */

/* HERO */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(160deg, #0f2218 0%, #1a3d25 40%, #2c5f3a 100%);
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(255,255,255,0.025)'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,137,42,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: 4rem; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px; margin-bottom: 2rem;
}
.htag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 110px);
  color: #fff; font-weight: 400; line-height: 1.0;
  margin-bottom: 1.5rem; max-width: 900px;
}
.hero-title em { color: var(--gold2); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.65); font-size: 17px; font-weight: 300;
  line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line-anim {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollDrop 2s infinite;
}
@keyframes scrollDrop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 100%{transform:scaleY(0);transform-origin:bottom} }

/* STATS BAR */
.stats-bar { background: var(--dark2); padding: 0; }
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 1.5rem 0;
}
.stat-item { padding: 1.25rem 3rem; text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 700; color: #fff; line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 5px; letter-spacing: 0.06em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.08); }

/* TICKER */
.ticker-bar { background: var(--gold); overflow: hidden; padding: 10px 0; }
.ticker-inner {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 12px; font-weight: 600; color: #fff;
  letter-spacing: 0.07em; text-transform: uppercase;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text); line-height: 1.7; font-weight: 300;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.al-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 180px; gap: 10px; }
.aig-main { grid-column: 1/3; border-radius: var(--radius); overflow: hidden; }
.aig-sm { border-radius: var(--radius); overflow: hidden; }
.about-card-float {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border-radius: 10px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.about-visual { position: relative; }
.acf-icon { font-size: 28px; }
.acf-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.acf-title { font-size: 11px; color: var(--muted); font-weight: 300; }

/* MENU HIGHLIGHTS */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.highlight-card { display: flex; flex-direction: column; overflow: hidden; transition: var(--transition); }
.hc-visual {
  height: 160px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hc-icon { font-size: 60px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); transition: transform 0.4s ease; }
.highlight-card:hover .hc-icon { transform: scale(1.12) rotate(-5deg); }
.hc-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.hc-title { font-size: 16px; font-weight: 600; color: var(--dark); }
.hc-desc { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300; flex: 1; }
.hc-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--green); font-weight: 600; margin-top: 6px; }

/* INSTA SECTION */
.insta-section { background: var(--cream); }
.insta-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }

/* SPECIALS */
.specials-section { background: var(--dark2); }
.specials-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.special-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center;
  transition: var(--transition);
}
.special-card:hover, .special-card.active {
  background: rgba(184,137,42,0.12); border-color: rgba(184,137,42,0.3);
}
.sc-day { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold2); margin-bottom: 0.75rem; }
.sc-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; font-weight: 500; margin-bottom: 0.5rem; }
.sc-price { font-size: 14px; color: rgba(255,255,255,0.5); }

/* CTA */
.cta-section { background: var(--green); padding: 6rem 0; }
.cta-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cta-contacts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
.cta-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 1.1rem;
}
.cta-contact-item > span { font-size: 18px; margin-top: 2px; }
.cci-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.cci-val { font-size: 13px; color: #fff; font-weight: 400; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* MENU NOTE */
.menu-note {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: var(--green3); border-radius: 8px; border-left: 3px solid var(--green);
  font-size: 12px; color: var(--green2); font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-contacts { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1.25rem 1.5rem; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-contacts { grid-template-columns: 1fr; }
}
