/* ========================================
   HIDEOUT RESTOBAR - STYLE SHEET
   A Secret Spot for Global Cuisine
======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
:root {
  /* Colors - Light Theme with Hard Rock Accents */
  --black: #000000;
  --black-light: #1a1a1a;
  --charcoal: #333333;
  --charcoal-light: #444444;
  --gray-dark: #555555;
  --gray: #888888;
  --gray-light: #cccccc;
  --white: #ffffff;
  --white-pure: #ffffff;
  --bg-light: #f8f8f8;

  /* Accent Colors - Hard Rock Style */
  --primary: #993520;
  --primary-dark: #7a2a1a;
  --primary-light: #b84530;
  --secondary: #F9B200;
  --secondary-dark: #d49800;
  --accent: #F9B200;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-dark: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Animation */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
  --duration-slower: 0.8s;

  /* Layout */
  --max-width: 1400px;
  --nav-height: 80px;
  --top-bar-height: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Selection */
::selection {
  background: var(--primary);
  color: var(--white);
}

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

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ========================================
   PRELOADER
======================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 250px;
  margin-bottom: var(--space-lg);
}

.preloader-logo-img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: logoReveal 1s var(--ease-out-expo) 0.3s forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes eyeLook {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}

@keyframes handWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.preloader-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--gray-light);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeIn 0.6s var(--ease-smooth) 1.5s forwards;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  animation: loadBar 2s var(--ease-smooth) forwards;
}

@keyframes loadBar {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  display: none; /* Hidden - info moved to navbar */
}

.top-bar-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  font-weight: 500;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--white);
}

.top-bar-left a:hover {
  opacity: 0.8;
}

.top-bar-left .divider {
  color: rgba(255,255,255,0.5);
}

.top-bar-right {
  display: flex;
  gap: var(--space-md);
}

.top-bar-right a {
  color: var(--white);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.top-bar-right a:hover {
  transform: scale(1.1);
}

.icon-sm {
  width: 14px;
  height: 14px;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-links a {
  color: var(--black);
}

.navbar.scrolled .logo-text-nav {
  color: var(--black);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-img {
  height: 70px;
  width: auto;
}

.logo-text-nav {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
}

.nav-actions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.nav-buttons {
  display: flex;
  gap: var(--space-md);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--black);
}

.nav-contact span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-divider {
  opacity: 0.5;
}

.icon-xs {
  width: 12px;
  height: 12px;
}

.navbar.scrolled .nav-contact {
  color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-order {
  background: var(--secondary);
  color: var(--black);
  font-weight: 700;
}

.btn-order:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-reserve {
  background: var(--primary);
  color: var(--white);
}

.btn-reserve:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

.btn-text {
  background: none;
  padding: 0;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
}

.btn-text:hover {
  color: var(--primary-light);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-link:hover {
  gap: var(--space-sm);
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
}

.mobile-nav-links {
  margin-bottom: var(--space-2xl);
}

.mobile-nav-links li {
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--white);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.mobile-nav-links a:hover {
  color: var(--primary);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0 var(--space-2xl);
}

.mobile-nav-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
  margin-top: var(--space-sm);
}

.mobile-nav-contact span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideshow 6s infinite;
}

.slide-1 {
  background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1920&q=80');
  animation-delay: 0s;
}

.slide-2 {
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80');
  animation-delay: 2s;
}

.slide-3 {
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=80');
  animation-delay: 4s;
}

@keyframes slideshow {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(10, 10, 10, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-xl);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 2.2s forwards;
}

.hero-title {
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 2.4s forwards;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(60px, 15vw, 140px);
  letter-spacing: 10px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
}

.title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 40px);
  letter-spacing: 15px;
  color: #ffffff;
  margin-top: var(--space-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(20px, 4vw, 28px);
  font-style: italic;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 2.6s forwards;
}

.hero-description {
  font-size: 16px;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 2.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 3s forwards;
}

.hero-features {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 3.2s forwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--gray-light);
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out-expo) 3.5s forwards, bounce 2s 4s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   CONTACT INFO STRIP
======================================== */
.contact-strip {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.contact-strip-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.contact-strip .container {
  position: relative;
  z-index: 1;
}

/* Single Contact Box */
.contact-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
}

.contact-box-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-box-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.contact-box-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.contact-box-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-box-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-box-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-box-item i {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-box-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-box-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-box-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.contact-box-text em {
  color: var(--secondary);
  font-style: normal;
}

.contact-box-text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
}

.contact-box-text a:hover {
  color: var(--white);
}

.contact-box-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.contact-box-btn i {
  width: 18px;
  height: 18px;
}

.contact-box-btn.primary {
  background: var(--secondary);
  color: var(--black);
}

.contact-box-btn.primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-box-btn.secondary {
  background: var(--primary);
  color: var(--white);
}

.contact-box-btn.secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ========================================
   CONTAINER & SECTIONS
======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
}

.label-line {
  width: 30px;
  height: 1px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 3px;
  line-height: 1.2;
}

.section-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 600px;
  margin: var(--space-lg) auto 0;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.img-overlay span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--primary);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--primary);
  padding: var(--space-lg);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-right: var(--space-2xl);
}

.about-lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.about-content p {
  color: var(--gray-light);
  margin-bottom: var(--space-lg);
}

.about-philosophy {
  background: var(--charcoal);
  padding: var(--space-xl);
  border-radius: 8px;
  margin: var(--space-xl) 0;
  border-left: 3px solid var(--primary);
}

.about-philosophy h4 {
  font-size: 18px;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.about-philosophy p {
  margin-bottom: var(--space-md);
}

.philosophy-list {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.philosophy-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--white);
}

.philosophy-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--secondary);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: var(--space-xl) 0;
}

/* ========================================
   SPECIALTIES SECTION
======================================== */
.specialties {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.specialties-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 0;
}

.specialties .container {
  position: relative;
  z-index: 1;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.specialty-card {
  background: var(--black-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
  animation-delay: var(--delay, 0s);
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.specialty-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.specialty-overlay {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}

.specialty-tag {
  padding: var(--space-xs) var(--space-md);
  background: var(--primary);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specialty-content {
  padding: var(--space-lg);
}

.specialty-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.specialty-content p {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: var(--space-md);
}

/* ========================================
   MENU SECTION
======================================== */
.menu {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.menu-filters {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 1px solid var(--gray-dark);
  border-radius: 30px;
  color: var(--gray-light);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.menu-prompt {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  color: var(--gray);
}

.menu-prompt i {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.menu-prompt p {
  font-size: 18px;
}

.menu-prompt.hidden {
  display: none;
}

.menu-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.menu-grid.visible {
  display: grid;
}

.menu-card {
  background: var(--charcoal);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.menu-card.hidden {
  display: none;
}

.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.menu-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-tag.bestseller {
  background: var(--secondary);
  color: var(--black);
}

.menu-tag.chef {
  background: var(--primary);
  color: var(--white);
}

.menu-tag.popular {
  background: var(--accent);
  color: var(--black);
}

.menu-card-content {
  padding: var(--space-lg);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.menu-card-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.menu-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.menu-card-content p {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

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

.menu-type {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  color: var(--gray);
}

.menu-type svg {
  width: 14px;
  height: 14px;
}

.btn-add {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-add:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.btn-add svg {
  width: 20px;
  height: 20px;
}

.menu-cta {
  text-align: center;
  margin-top: var(--space-3xl);
}

/* ========================================
   PARALLAX CTA
======================================== */
.parallax-cta {
  position: relative;
  padding: var(--space-4xl) 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 0 var(--space-xl);
}

.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 3px;
  margin-bottom: var(--space-lg);
}

.parallax-content p {
  font-size: 18px;
  color: var(--gray-light);
  margin-bottom: var(--space-2xl);
}

.parallax-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.delivery-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.delivery-partners span {
  font-size: 14px;
  color: var(--gray);
}

.partner-logos {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.partner-logos img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.partner-logos img:hover {
  opacity: 1;
}

/* ========================================
   EVENTS SECTION
======================================== */
.events {
  padding: var(--space-4xl) 0;
  background: #f5f5f5;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.events-content p {
  color: var(--gray-light);
  margin-bottom: var(--space-xl);
}

.events-features {
  margin-bottom: var(--space-2xl);
}

.events-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
}

.events-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.events-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.event-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.event-card:first-child {
  grid-column: span 2;
  height: 250px;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.event-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.event-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.event-card-content p {
  font-size: 13px;
  color: var(--gray-light);
}

/* ========================================
   GIFT CARDS
======================================== */
.gift-cards {
  padding: var(--space-3xl) 0;
  background: var(--black);
}

.gift-card-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gradient-primary);
  border-radius: 16px;
  overflow: hidden;
}

.gift-card-content {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gift-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
}

.gift-card-content h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.gift-card-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.gift-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 53, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-normal) var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(255, 107, 53, 0.3);
}

.gallery-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ========================================
   RESERVATION SECTION
======================================== */
.reservation {
  padding: var(--space-4xl) 0;
  background: #f5f5f5;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: start;
}

.reservation-info p {
  color: var(--gray-light);
  margin-bottom: var(--space-2xl);
}

.reservation-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.detail-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--black-light);
  border-radius: 8px;
}

.detail-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.detail-item h4 {
  font-size: 16px;
  margin-bottom: var(--space-xs);
}

.detail-item p {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 0;
}

.reservation-form-container {
  background: var(--black-light);
  padding: var(--space-2xl);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-md);
  background: var(--charcoal);
  border: 1px solid var(--gray-dark);
  border-radius: 8px;
  color: var(--white);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.contact-card {
  background: var(--charcoal);
  padding: var(--space-xl);
  border-radius: 12px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-card svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.contact-card h4 {
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: var(--space-md);
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

.contact-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(90%) contrast(90%);
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--black-light);
}

.footer-main {
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
}

.footer-logo {
  height: 60px;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.footer-description {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: var(--space-xl);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links ul a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color var(--duration-fast) var(--ease-smooth);
}

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

.footer-contact ul li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 14px;
  color: var(--gray-light);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a {
  color: var(--gray-light);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  font-size: 14px;
  color: var(--gray);
}

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

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-smooth);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   REVEAL ANIMATIONS
======================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all var(--duration-slower) var(--ease-out-expo);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 992px) {
  .nav-content {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .logo {
    order: 1;
    flex-shrink: 0;
  }

  .logo-img {
    height: 50px;
  }

  .logo-text-nav {
    font-size: 20px;
  }

  .nav-actions {
    display: flex;
    order: 2;
    margin-left: auto;
    margin-right: 15px;
  }

  .nav-actions-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .nav-buttons {
    gap: 6px;
  }

  .nav-buttons .btn {
    padding: 6px 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .nav-contact {
    display: none;
  }

  .about-grid,
  .events-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-images {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-img-secondary {
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 180px;
  }

  .gift-card-box {
    grid-template-columns: 1fr;
  }

  .gift-card-image {
    height: 200px;
  }

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

  .gallery-item.large,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

@media (max-width: 768px) {
  :root {
    --space-4xl: 64px;
    --space-3xl: 48px;
  }

  .hero-slide {
    background-attachment: scroll;
  }

  .top-bar-left .divider,
  .top-bar-left a:last-child {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    flex-direction: column;
    gap: var(--space-md);
  }

  .contact-strip {
    padding: 30px 0;
  }

  .contact-box {
    padding: 24px 20px;
  }

  .contact-box-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .contact-box-header h3 {
    font-size: 24px;
  }

  .contact-box-header p {
    font-size: 13px;
  }

  .contact-box-content {
    gap: 16px;
    margin-bottom: 20px;
  }

  .contact-box-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-box-item i {
    width: 20px;
    height: 20px;
  }

  .contact-box-text strong {
    font-size: 12px;
  }

  .contact-box-text span {
    font-size: 13px;
  }

  .contact-box-text a {
    font-size: 14px;
  }

  .contact-box-actions {
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
  }

  .contact-box-btn {
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-description {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-content,
  .container {
    padding: 0 var(--space-md);
  }

  .logo-img {
    height: 40px;
  }

  .logo-text-nav {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .nav-buttons .btn {
    padding: 5px 8px;
    font-size: 9px;
  }

  .nav-actions {
    margin-right: 10px;
  }

  .hero-badge {
    font-size: 10px;
    padding: var(--space-xs) var(--space-md);
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }

  .floating-badge {
    display: none;
  }

  .about-img-secondary {
    display: none;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}
