/* ==========================================================================
   Respawn Cafe - Cyberpunk Gaming Theme Stylesheet
   ========================================================================== */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;600;800;900&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --bg-darker: hsl(225, 25%, 6%);
  --bg-dark: hsl(225, 20%, 9%);
  --bg-card: hsla(225, 20%, 14%, 0.6);
  --bg-card-hover: hsla(225, 20%, 18%, 0.85);
  
  --primary-neon: hsl(180, 100%, 50%);      /* Cyan */
  --primary-neon-glow: hsla(180, 100%, 50%, 0.3);
  --secondary-neon: hsl(320, 100%, 55%);    /* Hot Pink / Purple */
  --secondary-neon-glow: hsla(320, 100%, 55%, 0.3);
  --accent-neon: hsl(120, 100%, 45%);       /* Neon Green */
  --accent-neon-glow: hsla(120, 100%, 45%, 0.2);
  
  --text-main: hsl(210, 20%, 96%);
  --text-muted: hsl(210, 10%, 70%);
  --text-dark: hsl(225, 20%, 10%);
  
  /* Fonts */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Box Shadow */
  --glow-cyan: 0 0 15px var(--primary-neon-glow);
  --glow-pink: 0 0 15px var(--secondary-neon-glow);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-darker);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 10% 20%, hsla(180, 100%, 50%, 0.03) 0px, transparent 50%),
    radial-gradient(at 90% 80%, hsla(320, 100%, 55%, 0.03) 0px, transparent 50%);
  background-attachment: fixed;
}

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

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

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: hsl(225, 20%, 15%);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-neon);
  box-shadow: 0 0 10px var(--primary-neon);
}

/* ==========================================================================
   Utility Classes & Typography
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #ffffff 30%, var(--primary-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
  background: linear-gradient(135deg, #ffffff 30%, var(--secondary-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text-cyan {
  text-shadow: 0 0 10px var(--primary-neon-glow), 0 0 20px rgba(0, 255, 255, 0.1);
}

.glow-text-pink {
  text-shadow: 0 0 10px var(--secondary-neon-glow), 0 0 20px rgba(255, 0, 212, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--primary-neon);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-cyan {
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid var(--primary-neon);
  color: var(--primary-neon);
  box-shadow: var(--glow-cyan);
}

.btn-cyan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-cyan:hover::before {
  left: 100%;
}

.btn-cyan:hover {
  background: var(--primary-neon);
  color: var(--text-dark);
  box-shadow: 0 0 25px var(--primary-neon);
}

.btn-pink {
  background: rgba(255, 0, 212, 0.08);
  border: 1px solid var(--secondary-neon);
  color: var(--secondary-neon);
  box-shadow: var(--glow-pink);
}

.btn-pink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 212, 0.2), transparent);
  transition: 0.5s;
}

.btn-pink:hover::before {
  left: 100%;
}

.btn-pink:hover {
  background: var(--secondary-neon);
  color: var(--text-dark);
  box-shadow: 0 0 25px var(--secondary-neon);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 11, 16, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(9, 11, 16, 0.95);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 255, 255, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-normal);
}

.header.scrolled .nav-container {
  height: 65px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary-neon);
  text-shadow: 0 0 10px var(--primary-neon-glow);
}

.logo .highlight {
  color: var(--secondary-neon);
  text-shadow: 0 0 10px var(--secondary-neon-glow);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-neon);
  box-shadow: 0 0 8px var(--primary-neon);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-neon);
  text-shadow: 0 0 8px var(--primary-neon-glow);
}

.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background-image: 
    linear-gradient(to right, rgba(9, 11, 16, 0.95) 40%, rgba(9, 11, 16, 0.7) 70%, rgba(9, 11, 16, 0.4) 100%),
    url('images/hero-cafe.png');
  background-size: cover;
  background-position: center right;
  background-attachment: scroll;
}

.hero-content {
  max-width: 650px;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid var(--primary-neon-glow);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-neon);
  margin-bottom: 1.5rem;
  box-shadow: var(--glow-cyan);
  animation: pulse-badge 2s infinite;
}

.hero-badge i {
  color: var(--accent-neon);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Floating Status Indicator */
.hero-status {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-neon);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-neon);
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-neon);
  animation: ripple 1.5s infinite ease-in-out;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  border: var(--glass-border);
}

.rating-badge i {
  color: #ffb800;
}

.rating-badge span {
  font-weight: 600;
  color: var(--text-main);
}

/* ==========================================================================
   Story Section ("Play & Eat")
   ========================================================================== */
.story {
  padding: 100px 0;
  background-color: var(--bg-dark);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: var(--glass-border);
}

.story-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 11, 16, 0.8) 0%, transparent 50%);
  z-index: 1;
}

.story-image-wrapper::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.3;
  transition: var(--transition-normal);
}

.story-image-wrapper:hover::after {
  opacity: 0.8;
}

.story-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.story-image-wrapper:hover .story-image {
  transform: scale(1.05);
}

.story-accent-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  background: rgba(9, 11, 16, 0.85);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary-neon);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.story-accent-tag h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.story-accent-tag p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.story-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.story-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 0, 212, 0.08);
  border: 1px solid var(--secondary-neon-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-neon);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--glow-pink);
}

.feature-item:nth-child(even) .feature-icon {
  background: rgba(0, 255, 255, 0.08);
  border-color: var(--primary-neon-glow);
  color: var(--primary-neon);
  box-shadow: var(--glow-cyan);
}

.feature-content h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Menu & Games Section
   ========================================================================== */
.menu-section {
  padding: 100px 0;
  position: relative;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-normal);
}

.tab-btn:hover {
  border-color: var(--primary-neon-glow);
  color: var(--text-main);
  background: rgba(0, 255, 255, 0.03);
}

.tab-btn.active {
  background: var(--primary-neon);
  border-color: var(--primary-neon);
  color: var(--text-dark);
  box-shadow: 0 0 15px var(--primary-neon-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  opacity: 0;
  transition: var(--transition-fast);
}

.menu-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 255, 0.05);
  border-color: rgba(0, 255, 255, 0.2);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-image {
  height: 180px;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.menu-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(9, 11, 16, 0.85);
  border: 1px solid var(--primary-neon-glow);
  color: var(--primary-neon);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.menu-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.menu-price {
  font-family: var(--font-display);
  color: var(--primary-neon);
  font-weight: 800;
  font-size: 1.15rem;
  text-shadow: 0 0 5px var(--primary-neon-glow);
  white-space: nowrap;
}

.menu-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.menu-badge-list {
  display: flex;
  gap: 0.5rem;
}

.menu-badge {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  border: var(--glass-border);
}

.menu-badge.veg {
  border-color: rgba(0, 230, 0, 0.3);
  color: var(--accent-neon);
  background: rgba(0, 230, 0, 0.03);
}

.menu-order-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.menu-card:hover .menu-order-btn {
  background: var(--primary-neon);
  color: var(--text-dark);
  box-shadow: 0 0 10px var(--primary-neon);
  border-color: var(--primary-neon);
}

/* Game Card Variants */
.menu-card.game-card .menu-price {
  color: var(--secondary-neon);
  text-shadow: 0 0 5px var(--secondary-neon-glow);
}

.menu-card.game-card:hover {
  border-color: rgba(255, 0, 212, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 0, 212, 0.05);
}

.menu-card.game-card:hover .menu-order-btn {
  background: var(--secondary-neon);
  color: var(--text-dark);
  box-shadow: 0 0 10px var(--secondary-neon);
  border-color: var(--secondary-neon);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  background: var(--bg-card);
  border: var(--glass-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.summary-score {
  text-align: center;
}

.score-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, var(--primary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.score-stars {
  color: #ffb800;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.score-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.summary-bars {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.bar-star {
  width: 10px;
  color: var(--text-muted);
}

.bar-bg {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
}

.bar-fill.cyan {
  background: var(--primary-neon);
  box-shadow: 0 0 5px var(--primary-neon-glow);
}

.bar-percent {
  width: 30px;
  text-align: right;
  color: var(--text-muted);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
}

.user-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.user-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars {
  color: #ffb800;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  position: relative;
  padding-left: 0.5rem;
}

.review-text::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 3rem;
  position: absolute;
  top: -1.5rem;
  left: -0.75rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.review-footer {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.review-tag {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  border: var(--glass-border);
}

/* Owner Reply */
.owner-reply {
  background: rgba(0, 255, 255, 0.03);
  border-left: 3px solid var(--primary-neon);
  padding: 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.owner-reply-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary-neon);
  margin-bottom: 0.25rem;
}

.owner-reply-text {
  color: var(--text-muted);
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.contact-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 255, 255, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid var(--primary-neon-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-neon);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--glow-cyan);
}

.contact-card:nth-child(2) .contact-icon {
  background: rgba(255, 0, 212, 0.08);
  border-color: var(--secondary-neon-glow);
  color: var(--secondary-neon);
  box-shadow: var(--glow-pink);
}

.contact-details h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary-neon);
  text-shadow: 0 0 5px var(--primary-neon-glow);
}

/* Map Card */
.map-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.map-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.2;
}

.map-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: none;
  filter: grayscale(0.9) invert(0.9) contrast(1.2);
  transition: var(--transition-normal);
}

.map-card:hover .map-frame {
  filter: grayscale(0.2) invert(0.9) contrast(1.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about .logo {
  margin-bottom: 1.25rem;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--primary-neon);
  border-color: var(--primary-neon);
  box-shadow: var(--glow-cyan);
  background: rgba(0, 255, 255, 0.05);
  transform: translateY(-3px);
}

.footer-links h4, .footer-hours h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-neon);
  padding-left: 5px;
}

.footer-hours p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-hours span {
  display: block;
  font-weight: 700;
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--primary-neon);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 10px var(--primary-neon-glow);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 10px var(--primary-neon-glow);
  }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-image {
    height: 350px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .map-card {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
    transition: var(--transition-normal);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero {
    background-image: 
      linear-gradient(to top, rgba(9, 11, 16, 0.98) 30%, rgba(9, 11, 16, 0.8) 100%),
      url('images/hero-cafe.png');
    background-position: center;
    text-align: center;
    padding-top: 120px;
  }
  
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-status {
    justify-content: center;
  }
  
  .reviews-summary {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .summary-bars {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .menu-tabs {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}
