﻿/* ==========================================================================
   Balkon Cafe Araklı — Premium Dark Ocean Design System
   ========================================================================== */

/* ---------- CSS Custom Properties & Tokens ---------- */
:root {
  /* Color Palette */
  --bg-primary: #050505;
  --bg-secondary: #0d0d10;
  --bg-elevated: #15151b;
  --bg-glass: rgba(13, 13, 16, 0.78);
  --bg-glass-heavy: rgba(5, 5, 5, 0.95);
  
  --accent-teal: #c8a256;
  --accent-cyan: #d4af6e;
  --accent-gold: #a07730;
  --accent-gradient: linear-gradient(135deg, #8b6914 0%, #d4af6e 100%);
  --accent-gradient-hover: linear-gradient(135deg, #c8a256 0%, #e8c882 100%);
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #ffcc00;
  
  /* Text Colors */
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --text-light: #ffffff;
  
  /* Borders */
  --border-subtle: rgba(200, 162, 86, 0.12);
  --border-default: rgba(200, 162, 86, 0.22);
  --border-strong: rgba(212, 175, 110, 0.35);
  
  /* Layout Tokens */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fonts */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

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

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

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

/* ---------- Typography & Utility Styles ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
  line-height: 1.3;
}

.sub-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
}

.title-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  margin: 16px auto 24px;
  border-radius: var(--radius-full);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.max-width-600 {
  max-width: 600px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-cyan); }
.text-light { color: var(--text-light); }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  min-height: 48px;
  user-select: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(200, 162, 86, 0.25);
}
.btn-primary:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 162, 86, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-cyan);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(212, 175, 110, 0.25);
}
.btn-accent:hover {
  background: #e8c882;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 110, 0.4);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  min-height: 38px;
}
.btn-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
  min-height: 54px;
}
.btn-full {
  width: 100%;
}

/* ---------- Header / Navigation Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: 20px 0;
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
}

.navbar.scrolled .nav-logo-img {
  height: 38px;
}

.hero-logo-wrap {
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  justify-content: center;
}

.hero-logo {
  max-width: 480px;
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 80%;
  max-width: 300px;
}
.mobile-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.mobile-link:hover {
  color: var(--text-light);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 140px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180, 150, 80, 0.15);
  border: 1px solid var(--border-default);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Quick Info Bar */
.hero-info-bar {
  position: absolute;
  bottom: -40px;
  left: 24px;
  right: 24px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.clickable-info-item {
  cursor: pointer;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.clickable-info-item:hover {
  transform: translateY(-2px);
  color: var(--text-light);
}

.clickable-info-item:hover .info-icon {
  background: rgba(180, 150, 80, 0.22);
  border-color: var(--border-strong);
  color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(200, 162, 86, 0.2);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(180, 150, 80, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.info-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---------- About Section ---------- */
.about {
  padding: 140px 0 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(200, 162, 86, 0.3);
  text-align: center;
  max-width: 160px;
}
.about-experience-badge h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: #ffffff;
}
.about-experience-badge p {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 162, 86, 0.08);
  border: 1px solid rgba(200, 162, 86, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---------- Okey Showcase Section ---------- */
.okey-showcase {
  background: var(--bg-secondary);
  padding: 100px 0;
  border-y: 1px solid var(--border-subtle);
}

.okey-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.okey-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.okey-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.okey-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.okey-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.okey-benefits li i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.okey-benefits li strong {
  color: var(--text-light);
}

.okey-image-wrap {
  position: relative;
}

.okey-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.okey-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 18, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-default);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Menu Section ---------- */
.menu {
  padding: 100px 0;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 40px;
}
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}
.filter-btn.active {
  background: var(--accent-gradient);
  color: #06121e;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(200, 162, 86, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  transition: all 0.4s ease;
}

.menu-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(180, 150, 80, 0.15);
}

.menu-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.menu-item-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}
.menu-item-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-cyan);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------- Gallery Section ---------- */
.gallery {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-y: 1px solid var(--border-subtle);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 18, 30, 0.9) 10%, rgba(6, 18, 30, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--accent-cyan);
}

/* ---------- Contact / Reservation Section ---------- */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-panel-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
}

.clickable-contact-item {
  cursor: pointer;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.clickable-contact-item:hover {
  transform: translateY(-2px);
  color: var(--text-light);
}

.clickable-contact-item:hover .icon {
  background: rgba(180, 150, 80, 0.22);
  border-color: var(--border-strong);
  color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(200, 162, 86, 0.2);
}

.phone-link {
  transition: color var(--transition-fast);
}

.phone-link:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.contact-detail-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(180, 150, 80, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-item .text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-detail-item .text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.map-wrapper {
  margin-top: 20px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  filter: grayscale(1) invert(0.92) contrast(1.2) opacity(0.85);
  transition: filter var(--transition-base);
}

.map-wrapper iframe:hover {
  filter: grayscale(0.5) invert(0.92) contrast(1.1) opacity(0.95);
}

/* Reservation Form Card */
.reservation-card {
  background: var(--bg-secondary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.res-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.res-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Form Styles */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 10px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-family: var(--font-family);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
  min-height: 44px;
}
.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(200, 162, 86, 0.15);
}
.textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- Footer ---------- */
.footer {
  background: #040c14;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
}
.footer-logo .logo-dot {
  color: var(--accent-cyan);
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}
.social-links a:hover {
  background: var(--accent-gradient);
  color: #06121e;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-links-wrap {
  display: flex;
  gap: 64px;
}
.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: var(--text-light);
}
.footer-links-column a,
.footer-links-column p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.footer-links-column a:hover {
  color: var(--text-light);
}
.footer-links-column p i {
  color: var(--accent-cyan);
  margin-right: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Toast Notifications ---------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  width: calc(100% - 48px);
}

.toast {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: slideInRight 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: auto;
}

.toast-success {
  border-left: 4px solid var(--color-success);
}
.toast-error {
  border-left: 4px solid var(--color-error);
}

.toast-message {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

/* ---------- Responsive Breakpoints (Mobile First/Adjustments) ---------- */

@media (max-width: 992px) {
  /* Hamburger menu triggers */
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
  .nav-cta-wrap .btn {
    display: none; /* Hide desktop button, mobile menu has one */
  }

  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-info-bar {
    position: static;
    margin-top: 40px;
    flex-direction: column;
    gap: 16px;
  }

  .about-grid,
  .okey-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    order: -1;
  }
  .okey-image-wrap {
    order: -1;
  }
  
  .about-experience-badge {
    right: 10px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links-wrap {
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  .reservation-card {
    padding: 24px;
  }
  .footer-links-wrap {
    flex-direction: column;
    gap: 32px;
  }
}

/* ---------- Desktop Centered Navigation & Scroll Fading Logo ---------- */
@media (min-width: 992px) {
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  
  .nav-logo {
    justify-self: start;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
    transform: translateX(-10px);
  }

  .navbar.scrolled .nav-logo {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-menu {
    justify-self: center;
  }

  .nav-cta-wrap {
    justify-self: end;
  }
}

/* ---------- QR Menu Showcase Section ---------- */
.qr-showcase-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 48px;
  align-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.qr-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.qr-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.qr-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.qr-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.qr-feat-item i {
  color: var(--accent-cyan);
  font-size: 1.25rem;
}

.qr-code-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code-box {
  background: var(--bg-secondary);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-base);
}

.qr-code-box:hover {
  transform: scale(1.03);
}

.qr-code-box img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-sm);
  display: block;
}

.qr-scan-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .qr-showcase-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
    text-align: center;
  }
  
  .qr-code-wrap {
    order: -1;
  }
  
  .qr-features {
    align-items: center;
  }
}

/* ---------- Nargile Showcase Section ---------- */
.nargile-showcase {
  background: var(--bg-primary);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nargile-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.nargile-images-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nargile-img-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-default);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.nargile-img-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.nargile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}

.nargile-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 18, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-default);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.nargile-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nargile-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.nargile-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.nargile-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.nargile-features-list li i {
  color: var(--accent-cyan);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.nargile-features-list li strong {
  color: var(--text-light);
}

@media (max-width: 992px) {
  .nargile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nargile-images-grid {
    order: -1;
  }
}

/* ========== MODERNIZATION ADDITIONS ========== */

/* ---------- Scroll Reveal Animations ---------- */
@keyframes fadeInUpReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

[data-animate] {
  opacity: 0;
}
[data-animate].is-visible {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate="fade-up"].is-visible { animation-name: fadeInUpReveal; }
[data-animate="fade-left"].is-visible { animation-name: fadeInLeft; }
[data-animate="fade-right"].is-visible { animation-name: fadeInRight; }
[data-animate="fade-scale"].is-visible { animation-name: fadeInScale; }

/* Staggered delays */
[data-delay="1"] { animation-delay: 0.1s; }
[data-delay="2"] { animation-delay: 0.2s; }
[data-delay="3"] { animation-delay: 0.3s; }
[data-delay="4"] { animation-delay: 0.4s; }
[data-delay="5"] { animation-delay: 0.5s; }

/* ---------- Micro Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 162, 86, 0.15); }
  50% { box-shadow: 0 0 40px rgba(200, 162, 86, 0.3); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.float-animation { animation: float 4s ease-in-out infinite; }
.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }

/* ---------- Section Dividers ---------- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 86, 0.3), transparent);
  margin: 0;
  border: none;
  display: block;
}

/* ---------- Enhanced Glassmorphism on Cards ---------- */
.qr-showcase-card,
.hero-info-bar {
  border-color: rgba(200, 162, 86, 0.18);
}
.qr-showcase-card:hover,
.hero-info-bar:hover {
  border-color: rgba(200, 162, 86, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(200, 162, 86, 0.08);
}

.about-experience-badge {
  animation: pulseGlow 3s ease-in-out infinite;
}

.okey-badge,
.nargile-badge {
  border-color: rgba(200, 162, 86, 0.2);
  transition: all var(--transition-base);
}

/* ---------- Enhanced Image Hover Effects ---------- */
.about-image-wrap .about-image,
.okey-image-wrap .okey-image,
.nargile-img-item .nargile-image {
  transition: transform var(--transition-slow);
}

.about-image-wrap:hover .about-image,
.okey-image-wrap:hover .okey-image {
  transform: scale(1.03);
}

.nargile-img-item:hover .nargile-image {
  transform: scale(1.06);
}

/* ---------- Enhanced Icon Hover Effects ---------- */
.feature-item .feature-icon,
.contact-detail-item .icon,
.info-icon {
  transition: all var(--transition-base);
}

.feature-item:hover .feature-icon,
.contact-detail-item:hover .icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(200, 162, 86, 0.15);
  border-color: rgba(200, 162, 86, 0.3);
}

/* ---------- Button Ripple Hover ---------- */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn-primary { position: relative; overflow: hidden; }
.btn-primary:hover::after { opacity: 1; }

/* ---------- QR Code Box Glow ---------- */
.qr-code-box {
  border-color: rgba(200, 162, 86, 0.3);
}
.qr-code-box:hover {
  box-shadow: 0 10px 40px rgba(200, 162, 86, 0.15), 0 0 60px rgba(200, 162, 86, 0.08);
}

/* ---------- Responsive Font Scaling ---------- */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ---------- Prefers Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] { opacity: 1; }
  .float-animation, .pulse-glow { animation: none; }
  .hero { background-attachment: scroll !important; }
}

/* ---------- Mobile Touch & Responsive Fixes ---------- */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    padding-top: 100px;
  }

  .btn {
    min-height: 48px;
    min-width: 48px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .nargile-images-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
}
