@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #DE7B27; /* Dark Orange for buttons */
  --primary-hover: #C5681E;
  --secondary: #F4B371; /* Light Tan/Orange for Order Now button */
  --secondary-hover: #E39F5C;
  --bg-tan: #DFB160; /* Tan background for sections/cards */
  --bg-light-tan: #EAC98E; /* Lighter tan for some backgrounds */
  --bg-color: #FFFFFF;
  --surface: #FFFFFF;
  --text-main: #000000;
  --text-muted: #333333;
  --border: #EAEAEA;
  --maroon: #800000; /* For map pins */
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

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

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

/* Typography Utilities */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
  gap: 8px;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-hover);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #000;
  color: #000;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Layout Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }

/* Grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Card */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  border: 1px solid var(--border);
}

.card-tan {
  background-color: var(--bg-tan);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .nav-links {
  display: flex;
  gap: 32px;
  font-weight: 700;
  font-size: 0.95rem;
  align-items: center;
}

.navbar .nav-links a {
  text-transform: uppercase;
  color: #333;
}

.navbar .nav-links a.active {
  color: var(--primary);
}

.navbar .nav-links a:hover {
  color: var(--primary);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: black;
  text-transform: uppercase;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
}

/* Main Layout */
.main-content {
  min-height: 100vh;
  padding-top: 74px; /* offset for fixed navbar */
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url('/images/Dashboard.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 24px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  z-index: 2;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Menu Section */
.menu-section {
  padding: 64px 0;
}

.menu-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}

.menu-subtitle {
  text-align: center;
  font-weight: 600;
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.category-card {
  background-color: var(--bg-tan);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-img-container {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-img-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.category-desc {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 16px;
}

/* Branch Section */
.branch-section {
  padding: 64px 0;
}

.branch-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.3;
}

.city-badge {
  background-color: var(--bg-light-tan);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 48px;
}

.branch-card {
  background-color: var(--bg-tan);
  border-radius: var(--radius-md);
  padding: 32px 24px 24px;
  position: relative;
  text-align: center;
  margin-top: 24px;
}

.branch-marker {
  position: absolute;
  top: -24px;
  left: -24px;
  background-color: var(--maroon);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.branch-marker i {
  transform: rotate(45deg);
}

.branch-name {
  background-color: #EAC98E; /* Pinkish tan from mockup */
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  top: -16px;
}

.branch-address {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Utilities */
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 64px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-16 { margin-top: 64px; }
.w-full { width: 100%; }

/* Form Elements */
.input-field {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
  .navbar .nav-links { display: none; }
}
