/* ============================================
   KULAKULO WARKOP - PREMIUM CSS STYLES
   Modern, Clean, Professional Design
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
  /* Brand Colors */
  --color-primary: #C41E3A;
  --color-primary-dark: #8B0000;
  --color-primary-light: #E63946;
  --color-secondary: #2C3E50;
  --color-accent: #D4A373;
  --color-gold: #C9A961;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-gray-50: #FAFAFA;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E0E0E0;
  --color-gray-300: #BDBDBD;
  --color-gray-400: #9E9E9E;
  --color-gray-500: #757575;
  --color-gray-600: #616161;
  --color-gray-700: #424242;
  --color-gray-800: #303030;
  --color-gray-900: #212121;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-slower: 500ms ease;
  
  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
  :root {
    --color-white: #1A1A1A;
    --color-black: #FFFFFF;
    --color-gray-50: #212121;
    --color-gray-100: #2D2D2D;
    --color-gray-200: #404040;
    --color-gray-300: #525252;
    --color-gray-400: #737373;
    --color-gray-500: #A3A3A3;
    --color-gray-600: #D4D4D4;
    --color-gray-700: #E5E5E5;
    --color-gray-800: #F5F5F5;
    --color-gray-900: #FAFAFA;
  }
}

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

/* Skip to Content (Accessibility) */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
  text-decoration: none;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: var(--color-white);
}

.loading-logo img {
  width: 120px;
  height: auto;
  margin: 0 auto var(--space-4);
  animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-4);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  background: transparent;
}

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

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo:hover img {
  transform: scale(1.05);
}

.navbar {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.header.scrolled .nav-link {
  color: var(--color-gray-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: var(--z-modal);
}

.hamburger {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

.header.scrolled .hamburger {
  background: var(--color-gray-700);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/hero/luar1.jpg') center/cover no-repeat;
  background-position: center 65%;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.4) 0%, rgba(196, 30, 58, 0.3) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--space-6);
  animation: fadeInUp 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  color: var(--color-gold);
  text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
}

.hero-subtitle {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  line-height: 1.6;
  margin-bottom: var(--space-8);
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

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

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

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

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-sm);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: var(--space-24) var(--space-6);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-subtitle {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  position: relative;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  margin: var(--space-2) auto 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

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

.about-card-reverse {
  direction: rtl;
}

.about-card-reverse .about-content {
  direction: ltr;
}

.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* Responsive untuk About Section - Mobile kecil */
@media (max-width: 480px) {
  .about-image img {
    height: 250px;
  }
  
  .about-content h3 {
    font-size: var(--text-2xl);
  }
  
  .about-content p {
    font-size: var(--text-base);
  }
  
  .about-image-overlay {
    font-size: var(--text-base);
    padding: var(--space-1) var(--space-3);
  }
}

.about-card:hover .about-image img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: var(--text-lg);
}

.about-content {
  padding: var(--space-4);
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.about-content p {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-gray-700);
}

.about-features i {
  color: var(--color-primary);
  font-size: var(--text-sm);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
  color: var(--color-white);
}

.menu .section-subtitle {
  color: var(--color-gold);
}

.menu .section-subtitle::after {
  background: var(--color-gold);
}

.menu .section-title {
  color: var(--color-white);
}

.menu .section-description {
  color: var(--color-gray-400);
}

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

.filter-btn {
  padding: var(--space-3) var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.menu-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  max-height: 600px;
  overflow-y: auto;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(201, 169, 97, 0.3);
}

.menu-card::-webkit-scrollbar {
  width: 6px;
}

.menu-card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.menu-card::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

.menu-card::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-icon {
  font-size: var(--text-3xl);
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
}

.menu-category {
  margin-bottom: var(--space-6);
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.menu-item:hover {
  background: rgba(201, 169, 97, 0.1);
  transform: translateX(4px);
}

.item-name {
  font-size: var(--text-sm);
  color: var(--color-gray-300);
  flex: 1;
}

.item-price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold);
  margin-left: var(--space-4);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: var(--color-gray-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  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.1);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.caption-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.caption-text {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
  background: var(--color-white);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
  max-width: 1400px;
  margin: 0 auto;
}

.location-info {
  background: var(--color-gray-50);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.info-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-8);
}

.info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-text p {
  font-size: var(--text-base);
  color: var(--color-gray-600);
}

.info-text a {
  color: var(--color-primary);
  font-weight: 500;
}

.info-text a:hover {
  text-decoration: underline;
}

.location-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.location-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 150px;
}

.location-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo img {
  width: 120px;
  height: auto;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-base);
  color: var(--color-gray-400);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-6);
  color: var(--color-gold);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: var(--space-2);
}

.footer-contact li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}

.footer-contact i {
  color: var(--color-primary);
  margin-top: 4px;
}

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

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

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--color-white);
  transition: all var(--transition-base);
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  section {
    padding: var(--space-16) var(--space-6);
  }
  
  .about-card {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .about-card-reverse {
    direction: ltr;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .location-container {
    grid-template-columns: 1fr;
  }
  
  .location-map iframe {
    min-height: 350px;
  }
  
  .menu-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .menu-card {
    max-height: 550px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-8);
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-base);
  }
  
  .navbar.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--color-gray-700);
    font-size: var(--text-lg);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .hamburger {
    background: var(--color-gray-700);
  }
  
  .hero-content {
    padding: var(--space-4);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: var(--space-8);
  }
  
  .menu-cards {
    grid-template-columns: 1fr;
  }
  
  .menu-card {
    max-height: 500px;
    padding: var(--space-6);
  }
  
  .menu-filter {
    gap: var(--space-2);
  }
  
  .filter-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .footer-contact li {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .location-actions {
    flex-direction: column;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  section {
    padding: var(--space-12) var(--space-4);
  }
  
  .nav-container {
    padding: var(--space-3) var(--space-4);
  }
  
  .logo img {
    height: 45px;
  }
  
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
  }
  
  .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-xs);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .menu-cards {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .menu-card {
    padding: var(--space-4);
    max-height: 450px;
  }
  
  .menu-card-header {
    gap: var(--space-2);
  }
  
  .menu-icon {
    font-size: var(--text-2xl);
  }
  
  .menu-card h3 {
    font-size: var(--text-xl);
  }
  
  .menu-category-title {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
  }
  
  .menu-item {
    padding: var(--space-2) var(--space-3);
  }
  
  .item-name {
    font-size: var(--text-xs);
  }
  
  .item-price {
    font-size: var(--text-xs);
  }
  
  .menu-filter {
    gap: var(--space-2);
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
    min-width: 80px;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .back-to-top {
    bottom: var(--space-4);
    right: var(--space-4);
    width: 45px;
    height: 45px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { visibility: visible; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .back-to-top,
  .hero-scroll,
  .loading-screen {
    display: none;
  }
  
  body {
    background: var(--color-white);
    color: var(--color-black);
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-8);
  }
}
