:root {
  --habun-red: #8B1D1D;
  --habun-gold: #D4AF37;
  --habun-gold-light: #F4E4BC;
  --habun-dark: #2A0A0A;
  --habun-cream: #FDF9F0;
  --habun-green: #2D5A27;
  --text-main: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --border: 1px solid rgba(212, 175, 55, 0.3);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--habun-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
header {
  background: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--habun-dark);
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--habun-gold);
}

.btn {
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.btn-outline {
  border: 2px solid var(--habun-gold);
  color: var(--habun-dark);
}

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

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(42, 10, 10, 0.7), rgba(42, 10, 10, 0.7)), url('./.documents/WhatsApp Image 2026-02-10 at 4.09.26 PM-98af32d0.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 140px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--habun-gold);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--habun-gold-light);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Ramadan Special Ribbon */
.ramadan-badge {
  background: var(--habun-gold);
  color: var(--habun-dark);
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--habun-red);
  margin-bottom: 10px;
}

.section-title .accent {
  width: 60px;
  height: 3px;
  background: var(--habun-gold);
  margin: 0 auto;
}

/* Menu Highlights */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.menu-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: var(--border);
}

.placeholder-image {
  width: 100%;
  height: 200px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-body h3 {
  margin-bottom: 10px;
  color: var(--habun-dark);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--habun-gold-light);
  color: var(--habun-red);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Locations & Tabs */
.location-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 15px 40px;
  background: var(--white);
  border: 2px solid var(--habun-gold);
  color: var(--habun-dark);
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  background: var(--habun-gold);
  color: var(--white);
}

.location-content {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--habun-red);
}

.location-details {
  list-style: none;
}

.location-details li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Iftar Near Sharjah Airport - Specialized SEO Section */
.airport-section {
  background: var(--habun-dark);
  color: var(--white);
  border-radius: 20px;
  padding: 60px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.airport-section h2 {
  color: var(--habun-gold);
}

.airport-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* SEO Content Blocks */
.seo-text {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border-left: 5px solid var(--habun-gold);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.faq-item h4 {
  margin-bottom: 10px;
  color: var(--habun-red);
}

/* Footer */
footer {
  background: var(--habun-dark);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--habun-gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #888;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 20px; }
.price-tag {
  font-size: 2rem;
  color: var(--habun-red);
  font-weight: 800;
}
.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.2rem;
}

/* New specific styles to reduce inline usage */
.hero-price {
  color: var(--habun-gold-light);
  margin-left: 15px;
}

.hero-kids {
  font-weight: 700;
}

.hero-btn-alt {
  color: white;
  border-color: white;
}

.location-img-fluid {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.airport-btn-outline {
  color: var(--habun-gold);
  border-color: var(--habun-gold);
}

.faq-section {
  background: var(--habun-gold-light);
}

.final-cta {
  background: var(--habun-red);
  color: white;
  text-align: center;
}

.final-cta-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.final-cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-link {
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .location-content { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
