/* Root Variables */
:root {
  --primary: #d32f2f;
  --secondary: #fbc02d;
  --accent: #66bb6a;
  --bg-light: #fffaf5;
  --section-bg: #fff3e0;
  --text-dark: #4e342e;
  --text-medium: #5e4037;
  --border-light: #e0e0e0;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  background: url('images/i1.png') center/cover no-repeat;
  position: relative;
  color: white;
  text-align: center;
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 900px;
}

.main-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--bg-light);
  text-shadow: 2px 2px 4px var(--primary);
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 10px;
  animation: fadeIn 1s ease-in-out;
}

/* .main-heading:hover {
  color: var(--secondary);
} */

.main-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  /* background: var(--accent); */
  border-radius: 2px;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-subtext {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 20px 0;
  font-weight:bold
}

.button-group {
  margin-top: 20px;
}

.button-group a {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 12px 20px;
  margin: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.button-group a:hover {
  background-color: var(--accent);
}

/* Navigation (Unused but Retained) */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: var(--section-bg);
  padding: 15px 0;
  font-size: 1.1rem;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: var(--accent);
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

h2:hover {
  transform: scale(1.05);
}

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

.menu-item {
  background: white;
  padding: 15px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.menu-item h3 {
  margin: 10px 0 5px;
  color: var(--text-medium);
  font-size: 1.5rem;
}

.menu-item p {
  /* margin: 5px 0; */
  color:black;
}

/* Contact Form */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

input, textarea {
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-dark);
}

label {
  font-weight: bold;
  color: var(--text-medium);
}

button {
  padding: 12px;
  background: var(--secondary);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

button:hover {
  background: var(--accent);
  color: white;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 5px;
  font-size: 0.95rem;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 3px;
  right: 5px;
  background: var(--accent);
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .hero-subtext {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 520px) {
  .main-heading {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
  .button-group a {
    padding: 10px 15px;
    margin: 5px;
  }
}