/* ==================================
   VARIABLES & SETUP
===================================== */
:root {
  --bg-color: #0b0b0b;
  --bg-surface: #141414;
  --bg-surface-light: #1e1e1e;
  --text-main: #f2f2f2;
  --text-muted: #a0a0a0;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --border-color: #2a2a2a;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 0;
}

.gold-text {
  color: var(--gold);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: left;
  border-left: 4px solid var(--gold);
  padding-left: 15px;
}

/* ==================================
   BUTTONS
===================================== */
.btn-primary, .btn-secondary, .btn-sm {
  display: inline-block;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--gold);
  color: #000;
  box-shadow: 0 0 15px transparent;
}

.btn-primary:hover {
  background-color: #e6c555;
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--text-muted);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: var(--bg-surface-light);
  color: var(--gold);
  border: 1px solid var(--border-color);
}
.btn-sm:hover {
  background-color: var(--gold);
  color: #000;
}

.full-width {
  width: 100%;
}

/* ==================================
   HEADER
===================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-img {
  height: 65px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.logo-link {
  display: flex;
  align-items: center;
}
.logo-link:hover {
  transform: scale(1.05);
}

.nav-links {
  display: none;
  gap: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links a:hover {
  color: var(--gold);
}

/* ==================================
   HERO SECTION
===================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/hero_real.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(11,11,11,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 50px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.subtext {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.trust-line {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.9;
}

/* ==================================
   TRUST BAR
===================================== */
.trust-bar {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-item {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
}

.trust-item:last-child {
  border-bottom: none;
}

.trust-item .icon {
  font-size: 1.2rem;
}

.trust-item p {
  font-size: 0.95rem;
  font-weight: 500;
}
.trust-item .dim {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==================================
   EXPERIENCE SECTION
===================================== */
.experience {
  background-color: var(--bg-color);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.exp-card {
  background-color: var(--bg-surface);
  padding: 30px;
  border-radius: 8px;
  border-top: 3px solid transparent;
  transition: var(--transition);
}

.exp-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.exp-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-main);
}
.exp-card p {
  color: var(--text-muted);
}

/* ==================================
   SHOWCASE GALLERY
===================================== */
.showcase {
  background-color: var(--bg-surface-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--bg-surface);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0);
  transition: var(--transition);
}
.gallery-item:hover::after {
  background: rgba(0,0,0,0.2);
}

.center-btn {
  text-align: center;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ==================================
   SERVICES
===================================== */
.services {
  background-color: var(--bg-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.menu-category {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  transition: padding-left 0.3s ease;
}
.menu-item:hover {
  padding-left: 10px;
}
.menu-item:last-child {
  border-bottom: none;
}

.item-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ==================================
   LOCATION & HOURS
===================================== */
.location {
  background-color: var(--bg-surface);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.loc-block {
  margin-bottom: 30px;
}

.loc-block h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  color: var(--text-muted);
}
.hours-list li:last-child {
  border-bottom: none;
}

.warning-box {
  background-color: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  padding: 15px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.map-container {
  width: 100%;
  height: 300px;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
}

/* ==================================
   FOOTER
===================================== */
.footer {
  background-color: #050505;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-link {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.footer-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==================================
   MOBILE STICKY CTA
===================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  z-index: 999;
}

body {
  padding-bottom: 80px; /* Space for sticky nav */
}

/* ==================================
   ANIMATIONS 
===================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.delay-1 { transition-delay: 0.2s; }
.fade-up.delay-2 { transition-delay: 0.4s; }
.fade-up.delay-3 { transition-delay: 0.6s; }

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================
   MEDIA QUERIES (DESKTOP)
===================================== */
@media (min-width: 768px) {
  .hidden-mobile {
    display: inline-block;
  }
  
  .nav-links {
    display: flex;
  }
  
  .cta-group {
    flex-direction: row;
    justify-content: center;
  }
  
  .trust-bar {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
  .trust-item {
    border-bottom: none;
    border-right: 1px solid var(--border-color);
    padding: 20px 40px;
  }
  .trust-item:last-child {
    border-right: none;
  }
  
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .loc-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .map-container {
    height: 100%;
    min-height: 400px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .mobile-sticky-cta {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
}
