/* ===== CLEANBITE - HOSPITALITY SOLUTIONS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

:root {
  --green-dark: #1a3d2b;
  --green-mid: #2d5a3f;
  --green-light: #3d7a55;
  --orange: #c8501a;
  --orange-light: #e06030;
  --gold: #c8a84b;
  --gold-light: #d4bc7a;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --shadow: 0 8px 32px rgba(26,61,43,0.18);
  --shadow-lg: 0 20px 60px rgba(26,61,43,0.25);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,75,0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26,61,43,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.nav-logo img { height: 52px; width: auto; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}

.nav-links a {
  color: var(--cream); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px;
  padding: 8px 14px; border-radius: 6px;
  transition: var(--transition); position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(200,168,75,0.12);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 75px; left: 0; width: 100%;
  background: var(--green-dark);
  border-top: 1px solid rgba(200,168,75,0.2);
  padding: 16px 0; z-index: 999;
  transform: translateY(-10px); opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-nav a {
  display: block; color: var(--cream); padding: 12px 24px;
  font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(200,168,75,0.08); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 130px 24px 70px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #1d4a30 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a84b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 16px; position: relative; }
.page-hero p { color: var(--gold-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block; background: rgba(200,168,75,0.2); border: 1px solid rgba(200,168,75,0.4);
  color: var(--gold); padding: 6px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-alt { background: var(--white); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--cream-dark); }

.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge {
  display: inline-block; color: var(--orange); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--green-dark); margin-bottom: 16px; }
.section-header p { color: var(--text-mid); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* Divider */
.divider { width: 60px; height: 3px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }
.divider-left { margin: 16px 0 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
  font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,80,26,0.35); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,168,75,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--orange); padding: 36px 24px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; max-width: 900px; margin: 0 auto; }
.stat-item .num { font-size: 2.4rem; font-weight: 700; color: var(--white); font-family: 'Playfair Display', serif; }
.stat-item .label { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; margin-top: 4px; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow); transition: var(--transition);
  border-bottom: 4px solid transparent; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold); margin-bottom: 20px;
}
.service-card h4 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }

/* ===== MENU TABS ===== */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 22px; border-radius: 50px; border: 2px solid var(--green-dark);
  background: transparent; color: var(--green-dark); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition); font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}
.tab-btn.active, .tab-btn:hover { background: var(--green-dark); color: var(--gold); border-color: var(--green-dark); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== MENU ITEMS ===== */
.menu-category { margin-bottom: 48px; }
.menu-category-title {
  font-size: 1.4rem; color: var(--green-dark); border-bottom: 2px solid var(--gold);
  padding-bottom: 10px; margin-bottom: 24px; font-family: 'Playfair Display', serif;
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.menu-item {
  background: var(--white); border-radius: 10px; padding: 16px 18px;
  border-left: 4px solid var(--orange); box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.menu-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.menu-item span { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); }
.menu-item .price { color: var(--orange); font-weight: 700; font-size: 0.9rem; white-space: nowrap; margin-left: 8px; }

/* ===== FOOD GALLERY ===== */
.food-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1;
  position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: rgba(26,61,43,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .overlay { opacity: 1; }

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--green-dark); border-radius: var(--radius-lg); padding: 40px;
  color: var(--white);
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-item h4 { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; font-family: 'Outfit', sans-serif; }
.contact-info-item p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--green-dark); font-size: 0.9rem; }
.form-control {
  width: 100%; padding: 13px 16px; border-radius: 8px;
  border: 2px solid #e0d9cc; background: var(--cream);
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--text-dark);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--green-dark); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ===== MAP ===== */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 420px; border: none; display: block; }

/* ===== ABOUT ===== */
.about-text p { font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; }
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.feature-list li:last-child { border: none; }
.feature-list .check { color: var(--orange); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ===== WHY US ===== */
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: rgba(200,168,75,0.4); }
.why-card .icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

/* ===== POLICY SECTION ===== */
.policy-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); margin-bottom: 24px;
  border-left: 5px solid var(--green-dark);
}
.policy-card h3 { color: var(--green-dark); margin-bottom: 12px; font-size: 1.2rem; }
.policy-card p { color: var(--text-mid); line-height: 1.7; font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-card .stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-card .author { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, var(--green-dark) 0%, #111f17 100%);
  color: var(--white); padding: 72px 24px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding-bottom: 48px; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; }
.footer-col h5 {
  color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; font-family: 'Outfit', sans-serif; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item .ic { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  font-size: 0.85rem; transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 44px; height: 44px; background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  opacity: 0; pointer-events: none; box-shadow: 0 4px 16px rgba(200,80,26,0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); background: var(--orange-light); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form, .contact-info-card { padding: 28px 20px; }
  .page-hero { padding: 110px 20px 56px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .menu-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: 0.82rem; }
  .food-gallery { grid-template-columns: repeat(2, 1fr); }
  .btn { padding: 11px 20px; font-size: 0.88rem; }
}

/* ===== HERO HOME SPECIFIC ===== */
.home-hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1d4a30 50%, #0f2a1d 100%);
  position: relative; overflow: hidden; padding: 100px 24px 60px;
}
.home-hero::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-text .badge {
  display: inline-block; background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.35);
  color: var(--gold); padding: 7px 20px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 12px;
  line-height: 1.1;
}
.hero-text h1 em { color: var(--gold); font-style: normal; font-family: 'Dancing Script', cursive; font-size: 1.15em; }
.hero-text p { color: rgba(255,255,255,0.78); font-size: 1.1rem; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img img {
  width: 100%; height: auto; max-height: 520px; object-fit: contain;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hero-img-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--orange); color: var(--white); border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow);
}
.hero-img-badge .big { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.hero-img-badge .small { font-size: 0.75rem; font-weight: 500; opacity: 0.9; margin-top: 2px; }

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-img { order: -1; }
  .hero-img img { height: 280px; }
  .hero-img-badge { left: 16px; bottom: 16px; }
}
