/* =============================================
   SPICE GARDEN RESTAURANT — CSS
   Built by RNS Digital
   ============================================= */

:root {
  --bg-dark:      #1a0e00;
  --bg-card:      #2c1a08;
  --bg-card2:     #231205;
  --accent-gold:  #c9952a;
  --accent-orange:#e05c1a;
  --accent-green: #2e7d32;
  --text-light:   #f5e9d5;
  --text-muted:   #a08060;
  --white:        #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --radius:       12px;
  --transition:   0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 14, 0, 0.95);
  border-bottom: 1px solid rgba(201,149,42,0.2);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 22px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--accent-gold); }

.btn-whatsapp {
  background: var(--accent-orange) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), transform var(--transition);
}

.btn-whatsapp:hover {
  background: #c94f10 !important;
  transform: scale(1.03);
}

.built-by-header {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  border-left: 1px solid rgba(201,149,42,0.3);
  padding-left: 16px;
  margin-left: 8px;
}

.built-by-header strong { color: var(--accent-gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 600;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: #c94f10;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  padding: 12px 26px;
  border-radius: 8px;
  border: 1px solid rgba(245,233,213,0.3);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--transition), color var(--transition);
}

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

/* Hero Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(201,149,42,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.card-img-wrap {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.06);
}

.card-label {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px 0;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
  padding: 0 24px;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  padding: 0 24px;
}

.old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 24px 20px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.8px;
}

.tag.orange { background: rgba(224,92,26,0.25); color: #e87d40; }
.tag.red    { background: rgba(200,50,50,0.2);  color: #f07070; }
.tag.green  { background: rgba(46,125,50,0.25); color: #6fbf73; }

/* =============================================
   MENU SECTION
   ============================================= */
.menu-section {
  background: var(--bg-card2);
  padding: 80px 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.section-title em {
  color: var(--accent-gold);
  font-style: italic;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,149,42,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.menu-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img {
  transform: scale(1.08);
}

.menu-card-body {
  padding: 20px;
  text-align: center;
}

.menu-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.menu-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.price {
  font-family: var(--font-display);
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 700;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  padding: 80px 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,149,42,0.1);
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}

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

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-gold);
}

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

.g1 { grid-column: span 2; }
.g5 { grid-column: span 2; }

/* =============================================
   RESERVATION
   ============================================= */
.reservation-section {
  background: var(--bg-card2);
  padding: 80px 24px;
}

.reservation-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(201,149,42,0.2);
}

.reservation-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.reservation-box h2 em {
  color: var(--accent-gold);
  font-style: italic;
}

.reservation-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* =============================================
   MAP
   ============================================= */
.map-section { padding: 80px 24px; }

.map-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(201,149,42,0.15);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 16px;
  display: block;
}

.map-placeholder p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0f0800;
  border-top: 1px solid rgba(201,149,42,0.15);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent-gold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,42,0.3);
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.footer-credit {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(201,149,42,0.1);
  padding-top: 24px;
}

.footer-credit strong { color: var(--accent-gold); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    min-height: unset;
    gap: 40px;
  }

  .nav-links { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }

  .g1, .g5 { grid-column: span 1; }

  .built-by-header { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .reservation-box { padding: 40px 20px; }
  .map-placeholder { padding: 40px 20px; }
}
