/* =========================================================
   GLOBAL STYLES (All Pages)
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================================
   HEADER & NAVIGATION (All Pages)
========================================================= */
header {
  background: #fff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.nav-left nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-left nav ul li a {
  text-decoration: none;
  color: #000;
  padding: 0.5rem 1rem;
  background-color: #eee;
  border-radius: 5px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.nav-left nav ul li a:hover {
  background-color: #c87400;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: bold;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* =========================================================
   ORANGE BANNER (All Pages)
========================================================= */
.orange-banner {
  background: #c87400;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  line-height: 1.4;
}

.orange-banner h1,
.orange-banner h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.orange-banner p {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.orange-banner span {
  font-style: italic;
  font-size: 1rem;
  display: block;
  margin-top: 1rem;
}

/* =========================================================
   IMAGES SECTION (All Pages)
========================================================= */
.images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.images img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.images img:hover {
  transform: scale(1.05);
}

/* =========================================================
   INFO SECTION (All Pages)
========================================================= */
.info-section {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.info-section h2 {
  font-size: 1.8rem;
  color: #c87400;
}

.subtitle {
  margin-bottom: 1rem;
  font-style: italic;
}

.info-boxes {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
  text-align: left;
  flex-wrap: wrap;
}

.info-boxes div {
  max-width: 300px;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-boxes div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* =========================================================
   FOOD PAGE STYLES
========================================================= */
.food-section {
  padding: 2rem;
  background: #fff;
  text-align: center;
}

.food-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #c87400;
}

.food-recipes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  padding: 1rem 0;
}

.recipe-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: left;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  position: relative;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.recipe-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.recipe-card h3 {
  color: #c87400;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Smooth toggle content */
.recipe-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.recipe-card.active {
  transform: scale(1.05);
  z-index: 100;
}

.recipe-card.active .recipe-content {
  max-height: 500px; /* adjust based on content */
  opacity: 1;
}

.recipe-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
}

/* =========================================================
   CONTACT US PAGE STYLES
========================================================= */
.contact-section {
  padding: 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: #c87400;
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-section .map {
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* =========================================================
   FOOTER (All Pages)
========================================================= */
footer {
  background: #222;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* =========================================================
   MEDIA QUERIES (Responsive)
========================================================= */

/* Tablets */
@media (max-width: 1024px) {
  .info-boxes div {
    max-width: 280px;
  }
  .food-recipes {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phones */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hamburger {
    display: block;
    color: #000;
    margin-top: 0.5rem;
  }

  .nav-left nav ul {
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 100%;
    margin-top: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem 0;

    /* hidden by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }

  .nav-left nav ul.show {
    max-height: 500px;
    opacity: 1;
  }

  .nav-left nav ul li {
    width: 100%;
    text-align: center;
  }

  .nav-left nav ul li a {
    display: block;
    padding: 0.8rem;
    border-radius: 0;
  }

  .food-recipes {
    grid-template-columns: 1fr;
  }

  .recipe-card {
    max-width: 100%;
  }
}

/* Small Phones / Portrait */
@media (max-width: 480px) {
  .orange-banner h2 {
    font-size: 1.6rem;
  }
  .orange-banner p {
    font-size: 0.95rem;
  }
  .nav-left nav ul li a {
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
  }
  .images img {
    width: 100%;
    height: auto;
  }
}
