/* =============================================
   Fossette Café - Main Styles
   ============================================= */

/* CSS Variables */
:root {
  --primary: #15a8a4;
  --primary-dark: #128a87;
  --accent: #ff6b6b;
  --accent-gradient: linear-gradient(135deg, #ff6b6b, #ff8e53);
  --text: #333;
  --text-light: #555;
  --text-muted: #666;
  --bg: #f5f5f5;
  --white: #fff;
  --border: rgba(255, 255, 255, 0.2);
  --shadow: 0 8px 25px rgba(0,0,0,0.1);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100vw; min-height: 100vh; overflow-x: hidden; }
body { 
  line-height: 1.6; 
  color: var(--text); 
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
}
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
  font-weight: 600; 
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Focus States - Accessibility */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 25px rgba(255,107,107,0.5); transform: scale(1); }
  50% { box-shadow: 0 12px 40px rgba(255,107,107,0.8); transform: scale(1.05); }
}
@keyframes pulse-loyalty {
  0%, 100% { box-shadow: 0 10px 40px rgba(255,107,107,0.5); }
  50% { box-shadow: 0 10px 50px rgba(255,107,107,0.8); }
}
@keyframes pulse-install {
  0%, 100% { box-shadow: 0 10px 40px rgba(21,168,164,0.5); }
  50% { box-shadow: 0 10px 50px rgba(21,168,164,0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.animate-fade-in-up { animation: fadeInUp 0.8s ease-out; }
.animate-fade-in { animation: fadeIn 0.6s ease-out; }

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { width: 150px; height: 150px; animation: pulse 2s infinite; }
.loader-logo img { width: 100%; height: 100%; object-fit: contain; }

/* Lazy Loading */
img[data-src] { opacity: 1; transition: opacity 0.3s; }
img[data-src].loaded { opacity: 1; }

/* Dark Mode */
.dark-mode { background: #1a1a1a; color: #e0e0e0; }
.dark-mode header { background: rgba(26, 26, 26, 0.95); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.dark-mode #reservations { background: rgba(26, 26, 26, 0.8); }
.dark-mode .review { background: rgba(255, 255, 255, 0.1); }
.dark-mode h2 { color: #15a8a4; }
.dark-mode .about-content p { color: #b0b0b0; }
.dark-mode .contact-info p, .dark-mode .opening-hours p { color: rgba(255, 255, 255, 0.9); }
.dark-mode .featured-dish-overlay { background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.8) 60%, transparent 100%); }
.dark-mode .newsletter { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.dark-mode .newsletter-form input { background: rgba(255,255,255,0.1); color: white; }
.dark-mode .newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.dark-mode .loyalty-card { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); border: 1px solid rgba(255,255,255,0.1); }
.dark-mode .announcement-bar { background: linear-gradient(135deg, #0d5f5c, #0a4a48); }
.dark-mode footer { background: #111; color: #ccc; }
.dark-mode .footer-section h4 { color: var(--primary); }

/* Dark Toggle & Fixed Elements */
.dark-toggle {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: var(--radius);
  width: 50px;
  height: 50px;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(21,168,164,0.3);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark-toggle:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(21,168,164,0.4); }

.social-icons-fixed {
  position: fixed;
  top: 160px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
}
.social-icon-fixed {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  background: var(--bg);
}
.social-icon-fixed:hover { transform: scale(1.05); opacity: 0.9; }
.social-icon-fixed.facebook { background: #1877f2; }
.social-icon-fixed.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon-fixed img { width: 26px; height: 26px; filter: brightness(0) invert(1); }

/* Floating Particles */
.particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.particle { position: absolute; background: rgba(255, 255, 255, 0.3); border-radius: 50%; animation: float 6s infinite ease-in-out; }

/* Scroll Animations */
.scroll-animate { opacity: 1; transform: translateY(0); transition: all 0.8s ease; }
.scroll-animate.animate-in { opacity: 1; transform: translateY(0); }

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.announcement-scroll {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: scroll-announcement 20s linear infinite;
}
.announcement-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@keyframes scroll-announcement {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}
.announcement-bar a:hover {
  opacity: 0.9;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
header.scrolled {
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
header .logo:hover { transform: scale(1.05); }
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.logo img:hover { transform: rotate(360deg); }

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
nav a:hover { color: var(--primary); transform: translateY(-2px); }
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
nav a:hover::after { width: 100%; }

/* Order Online Button */
.order-online-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53) !important;
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
  transition: var(--transition);
  margin-left: 1rem !important;
}
.order-online-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(255,107,107,0.4) !important;
}
.order-online-btn::after { display: none !important; }

/* Loyalty Nav Button */
.loyalty-nav-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
.loyalty-nav-btn::after { display: none; }

/* Mobile Menu */
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--primary); margin: 3px 0; transition: 0.3s; }
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.mobile-nav a { display: block; padding: 1rem 2rem; border-bottom: 1px solid #eee; }
.mobile-nav a:hover { background: #f8f8f8; color: var(--primary); }
.mobile-nav.active { display: block; }

/* Hero Section */
.hero {
  background: url('../assets/images/background/background_1.png') center/cover no-repeat;
  background-attachment: scroll;
  width: 100vw;
  height: 90vh;
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s ease;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero.video-bg { background: none; }
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-content button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background: var(--accent-gradient) !important;
  backdrop-filter: blur(10px);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.5);
}
.btn-secondary {
  background: rgba(21, 168, 164, 0.9) !important;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(21, 168, 164, 1) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(21, 168, 164, 0.3);
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: white; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 50px;
  color: rgba(255,255,255,0.7);
  z-index: 10;
  transition: var(--transition);
}
.hero-arrow:hover { color: var(--primary); }
.hero-arrow.left { left: 30px; }
.hero-arrow.right { right: 30px; }

/* Sections */
section { padding: 4rem 2rem; max-width: 1200px; margin: auto; }
h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -1px;
}

/* About Section */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.about-text { flex: 1; }
.about-logo { flex: 0 0 500px; }
.about-logo img { width: 100%; height: auto; }
.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Featured Dish Section */
.featured-dish-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.featured-dish-container {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0,0,0,0.2);
}
.featured-dish-image { width: 100%; height: 100%; object-fit: cover; }
.featured-dish-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
  padding: 3rem;
  color: white;
  text-align: center;
}
.featured-tag {
  display: inline-block;
  background: var(--accent-gradient);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(255,107,107,0.5);
  animation: pulse-glow 2s infinite;
}
.featured-dish-overlay h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
  color: #fff;
  letter-spacing: 2px;
}
.featured-dish-overlay p {
  font-size: 1.3rem;
  opacity: 1;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.featured-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(21,168,164,0.5);
}
.featured-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(21,168,164,0.7);
}

/* Newsletter Section */
.newsletter {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 2rem;
  overflow: hidden;
  border-radius: 25px;
  margin: 2rem auto;
  max-width: 1000px;
}
.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-incentive {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}
.newsletter h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.newsletter-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 450px;
  margin: 0 auto 1.5rem;
}
.newsletter-form input {
  padding: 1rem 1.5rem;
  border: none;
  background: white;
  color: var(--text);
  font-size: 1rem;
  border-radius: 10px;
  outline: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.newsletter-form input:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 1rem 2rem;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.newsletter-form button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
#newsletter-message {
  display: none;
  margin-top: 1rem;
  font-weight: 600;
  padding: 0.8rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
}
#newsletter-message:not(:empty) { display: block; }
.privacy-notice {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Reviews Section */
.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--text);
}
.google-rating img {
  height: 24px;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.review {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.review:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.review p {
  margin-bottom: 1rem;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.review-info h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 2px;
}
.review-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.google-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
}

/* Contact Section */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.contact-info, .opening-hours { flex: 1; text-align: center; }
.contact-info h3, .opening-hours h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.contact-info p, .opening-hours p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}
.follow-text {
  font-weight: bold;
  color: var(--primary);
  font-size: 14px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}
.social-link:hover { transform: scale(1.05); opacity: 0.9; }
.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link img { width: 26px; height: 26px; filter: brightness(0) invert(1); }

/* Loyalty Program */
.loyalty-btn {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(255,107,107,0.5);
  z-index: 1001;
  transition: var(--transition);
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-loyalty 2s infinite;
}
.loyalty-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255,107,107,0.6);
}

/* Install App Button */
.install-app-btn {
  display: block;
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(21,168,164,0.5);
  z-index: 1001;
  transition: var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-install 2s infinite;
}
.install-app-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(21,168,164,0.6);
}

/* Loyalty Modal */
.loyalty-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
}
.loyalty-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 350px;
  color: white;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}
.loyalty-header { text-align: center; margin-bottom: 1.5rem; }
.loyalty-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.loyalty-subtitle { opacity: 0.9; font-size: 0.9rem; }
.punch-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; margin: 1.5rem 0; }
.punch {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}
.punch.filled { background: rgba(255,255,255,0.2); border-color: white; }
.loyalty-progress { text-align: center; margin: 1rem 0; }
.progress-text { font-size: 1.1rem; font-weight: 600; }
.reward-text { font-size: 0.9rem; opacity: 0.9; margin-top: 0.5rem; }
.close-loyalty {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Enhanced Footer */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 0;
  margin-top: 2rem;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-brand .logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.footer-brand p {
  color: #999;
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a.facebook { background: #1877f2; }
.footer-social a.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-social img { width: 20px; height: 20px; filter: brightness(0) invert(1); }

.footer-section h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 0.8rem;
}
.footer-section a {
  color: #999;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer-section a:hover { color: var(--primary); }
.footer-section p {
  color: #999;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  color: #666;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--primary); }
.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.payment-icons img {
  height: 28px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.payment-icons img:hover { opacity: 1; }

/* Reservation Form */
#reservations {
  background: rgba(250, 250, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
#reservations:hover { transform: translateY(-5px); }
.reservation-form-container { display: flex; gap: 3rem; align-items: flex-start; }
.customer-info, .time-selection { flex: 1; }
.reservation-title {
  text-align: center;
  font-size: 2rem;
  color: #111;
  margin-bottom: 2.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: bold;
}
label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text); }
select, input {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
select:focus, input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 168, 164, 0.1);
  transform: translateY(-2px);
}
.time-options { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1rem; }
.time-option {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.time-option.selected, .time-option:hover { background: #1b4840; }
button.reserve-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 1.2rem;
  font-size: 1.1rem;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(21, 168, 164, 0.3);
  transition: var(--transition);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}
button.reserve-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(21, 168, 164, 0.4);
}
#reservation-message { margin-top: 1rem; font-weight: 700; text-align: center; }

/* Menu Slider */
.menu-slider { position: relative; max-width: 800px; margin: 0 auto; }
.menu-slider img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: opacity 0.5s; }
.menu-nav { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.menu-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.3s; }
.menu-dot.active { background: white; }
.menu-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; width: 40px; height: 40px; cursor: pointer; font-size: 40px; color: rgba(255,255,255,0.7); z-index: 10; transition: var(--transition); }
.menu-arrow:hover { color: var(--primary); }
.menu-arrow.left { left: 20px; }
.menu-arrow.right { right: 20px; }
.menu-download { text-align: center; margin-top: 2rem; }
.download-btn { background: var(--primary); color: white; padding: 0.8rem 2rem; border-radius: 5px; text-decoration: none; transition: background 0.3s; }
.download-btn:hover { background: var(--primary-dark); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1000px; margin: 0 auto; }
.gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform 0.3s; }
.gallery img:hover { transform: scale(1.05); }
.gallery-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; }
.gallery-modal img { max-width: 90%; max-height: 90%; margin: auto; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.gallery-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; cursor: pointer; }

/* =============================================
   Responsive Styles
   ============================================= */

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  header { padding: 1rem; }
  .logo { font-size: 1.5rem; }
  .logo img { width: 35px; height: 35px; }
  section { padding: 2rem 1rem; }
  
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-arrow { width: 40px; height: 40px; font-size: 16px; }
  .hero-arrow.left { left: 10px; }
  .hero-arrow.right { right: 10px; }
  .hero { height: 70vh; }
  
  .about-content { flex-direction: column; text-align: center; }
  .about-logo { flex: 0 0 auto; max-width: 400px; }
  
  .featured-dish-container { height: 500px; }
  .featured-dish-overlay { padding: 2rem; }
  .featured-dish-overlay h2 { font-size: 2.5rem; }
  .featured-dish-overlay p { font-size: 1.1rem; }
  
  .newsletter h2 { font-size: 2rem; }
  
  .reviews { grid-template-columns: 1fr; }
  
  .contact-container { flex-direction: column; gap: 2rem; }
  
  .reservation-form-container { flex-direction: column; gap: 2rem; }
  #reservations { padding: 1rem; margin: 20px; }
  
  .gallery { grid-template-columns: repeat(2, 1fr); }
  
  /* Hide fixed social icons on mobile */
  .social-icons-fixed { display: none; }
  
  /* Smaller loyalty button on mobile */
  .loyalty-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    bottom: 15px;
    right: 15px;
    letter-spacing: 0.5px;
  }
  
  .install-app-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    bottom: 70px;
    right: 15px;
    letter-spacing: 0.5px;
  }
  
  .loyalty-card { width: 90%; max-width: 320px; padding: 1.5rem; }
  .punch-grid { gap: 0.6rem; }
  .punch { width: 45px; height: 45px; }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-brand { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-legal { justify-content: center; }
  .payment-icons { justify-content: center; }
  
  .announcement-bar {
    font-size: 0.85rem;
    padding: 10px 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .announcement-bar::-webkit-scrollbar {
    display: none;
  }
  .announcement-scroll {
    gap: 30px;
    animation: scroll-announcement 15s linear infinite;
  }
  .announcement-bar span {
    padding-right: 30px;
  }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.8rem; }
}

