/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logoicon{
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.logoicon img{
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

:root {
    --color-background: #ffffff;
    --color-text-primary: #111827;
    --color-text-secondary: #6b7280;
    --color-link: #2563eb;
    --border-radius: 0.75rem;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.05);
     --color-bg: #ffffff;
      --card-padding: 1.5rem;
      --gap: 100px;
  }
  
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #faf4f4;
}


/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 90px;
  background: #22c55e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: 5px;
  margin-bottom:5px;
  overflow: hidden;
  
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  font-size: 16px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #f4f5f4;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
} 
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  
}
.alert{
  color:red;
  margin-top: 10px;
  padding-top: 30px;
  font-size: 25px;

}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #22c55e;
    position: absolute;
    top: 100px; /* height of navbar */
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    z-index: 999;
  }

  .nav-links a {
    backdrop-filter: blur(10px);

    padding: 12px 10px;
    margin: 5px;
    display: block;
    color: white;
    font-size: 18px;
  }

  .nav-links.show {
    display: flex;
  }
}
/* ==== Media Query of Navbar ==== */
@media (max-width : 768px) {
  .navbar{
    height: 100px;
    width: 100%;
    
  }
  .logo{
    height: 80px;
    width:80px;
    border-radius: 50%;
   
  }
  .logo img{
    height: 100%;
    width: 100%;
   
  }
  
}
/* === HERO SECTION === */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 55px 50px;
  background: #ffffff;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-top: -1%;
}

.hero-left p {
  font-size: 20px;
  color: #555;
  margin-bottom: 8%;
  max-width: 600px;

}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.primary {
  background-color: #22c55e;
  color: white;
}

.primary:hover {
  background-color: #16a34a;
}

.secondary {
  background-color: transparent;
  border: 2px solid #22c55e;
  color: #22c55e;
}

.secondary:hover {
  background-color: #22c55e;
  color: white;
}

.hero-right {
  flex: 1;
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 400px;
  
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ==== Media Query for Hero Section ==== */

@media (max-width:768px) {
 
.hero{
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
}
.hero-left{
  margin-bottom: 20px;
}
.hero-left h1{
  font-size: 30px;
}
.hero-left p{
  font-size: 15px;
  margin-top: 10px;
}
.hero-buttons{
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
  .hero-right img{
    max-width: 100%;
  }
}


/* === Weekly Menu Styles === */
.menu-container {
  max-width: 1400px;
  margin: 60px auto;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu-title {
  text-align: center;
  color: #28a745;
  font-size: 32px;
  margin-bottom: 20px;
}

.week-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.day-card {
  background-color: #e4dfdf;
  padding: 10px;
  border-radius: 10px;
  flex: 1 1 200px;
  transition: 0.3s ease;
  text-align: center;
}

.day-card:hover {
  background-color: #e2e6ea;
  transform: translateY(-4px);
}

.day-name {
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.meal-list {
  font-size: 15px;
  color: #333;
  list-style: none;
  margin-top: 12px;
}


@media(max-width : 1024px){
  .week-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.day-card {
  background-color: #e4dfdf;
  padding: 10px;
  border-radius: 20px;
  flex: 1 1 300px;
  transition: 0.3s ease;
}


} 


/* qrcard */
.qr-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.qr-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 280px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.qr-card:hover {
  transform: translateY(-6px);
}
.qr-image:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

.qr-image {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
  align-items: center;
  align-self: center;
  
}
.qr-image img {
      width: 200px;
      height: 200px;
      margin-bottom: 25px;
      transition: transform 0.3s;
      border-radius: 12px;
      
    }
 .qr-image img:hover {
      transform: scale(1.05);
    }

h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #222;
}

p {
  font-size: 14px;
  color: #555;
}

.beta-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #f44336;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 4px;
}

.btn-qr{
  background-color: #25D366;
      color: white;
      border: none;
      padding: 14px 30px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
      transition:  0.3s ease, transform 0.2s ease;
}

.btn-qr:hover {
    background-color: #1ebe5d;
      transform: scale(1.02);
}

 .about-container {
      display: flex;
      flex-wrap: wrap;
      padding: 40px;
      max-width: 1400px;
      margin: auto;
      margin-top: 50px;
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 12px;
    }

    .about-image {
      flex: 1 1 250px;
      max-width: 300px;
      margin-right: 30px;
    }

    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .about-content {
      flex: 2 1 400px;
    }

    .about-content h1 {
      margin-top: 0;
      font-size: 2em;
      color: #2c3e50;
    }

    .about-content p {
      line-height: 1.6;
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      .about-container {
        flex-direction: column;
        padding: 20px;
      }

      .about-image {
        margin: 0 auto 20px;
        max-width: 100%;
      }

      .about-content {
        text-align: center;
      }
    }
  
/* ==== contact us ==== */
.contact-section {
  padding: 40px 20px;
}

.contact-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-left, .contact-right {
  flex: 1 1 50%;
  padding: 40px;
  box-sizing: border-box;
}

.company-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #ff6347;
}

.contact-left h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
}

.contact-left p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-card {
  display: flex;
  align-items: center;
  background: #fdfdfd;
  border-left: 5px solid #ff6347;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 28px;
  color: #ff6347;
  margin-right: 20px;
  min-width: 30px;
}

.contact-card h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #333;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ==== media query of contact us ==== */

@media (max-width: 768px) {
  .contact-section {
    width: 100%;
    padding: 30px 0px;
    box-sizing: border-box;
  }

  .contact-wrapper {
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
  
  }

  .contact-left, .contact-right {
    width: 100% !important;
    flex: 1 1 100%;
    padding: 20px 15px;
    box-sizing: border-box;
    text-align: center;
  }

  .company-logo {
    margin: 0 auto 20px;
    display: block;
  }

  .contact-card {
    text-align: left;
  }
}

@media (min-width :770px) and (max-width : 1024px) {
  .contact-section {
    width: 100%;
    padding: 30px 0px;
    box-sizing: border-box;
  }

  .contact-wrapper {
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
   
  }

  .contact-left, .contact-right {
    width: 100% !important;
    flex: 1 1 100%;
    padding: 20px 15px;
    text-align: center;
  }

  .company-logo {
    margin: 0 auto 20px;
    display: block;
  }

  .contact-card {
    text-align: left;
  }
}
