/* ===========================
   SHA-GAREE'S SEAFOOD & WINGS
   Navy | Orange | White | Island Soul
   =========================== */

:root {
  --navy: #0D2B5E;
  --navy-dark: #081A3A;
  --orange: #E8671A;
  --orange-light: #F5841F;
  --white: #FFFFFF;
  --cream: #FFF8EE;
  --gold: #F5C842;
  --teal: #0E7C7B;
  --text: #1A1A2E;
  --text-light: #555;
  --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* DEMO BANNER */
.demo-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1000;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-anchor {
  font-size: 1.4rem;
  color: var(--orange);
}
.logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--orange); }
.nav-call {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700 !important;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1rem 2rem;
  gap: 1rem;
}
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #1A4A7A 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(232,103,26,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(14,124,123,0.1) 0%, transparent 40%);
}
/* Palm leaf decorative elements */
.hero::after {
  content: '🌴';
  position: absolute;
  right: -20px;
  top: 10%;
  font-size: 8rem;
  opacity: 0.08;
  transform: rotate(15deg);
}
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
}
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: var(--cream);
  border-radius: 100% 100% 0 0;
}
.wave1 {
  animation: wave 8s linear infinite;
  opacity: 0.3;
  background: rgba(232,103,26,0.3);
}
.wave2 {
  animation: wave 10s linear infinite reverse;
  opacity: 0.5;
  background: var(--cream);
  bottom: -10px;
}
@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  background: rgba(232,103,26,0.2);
  border: 1px solid var(--orange);
  color: var(--orange-light);
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.script-accent {
  font-family: 'Dancing Script', cursive;
  color: var(--orange-light);
  font-size: 1.1em;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,103,26,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-badge {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ===== VIBES STRIP ===== */
.vibes-strip {
  background: var(--orange);
  color: var(--white);
  padding: 14px 0;
  display: flex;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
}
.vibes-strip span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: scrollStrip 20s linear infinite;
  display: inline-block;
}
@keyframes scrollStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section-tag {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.center { text-align: center; }

/* ===== ABOUT TEASER ===== */
.about-teaser {
  padding: 6rem 2rem;
  background: var(--cream);
}
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #1A4A7A 100%);
  border-radius: 16px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  gap: 8px;
  position: relative;
}
.img-placeholder small {
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.7;
}
.about-img-block { position: relative; }
.island-flag {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(232,103,26,0.4);
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: var(--navy-dark);
  padding: 6rem 2rem;
}
.menu-section h2 { color: var(--white); }
.menu-section .section-tag { color: var(--orange-light); }
.menu-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.tab-btn {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp 0.4s ease; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.menu-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.menu-card:hover::before { transform: scaleX(1); }
.menu-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.menu-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.menu-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.price {
  color: var(--orange-light);
  font-weight: 700;
  font-size: 1.1rem;
}
.featured-card {
  border-color: var(--orange) !important;
  background: rgba(232,103,26,0.1) !important;
}
.flavor-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.flavor-list span {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.menu-note {
  margin-top: 3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ===== LEMONADE SECTION ===== */
.lemonade-section {
  background: linear-gradient(135deg, #0E7C7B 0%, #065A59 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.lemonade-section::before {
  content: '🍋';
  position: absolute;
  right: 5%;
  top: -10%;
  font-size: 12rem;
  opacity: 0.06;
}
.lemonade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lemonade-text h2 { color: var(--white); }
.lemonade-text .section-tag { color: var(--gold); }
.lemonade-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.lemonade-tagline {
  font-style: italic;
  font-weight: 600;
  color: var(--gold) !important;
  font-size: 1.05rem;
}
.lemonade-flavors {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.flavor-bubble {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  cursor: default;
  transition: transform 0.3s;
  line-height: 1.4;
  font-size: 0.95rem;
}
.flavor-bubble:hover { transform: scale(1.1) rotate(-3deg); }
.strawberry { background: radial-gradient(circle, #E8547A, #B5174E); box-shadow: 0 8px 25px rgba(232,84,122,0.4); }
.passion { background: radial-gradient(circle, #9B59B6, #6C3483); box-shadow: 0 8px 25px rgba(155,89,182,0.4); }
.mango { background: radial-gradient(circle, #F5C842, #E67E22); box-shadow: 0 8px 25px rgba(245,200,66,0.4); color: var(--navy-dark); }

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--cream);
  padding: 5rem 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-ph {
  background: linear-gradient(135deg, #ddd, #eee);
  border-radius: 12px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 2rem;
  gap: 6px;
  border: 2px dashed #ccc;
}
.gallery-ph small {
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--white);
  padding: 6rem 2rem;
}
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.info-icon {
  font-size: 1.4rem;
  width: 40px;
  text-align: center;
}
.info-block strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-block p, .info-block a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
}
.info-block a:hover { color: var(--orange); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-links h4, .footer-social h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-social a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom p + p { margin-top: 4px; }
.credit a {
  color: var(--orange);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .lemonade-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.8rem; }
  .about-teaser, .menu-section, .contact-section, .gallery-section, .lemonade-section {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
