/* ---------------------------
   Global Reset + Base Styles
---------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Comic Sans MS', 'Arial', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background: url('https://raw.githubusercontent.com/littlechefsbigadventures/littlechefsbigadventures/main/ChatGPT%20Image%20Aug%207%2C%202025%2C%2009_26_05%20AM.png') no-repeat center center fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  color: #fff;
  line-height: 1.6;
}

/* ---------------------------
   Section Defaults
---------------------------- */
section {
  scroll-margin-top: 120px;
}

section.section {
  padding: 5rem 2rem;
  margin-bottom: 3rem;
}

/* ---------------------------
   Navigation
---------------------------- */
.navbar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo h1 {
  font-size: 1.8rem;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd700;
}

/* ---------------------------
   Hero Section
---------------------------- */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  margin-bottom: 4rem;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: #ff9800;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
  background: #e68900;
  transform: scale(1.05);
}

/* ---------------------------
   Grid Layouts
---------------------------- */
.recipe-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.recipe-card,
.collection-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.recipe-card:hover,
.collection-card:hover {
  transform: translateY(-5px);
}

.recipe-card img,
.collection-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.recipe-card h3,
.collection-card h3 {
  margin-bottom: 0.5rem;
}

.recipe-card p,
.collection-card p {
  margin-bottom: 1rem;
}

.recipe-button {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.recipe-button:hover {
  background: #388e3c;
}

/* ---------------------------
   Mission Section
---------------------------- */
.mission-content {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.mission-content img {
  max-width: 100%;
  border-radius: 12px;
}

.mission-text {
  max-width: 600px;
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ---------------------------
   Follow / Social Section
---------------------------- */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.newsletter-form {
  text-align: center;
  margin-top: 3rem;
}

.newsletter-form h3 {
  margin-bottom: 1rem;
}

.newsletter-form input {
  padding: 0.5rem;
  margin: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 220px;
}

.newsletter-form button {
  background: #2196f3;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #1976d2;
}

/* ---------------------------
   Footer
---------------------------- */
footer {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 2rem;
  margin-top: 5rem;
}

footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #ffd700;
}
/* --- Responsive Nav Link Labels --- */
.nav-rpg-short {
  display: none;
}

@media (max-width: 768px) {
  .nav-rpg-full {
    display: none;
  }
  .nav-rpg-short {
    display: inline;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}
.fullscreen-game {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: black;
  padding: 0;
  margin: 0;
}

.fullscreen-game iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* Recipe Hero */
.recipe-hero {
  background: rgba(255,255,255,0.8);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.recipe-hero h1 {
  font-size: 2.5rem;
  color: #d32f2f;
}

.subheading {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Info Bar */
.recipe-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-block {
  background: rgba(255,255,255,0.7);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
}

/* Sections */
section.ingredients,
section.instructions,
section.why-it-works,
section.tips {
  background: rgba(255,255,255,0.8);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.ingredients h2,
.instructions h2,
.why-it-works h2,
.tips h2 {
  color: #d32f2f;
  margin-bottom: 1rem;
}

/* Lists */
ul, ol {
  margin-left: 1.5rem;
  line-height: 1.6;
}

/* Tips List */
section.tips ul li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  border-left: 3px solid #ff9800;
}

/* Responsive */
@media (max-width: 600px) {
  .recipe-info {
    flex-direction: column;
    align-items: center;
  }
}
