:root {
  --primary: #c11e24; /* Red */
  --secondary: #273751; /* Dark Blue */
  --light-bg: #f9f9f9;
  --accent: #fff;
}

/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  background: var(--accent);
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Visible list items in Why Choose Amos Kitchen */
.why-choose ul li {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--secondary);
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.4s ease;
}

.logo span {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li a {
  color: var(--accent);
  margin: 0 15px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

nav ul li a:hover {
  animation: blink-red 0.4s ease 0s 2;
}

@keyframes blink-red {
  0%,100% { color: var(--accent); }
  50% { color: var(--primary); }
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Sidebar nav mobile */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    width: 250px;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  nav ul { flex-direction: column; gap: 20px; text-align: center; }
  nav ul li a { font-size: 1.2rem; }

  nav.active { right: 0; }

  .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); }

  header { padding: 15px 20px; }
}
.hero {
  position: relative;
  background: url('ramadan-celebration-with-delicious-food.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.hero .btn-primary {
  background-color: var(--primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover { background-color: #a01a1f; }

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(5px) brightness(0.6);
  z-index: 1;
}
.about {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 20px;
  background: var(--light-bg);
  align-items: center;
  gap: 20px;
}

.about-content { flex: 1 1 500px; }

.about-content h2 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.about-content p { font-size: 1.1rem; line-height: 1.8; }

.about-image { flex: 1 1 400px; text-align: center; }

.about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.why-choose {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}

.why-choose:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.why-choose h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.why-choose h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

.why-choose ul {
  list-style: none;
  padding-left: 0;
}

.why-choose ul li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-left: 25px;
  font-size: 1.05rem;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.why-choose ul li.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-choose ul li::before {
  content: "✔";
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 12px;
}

.why-choose ul li:hover {
  color: var(--primary);
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* Responsive */
@media(max-width:768px){
  .why-choose { margin-top: 30px; }
}
 
#menu-gallery {
  padding: 80px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.4s, filter 0.4s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.how-to-order {
  background: var(--light-bg);
  padding: 60px 20px;
  text-align: center;
}

.how-to-order h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.order-steps {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}

.order-steps li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 40px;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}

.order-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  font-weight: bold;
}

.order-steps { counter-reset: step-counter; }

.delivery-check {
  background: #f8f9fc;
  padding: 80px 20px;
  text-align: center;
}

.delivery-check .container { max-width: 500px; margin: auto; }

.delivery-check h2 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 2rem;
}

.delivery-check p { color: #333; margin-bottom: 20px; }

.check-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.check-box input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.check-box input:focus {
  border-color: var(--primary);
  outline: none;
}

.check-box button {
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.check-box button:hover { background: #a01a1f; }

#checkResult { margin-top: 20px; font-size: 1.1rem; font-weight: 600; }

/* Responsive */
@media (max-width: 600px) {
  .check-box { flex-direction: column; }
  .check-box input, .check-box button { width: 100%; }
}

.plans-section { padding: 50px 5%; text-align:center; }

.plans-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.plan-box {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 25px 20px;
  width: 275px;
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease;
  cursor: pointer;
}

.plan-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid var(--primary);
}

.plan-box h3 { margin-bottom: 15px; color: var(--primary); text-align: center; }
.plan-box p { text-align: center; font-size: .95rem; color: var(--secondary); }
.plan-box label { display: block; text-align: left; margin: 5px 0; cursor: pointer; font-size: .89rem; }

/* Square radio buttons */
.plan-box input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--primary);
  cursor: pointer;
  margin-right: 8px;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
}

.plan-box input[type="radio"]:checked::before {
  content: '';
  display: block;
  width: 10px; height: 10px;
  background: var(--primary);
  position: absolute;
  top: 2px; left: 2px;
  border-radius: 2px;
}

.plan-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5px 0;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
}

.plan-label input[type="radio"] { margin-bottom: 5px; margin-right: 5px; }

.offer-text, .price-text {
  display: block; text-align: center; width: 100%; font-weight: 700; margin-top: 2px;
}

.price-text { font-size: 1.2rem; color: var(--primary); }

/* Order Section */
.order-section {
  text-align: center;
  margin-top: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.order-section label { font-weight: bold; color: #273751; }

#mealCount {
  width: 120px;
  padding: 8px;
  font-size: 1rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 10px;
}

#totalDisplay {
  font-weight: 700;
  font-size: 1.2em;
  color: #c11e24;
  margin: 15px 0;
}

#orderButton {
  background-color: #273751;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

#orderButton:hover { background-color: #c11e24; }

.plan-calculator {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.plan-calculator h3 { color: var(--primary); margin-bottom: 15px; }

.plan-calculator label {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.plan-calculator input {
  width: 100px;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
}

.plan-calculator p { font-weight: 500; color: var(--secondary); margin: 5px 0; }

#orderNow {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#orderNow:hover { background: #b91c22; }
.plan-calculator {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.plan-calculator h3 { color: var(--primary); margin-bottom: 15px; }

.plan-calculator label {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.plan-calculator input {
  width: 100px;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
}

.plan-calculator p { font-weight: 500; color: var(--secondary); margin: 5px 0; }

#orderNow {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#orderNow:hover { background: #b91c22; }


#faq { padding: 60px 20px; }

.faq-item { margin-bottom: 15px; }

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--secondary);
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-question.active { background: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  background: #f4f4f4;
  border-radius: 0 0 10px 10px;
}
.contact-section {
  background: #fff;
  padding: 60px 20px;
  width: 100%;
  color: var(--secondary);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.contact-info { flex: 1 1 400px; }

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.contact-info p { font-size: 1rem; margin: 6px 0; }

.contact-info a { color: var(--primary); text-decoration: none; }

.contact-info a:hover { text-decoration: underline; }

.map { flex: 4 1 00px; width: 90%; height: 400px; max-width: 100%; margin-top: -10px; }

.map iframe {
  width: 7px;
  height: 90%;
  border: 0;
  border-radius: 4px;
}

/* Responsive Contact */
@media(max-width: 768px){
  .contact-container { flex-direction: column; }
  .contact-info { text-align: left; margin-bottom: 20px; }
}



.whatsapp-float {
  position: absolute; /* follows scroll */
  top: 200px; /* initial offset */
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 42px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 80px;
  background-color: #273751;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(10px);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float .tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #273751;
}

/* Responsive */
@media(max-width: 768px){
  .whatsapp-float { width: 50px; height: 50px; font-size: 28px; }
  .whatsapp-float .tooltip { right: 60px; font-size: 12px; }
}
.map iframe {
  width: 100%;
  height: 400px; /* default for desktop */
  border: 0;
  border-radius: 16px;
  margin-top: 30px;
}

/* Increase height on mobile */
@media (max-width: 768px) {
  .map iframe {
    height: 500px; /* taller for mobile */
  }
}

@media (max-width: 480px) {
  .map iframe {
    height: 400px; /* even taller for small phones */
  }
}


footer {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 25px 20px;
}
