/* ═══════════════════════════════════════════════════
   SPICEHAVEN MENU PAGE STYLES
═══════════════════════════════════════════════════ */

:root {
  --accent-primary: #f59e0b;
  --accent-hover: #d97706;
  --accent-soft: #fbbf24;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --surface: #1a1a1a;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f0ece3;
  --text-light: #ffffff;
  --text-light-soft: rgba(255, 255, 255, 0.85);
  --muted: #8a8a8a;
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif: 'Playfair Display', serif;
  --ff-body: 'DM Sans', sans-serif;
  --nav-h: 80px;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════
   RESET & DEFAULTS
═══════════════════════════════════════════════════ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   RESERVATION FORM
═══════════════════════════════════════════════════ */
.reservation {
  background: linear-gradient(to bottom, var(--bg), var(--bg2)), radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  padding: 7rem 5vw;
  text-align: center;
}

.res-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a8a8a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  background: var(--accent-primary);
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: all var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.form-success {
  display: none;
  background: rgba(26, 107, 58, 0.15);
  border: 1px solid rgba(26, 107, 58, 0.4);
  border-radius: 10px;
  padding: 1.2rem;
  margin-top: 1rem;
  color: #5ecb8d;
  font-size: 0.9rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   ADMIN LINK
═══════════════════════════════════════════════════ */
.admin-link {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  text-decoration: none;
  z-index: 100;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-link:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}



/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
  }

  .hero-visual {
    width: 60%;
    margin-top: 3rem;
  }

}

@media (max-width: 768px) {
  .navbar {
    padding: 0 3vw;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: var(--nav-h) 3vw 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 3vw;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    width: 100%;
  }

  .res-form {
    padding: 2rem 1.2rem;
  }

  menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .about-images {
    height: 300px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

