/* Reset & Base */
:root {
  /* Primary Greens (Broccoli sprout vibe) */
  --primary-green: #4CAF50;
  --primary-green-light: #81C784;
  --primary-green-dark: #2E7D32;
  
  /* Accent Colours (Fun pops for babies/veggies) */
  --accent-orange: #FF9800;     /* Carrot/energy */
  --accent-yellow: #FFEB3B;     /* Banana/sunshine */
  --accent-purple: #f9f4fe; 
  --accent-purple-darker: #e0c5fa;  
  --accent-purple-medium: #ecddfe;

  /* Neutrals (Clean, readable) */
  --neutral-white: #FFFFFF;
  --neutral-light: #F5F9F5;
  --neutral-gray: #E8F5E8;
  --neutral-dark: #2C3E2F;
  --text-dark: #1B5E20;
  --background: #f9fafb;

  /* Charcoal Text Family */
  --text-charcoal: #333333;
  --text-charcoal-light: #666666;
  --text-charcoal-dark: #1a1a1a;
  --text-charcoal-hover: #999999;  /* Even lighter gray for nav hover */
  
  /* Status Colours */
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #F44336;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), #FFB74D);

  /* Fonts */
  --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans), Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: var(--background);
}


/* Header */
.site-header {
  color: white;
  padding: 1rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 5;
  position: relative;
  top: 0px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0;
}

.logo {
  width: 50px;
  height: auto;
  
  flex-shrink: 0;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-charcoal-dark);
  text-align: center;
  text-wrap: nowrap;
  margin: 0 0;
  white-space: nowrap;
  
}

.logo-title-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;  /* Keep title color */
}

.logo-title-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;  /* Space between logo/title */
}


.primary-nav ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  gap: 1rem;
  
  /* height: 60px; */
}

.primary-nav ul li {
    
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    height: 3rem;
}

.primary-nav a {
  color: var(--text-charcoal-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  
  text-wrap: nowrap;
}

.primary-nav .active {
    background: var(--accent-purple-medium);
}

.primary-nav li:hover:not(.active) {
  background: rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .header-container {
    justify-content: center;
  }
  
  /* HIDE NAV COMPLETELY on small screens */
  .primary-nav {
    display: none !important;
  }
}


/* Main */
main {
  max-width: 1200px;
  margin: 0 auto;
}

/* Home Page */

/* Welcome Section */


.welcome-section {
  margin: 2rem auto;
  padding: 0.5em;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  background-color: var(--accent-purple);
  flex-wrap: wrap;
  border-radius: 10px;
  
}


.welcome-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 0.25em;
  max-width: 50%;
  
}

.welcome-text > * {
  
  margin-left: 1rem;
}

.welcome-section h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem;
  line-height: 2rem;
  color: var(--text-charcoal-dark);
  margin: 0;
  padding: 1rem;
  
}

.welcome-section p {
  font-size: 1rem;
  color: var(--text-charcoal-light);
  text-align: left;
}

.header-image {
    max-width: 40%;
    min-width: 300px;
    border-radius: 10px;
    height: auto;
    margin: 1.5rem 1rem;
    box-shadow: -5px 5px 10px var(--text-charcoal-hover);
}

.welcome-image {
    max-width: 40%;
    min-width: 350px;
    border-radius: 10px;
    height: auto;
    margin: 1rem 0;
    box-shadow: -5px 5px 10px var(--text-charcoal-hover);
    /* display: block; */
    
}

.welcome-btns {
  
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.welcome-section button {
  background: var(--primary-green);
  color: white;
  border: none;
  width: 200px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: -5px 5px 10px var(--text-charcoal-hover);
}

.welcome-section button#get-started-btn {
  background: var(--primary-green-dark);
}

.welcome-section button:hover {
  /* background: var(--primary-green-dark); */
  transform: translate(2px, -2px);
  box-shadow: 0 8px 25px rbga(76, 175, 80, 0.4);
}


/* Info Sections */

.info-section {
  text-align: center;
  margin: 2rem auto;
  border-radius: 10px;
  /* border: 1px solid firebrick; */
}

.info-description {
  /* border: 1px solid firebrick; */
  background-color: var(--neutral-white);
  margin: 0rem 0rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-radius: 10px;
}

.info-description h2 {
  font-size: 2rem;
  font-weight: 500;
}

.info-sub {
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem;
}

.info-blocks {
  
  display: flex;
  justify-content: space-evenly;
  gap: 0.5rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.info-item {
  
  border-radius: 10px;
  border: 1px solid var(--neutral-dark);
  background-color: var(--neutral-white);
  box-shadow: 5px 5px 10px var(--neutral-dark);
  padding: 1rem;
  width: 250px;
  transition: all 0.3s ease;
  margin: 1rem;
}

.info-item p {
  font-size: 1rem;
}

.info-item:hover {
  transform: scale(1.05);
}


/* Begin Section */

.begin-section {
  margin: 0;
  padding: 0.5em;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  background-color: var(--accent-purple);
  flex-wrap: wrap;
  /* box-shadow: 0px 10px 10px var(--accent-purple-darker); */
  border-radius: 10px;
  
}

.begin-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: left;
  gap: 0.25em;
  
  max-width: 50%;
}

.begin-section h2 {
  text-align: center;
  align-self: center;
  /* font-size: 1.5rem; */
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem;
  line-height: 2rem;
  color: var(--text-charcoal-dark);
  margin: 0;
  padding: 1rem;
  
}

.number {
  padding: 1rem;
  background: #d53696;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--neutral-light);
  font-weight: 600;
  text-align: center;
}


.begin-section h3 {
  font-size: 1.2rem;;
}

.begin-section > p {
  font-size: 1rem;
  color: var(--text-charcoal-light);
  text-align: left;
  
}

/* .begin-image-container {
  border: 2px solid firebrick;
  max-width: 40%;
  min-width: 300px;
  padding: 0;
} */

.begin-image {
    max-width: 40%;
    min-width: 350px;
    border-radius: 10px;
    height: auto;
    box-shadow: 5px 5px 10px var(--text-charcoal-hover);
    /* display: block; */
    
    margin: 2rem 0;
}

.begin-btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  background: var(--primary-green);
  color: white;
  border: none;
  width: 200px;
  padding: 0.5rem 1rem;
  margin: 2rem 0;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 5px 5px 10px var(--text-charcoal-hover);
  transition: all 0.3s ease;
}

.begin-btn:hover {
  background: var(--primary-green-dark);
  transform: translate(2px, -2px);
}

/* Start Section */

.start-section {
  background: linear-gradient(to right, #d53696, #9748ff);
  padding: 2rem;
  margin: 2rem 0 2rem 0;
  color: var(--neutral-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-radius: 10px;
  box-shadow: 0px 10px 10px  var(--accent-purple-darker);
}

.start-section h2 {
  text-align: center;
  align-self: center;
  font-size: 2rem;
  font-weight: 500;
  padding: 2em;
  line-height: 2rem;
  margin: 0;
  padding: 1rem;
  text-shadow: 2px 2px 10px var(--neutral-light);
  
}

.start-section > p {
  
}

.start-btns {
  
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.start-btns button {
  background: #d53696;
  color: white;
  border: none;
  width: 200px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#safety-btn {
  background-color: var(--neutral-white);
  color:#d53696;
  box-shadow: 5px 5px 10px var(--text-charcoal-dark);
  border: 1px solid #d53696;
}

#safety-btn .icon {
  /* border: 2px solid #d53696; */
}

#recipe-btn {
  box-shadow: 5px 5px 10px var(--text-charcoal-dark);
}

.start-btns button:hover {
  /* background: var(--primary-green-dark); */
  transform: translate(2px, -2px);
}


/* Footer */

.site-footer {
  background: var(--neutral-white);
  color: var(--neutral-dark);
  padding: 1rem;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.2rem;
}

.footer-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

#footer-logo {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  
  width: 100%;
}

.footer-desc {
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align-items: center; */
  gap: 0.5rem;
}

.footer-text h3 {
  font-size: 1.1rem;
}

.footer-text p {
  font-size: 0.9rem;
}

.important-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
  gap: 0.5rem;
}

.horizontal-rule {
  border-bottom: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.copyright {
  
  text-align: center;
  margin: 10px;
  color: var(--text-charcoal-hover)
}

/* Icon */
.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-purple);
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: inline-block;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: #4CAF50; /* Green brand color */
}







/* Getting Started Page */

/* Getting Started Title Section */

.getting-started-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin: 2rem auto; */
}


.getting-started-title {

  padding: 2rem;
  width: 100%;
}

.getting-started-title h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 0;
}

.getting-started-title p {
  font-size: 1rem;
  margin: 1rem 0;
}

/* Signs Baby Ready Section */

.signs-baby-ready {
  
  width: 100%;
  background: var(--neutral-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  gap: 1rem;
  padding: 1rem;
  width: 90%;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signs-baby-ready img {
  background: #81C784;
  color: white;
}

.ready-info {
  
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem
}

.ready-info p {
  color: var(--text-charcoal-light)
}

.info-card-content {
  display: flex;
  flex-direction: column;
}

.info-card {
  
  background-color: #f4fdf4;
  width: 100%;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2em;
  height: 10rem;
  width: 90%;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: scale(1.05);
}


/* Tool-Tips Section */

.tool-tips {
  width: 90%;
  border-radius: 10px;
  margin: 1rem;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
}

/* Core Principles Tab */

.core-prin, .techniques, .first-foods, .setup-tips {
  background: var(--neutral-white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem;
}

.core-prin p, .techniques p, .first-foods p, .setup-tips p {
  color: var(--text-charcoal-light)
}

.tab-title {
  /* margin: 2rem 0; */
}

.core-prin-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bordered-tip {
  /* border: 2px solid black; */
  border-radius: 30px;
  padding: 0.1rem;
  width: 30%;
  min-width: 10rem;
  text-wrap: nowrap;
  text-align: center;
  background-color: #eceef2;
  transition: all 0.3s ease;
  /* align-self: center; */
}

.bordered-tip:hover {
  transform: scale(1.1);
}


/* Techniques Tab */

/* #techniques {
  background: var(--neutral-white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem;
} */

.techniques-card {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.techniques-card ul {
  
  list-style-position: inside;
  border-radius: 10px;
  background-color: #eceef2;
  padding: 1rem;
  transition: all 0.3s ease;
}

.techniques-card ul:hover {
  transform: scale(1.02);
}

.warning {
  background-color: var(--accent-purple);
  display: flex;
  padding: 1rem;
  gap: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.warning p {
  color: var(--text-charcoal-light);
}

.warning:hover {
  transform: scale(1.02);
}


/* First Foods Tab */

.first-foods-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f4fdf4;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.first-foods-card ul {
  
  list-style-position: inside;
  transition: all 0.3s ease;
}

.first-foods-card:hover {
  transform: scale(1.02);
}

.warning-title {
  
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#allergens-warning {
  background-color: #eccdcd;
}

.warning:hover {
  transform: scale(1.02);
}

.allergens-cards ul {
  list-style-position: inside;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}

.allergens-cards ul li {
  background-color: #eceef2;
  width: 30%;
  min-width: 150px;
  text-align: center;
  border-radius: 30px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.allergens-cards ul li:hover {
  background-color: #eccdcd;
  transform: scale(1.1);
}


/* Setup Tips */

.equipment-card, .environment-card, .pro-tips {
  margin: 1rem 0;
}

.equipment-card, .environment-card {
  background-color: #eceef2;
}

/* .equipment-card .icon, .environment-card .icon {
  background-color: #eceef2;
} */

.equipment-card p, .environment-card p {
  font-size: 0.9rem;
}

.pro-tips-card ul {
  list-style-position: inside;
  /* padding: 1rem; */
  font-size: 0.9rem;
  color: var(--text-charcoal-light)
}


/* Tab Control */

.tabs-section {
  max-width: 800px;
  margin: 1rem 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Hide radio buttons */
input[type="radio"] {
  display: none;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  background: var(--accent-purple);
  border-bottom: 2px solid var(--accent-purple-darker);
  border-radius: 10px 10px 0 0 ;
}

.tab-btn {
  flex: 1;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-charcoal-light);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  background: var(--accent-purple-darker);
  color: var(--text-charcoal-dark);
}

/* Active Tab */
#tab1:checked ~ .tab-buttons .tab-btn:nth-child(1),
#tab2:checked ~ .tab-buttons .tab-btn:nth-child(2),
#tab3:checked ~ .tab-buttons .tab-btn:nth-child(3),
#tab4:checked ~ .tab-buttons .tab-btn:nth-child(4) {
  color: var(--primary-green);
  border-bottom-color: var(--primary-green);
  background: white;
}

/* Tab Panels */
.tab-panel {
  display: none;
  padding: 2rem;
}

#tab1:checked ~ .tab-content .tab-panel:nth-child(1),
#tab2:checked ~ .tab-content .tab-panel:nth-child(2),
#tab3:checked ~ .tab-content .tab-panel:nth-child(3),
#tab4:checked ~ .tab-content .tab-panel:nth-child(4) {
  display: flex;
}


/* Timeline Section */

.timeline {
  
  /* width: 100%; */
  background: var(--neutral-white);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  gap: 1rem;
  padding: 1rem;
  width: 90%;
  margin: 2rem;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
}

.timeline-info-card {
  
  /* width: 100%; */
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin: 1rem;
  background-color: var(--accent-purple);
  border-radius: 10px;
  box-shadow: 0 10px 10px var(--accent-purple-darker);
}

.timeline-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 1rem;
  /* border: 2px solid firebrick */
}

.timeline-date h3 {
  background-color: var(--accent-purple-darker);
  padding: 0.3rem;
  border-radius: 30px;
  text-align: center;
  text-wrap: nowrap;
  font-size: 1.2rem;
}

.timeline-date h3 {
  
}

.vr {
  width: 4px;
  height: 100%;
  /* background-color: linear-gradient(to bottom, #d53696, #9748ff); */
  margin: 0.5rem auto 0;
  border-radius: 10px;
  border: 2px solid var(--accent-purple-darker);
}

.timeline-info p {
  color: var(--text-charcoal-light)
}


.timeline-card-content {
  
  background-color: var(--neutral-white);
  /* width: 100%; */
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.timeline-card-content .bordered-tip {
  /* background-color: var(--accent-purple-darker); */
}




/* Recipes Page */


.recipes-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  
}

.recipe-nav {
  
  width: 90%
}

.recipe-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-self: center;
  list-style: none;
  gap: 3rem;
  margin: 2rem auto;
  width: 100%;
  
  /* height: 60px; */
}

.recipe-nav ul li {
    
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    height: 3rem;
    background-color: #eceef2;
    width: 60%;
}

.recipe-nav a {
  color: var(--text-charcoal-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  
  text-wrap: nowrap;
}

.recipe-nav li:hover {
  background-color: var(--text-charcoal-hover);
}

.recipes-title {
  
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.recipes-title h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 0;
}

.recipes-title p {
  font-size: 1rem;
  color: var(--text-charcoal-light);
}

.recipes-title-image {
  width: 90%;
  margin-top: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
  
}

.month-section {
  
  margin: 2rem auto;
  padding: 0.5rem;
  width: 95%;
  background-color: var(--accent-purple);
}

.recipes-info-title {
  align-self: flex-start;
  padding: 0.5em 1rem;
  margin: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.recipes-info-title p {
  color: var(--text-charcoal-light);
}

/* .four-months-tab {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
} */



/* Recipe Card */

.recipe-card {
  background: var(--neutral-white);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  gap: 0.2rem;
  padding: 1rem;
  width: 45%;
  min-width: 400px;
  margin: 1rem auto;
  margin-top: 0; 
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
  transition: all 0.3s ease;
}

.recipe-card:hover {
  transform: scale(1.01);
}

.recipe-name {
  
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.recipe-name h3 {
  
  /* margin-bottom: 1rem; */
}

.recipe-name-diff {
  display: flex;
  justify-content: space-between;
}

.difficulty {
  
  align-self: flex-end;
  max-width: 20%;
}

.difficulty:hover {
  transform: none;
}

.recipe-info {
  
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-charcoal-hover);
  margin: 0.5rem;
}

.recipe-card .horizontal-rule {
  margin: 1rem;
}

.recipe-info-content {
  display: flex;
  gap: 0.2rem;
}

.recipe-info img {
  background-color: var(--neutral-white);
  width: 20px;
  height: 20px;
  padding: 0.1rem;
}

.recipe-ingredients, .recipe-instructions {
  
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0.2rem;
}

.recipe-ingredients ul, .recipe-instructions ol, .recipe-tips {
  /* list-style-position: inside; */
  padding: 0.5rem  1rem;
}

.recipe-ingredients li, .recipe-instructions li, .recipe-tips li {
  /* list-style-position:initial; */
  padding: 0.1rem  0.2rem;
  margin: 0 0.5rem;
}

.recipe-instructions {

}

.recipe-tips {
  margin: 1rem 0;
  align-self: center;
  background-color: #f0f6fe;
  font-size: 0.9rem;
  width: 100%;
  height: auto;
  margin: auto 0;
  /* justify-self: flex-end; */
  /* padding: 2rem; */
  
}

.recipe-tips:hover {
  transform: none;
}

.recipe-tips h3 {
  
  margin: 0;
  /* color: var(--text-charcoal-light) */
}

.recipe-tips ul {
  /* list-style-position: inside; */
  color: var(--text-charcoal-hover);
  font-size: 0.8rem;
  padding: 0;
  
}

.recipe-cards {
  
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.recipe-card li::marker {
  color: var(--accent-purple-darker)
}

@media (max-width: 900px) {
  .recipe-card {
    width: 90%;
  }
}

/* Recipe Jump Menu */
.recipe-jump {
  text-align: center;
  padding: 2rem;
  background: var(--accent-purple);
  border-radius: 10px;
  margin: 1rem auto;
  max-width: 400px;
}

.recipe-jump select {
  padding: 0.75rem ;  /* Right padding for arrow */
  border-radius: 8px;
  border: 2px solid var(--primary-green);
  font-size: 1rem;
  background: white;
  width: 100%;
  max-width: 300px;
  text-align: center;
  
  /* CROSS-BROWSER FIX */
  -webkit-appearance: none;     /* Safari/Chrome */
  -moz-appearance: none;        /* Firefox */
  appearance: none;             /* Modern */
  
  /* Custom arrow */
  /* background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em; */
}


/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-green);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
  font-weight:900;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(76,175,80,0.4);
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

#back-to-top h2 {
  margin: 0 auto;
  
  /* padding-bottom: 0.4rem; */
}

#back-to-top:hover {
  background: var(--primary-green-dark);
  transform: scale(1.1);
}




/* Safety Page */

/* Title */
.safety-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.safety-title {
  
  padding: 2rem 0;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.safety-title p {
  margin-left: 3.5rem;
  color: var(--text-charcoal-light)
}

.title-and-image {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Emergency box */
/* Emergency Preparedness */

.emergency-box, .emergency-preparedness {
  border: 1px solid red;
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: #fbf2f1;
  width: 90%;
  border-radius: 10px;
}

.emergency-box img, .emergency-preparedness img {
  
  margin: 0 0 0 1rem;
  background-color: red;
  border: none !important;
}

.warning-info, .preparedness-info {
  
  font-size: 0.8rem;
  padding: 0.5rem;
}

.warning-info h3, .preparedness-info h3, .preparedness-info p {
  color: #6f1e20;
}

.warning-info p, .preparedness-info li {
  color: #870A18;
}

.preparedness-info h3, .preparedness-info p, .preparedness-info li {
  font-size: 1.2em;
  margin-left: 2em;
}

.emergency-preparedness img {
  margin-left: 2em;
  /* border: 2px solid; */
}

.preparedness-info ul {
  list-style-position: inside;
}

/* Gagging vs Choking */

.gagging-vs-choking, .safe-food-chars, .high-risk-foods {
  
  width: 100%;
  background: var(--neutral-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  gap: 1rem;
  padding: 1rem;
  width: 90%;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
}

.gagging-vs-choking img {
  background: #81C784;
  color: white;
  border: none !important;
}

.gagging-vs-choking-title {
  
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.gagging-vs-choking p {
  color: var(--text-charcoal-light)
}

.gagging-vs-choking-info {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  /* width: 100% */
}

.gagging-box-title, .choking-box-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0;
  
}

.gagging-box-title {
  margin: 2em 0;
}

.gagging-box, .choking-box{
  /* border: 2px solid blue; */
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 30em;
  width: 45%;
  /* flex-wrap: wrap; */
  border-radius: 10px;
  & ul {
    list-style-position: inside;
  }
}

.gagging-box {
  background-color: #f3fdf5;
  border: 1px solid green;
}

.choking-box {
  background-color: #fbf2f1;
  border: 1px solid red;
  & img {
    background-color: red;
  }
}

.important-info-box {
  background-color: #fefce8;
  font-size: 0.9rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #faf08b;
}

.gagging-box ul, .choking-box ul {
  color: var(--text-charcoal-light)
}


/* Safe food characteristics */

.safe-food-chars {
  
  gap: 0.2rem
}

.safe-food-chars-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  
  gap: 1rem;
  margin-bottom: 2rem;
  color: #46813e;
}

.safe-food-chars img {
  background-color: #6ac85a;
  align-self: flex-start;
  border: none !important;
  /* border: 2px solid blue; */
}

.safe-food-char-info {
  /* border: 2px solid blue; */
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem
}

.safe-food-chars p {
  
  align-self: flex-start;
  margin: 0 3.5rem;
}

/* High risk foods */

.high-risk-foods {
  
  gap: 0.2rem
}

.high-risk-foods-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  
  gap: 1rem;
  margin-bottom: 2rem;
  color: #a50008;
}

.high-risk-foods img {
  background-color: #d83039;
  align-self: flex-start;
  border: none !important;
  /* border: 2px solid blue; */
}

.high-risk-foods-info {
  /* border: 2px solid blue; */
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem
}

.high-risk-foods p {
  
  align-self: flex-start;
  margin: 0 3.5rem;
}


/* Creating a safe environment */
/* How to modify high-risk foods */

.safe-environment, .modify-high-risk-foods {
  
  width: 100%;
  background: var(--neutral-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  gap: 1rem;
  padding: 1rem;
  width: 90%;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
}

.safe-environment-title, .modify-title {
  align-self: flex-start;
  padding: 1rem 2rem;
}

/* .signs-baby-ready img {
  background: #81C784;
  color: white;
} */


.safe-environment p, .modify-high-risk-foods p {
  color: var(--text-charcoal-light)
}

.safe-environment-info, .modify-info {
  
  background-color: #eceef2;
  border: 2px solid var(--text-charcoal-hover);
  width: 100%;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  /* height: 10rem; */
  width: 90%;
  transition: all 0.3s ease;
}

.safe-environment-info-title, .modify-info-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.safe-environment-info ul {
  list-style-position: inside;
}

.modify-info {
  background-color: var(--accent-purple);
  border: 2px solid var(--accent-purple-darker)
}





/* Resources Page */

.resources-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

  /* Title section */
.resources-title {
  
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
}

.resources-title img {
  width: 5em;
  height: 5em;
  padding: 1em;
}

.resources-title h2 {
  font-size: 2em;
  font-weight: 600;
}

.resources-title p {
  color: var(--text-charcoal-light);
  margin: 1em;
}

  /* FAQ section */
.faq-section, .milestones-section {
  
  background: var(--neutral-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 1rem;
  max-width: 90%;
}

.faq-title {
  display: flex;
  gap: 1rem;
  margin: 0.5rem;
}

.faq-section p {
  color: var(--text-charcoal-light);
  margin: 0.5rem;
}

.faq-item {
  
  border-bottom: 1px solid var(--accent-purple-darker);
  margin-bottom: 1rem;
}

.faq-item input[type="checkbox"] {
  display: none;  /* Hide checkbox */
}

.faq-question {
  display: block;
  width: 100%;
  padding: 1rem;
  font-weight: 600;
  color: var(--text-charcoal-dark);
  cursor: pointer;
  background: var(--accent-purple);
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.faq-question:hover {
  background: var(--accent-purple-darker);
}

.faq-answer {
  
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item input:checked + .faq-question {
  background: var(--primary-green);
  color: white;
  border-radius: 10px 10px 0 0;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 700px;  /* Adjust as needed */
  padding: 1.5rem;
  background: var(--neutral-light);
}

.tips-and-tricks {
  margin: 2rem;
  
}

.tips-and-tricks-title {
  padding: 0;
}

.tips-info-container {
  width: 100%;
  
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.tip-info:hover, .safe-environment-info:hover, .modify-info:hover {
  transform: scale(1.02);
}

.tip-info {
  background-color: var(--neutral-white);
  border: none;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
  font-size: 0.8rem;
  width: 45%;
  min-width: 20rem;
}

/* Milestones Section */

.milestones-section {
  width: 90%;
}

.milestone-info {
  margin: 2rem 0;
  border-left: 4px solid var(--accent-purple-darker);
  /* border-bottom: 1px solid var(--accent-purple); */
  padding: 1rem;
  padding-bottom: 0rem;
  /* box-shadow: 0px 10px 10px var(--accent-purple) */
}

.milestone-card {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.milestone-card .feeding-progress{
  /* margin-right: 10%; */
  /* background-color: black; */
}

.milestone-info ul, .milestones-section p {
  color: var(--text-charcoal-light)
}
.milestone-info ul {
  list-style-position: initial;
  margin-left: 1rem;
}


.motor-skills, .feeding-progress {
  all: unset;
  margin: 1rem;
  width: 40%;
  min-width: 20rem;
  
}


.month {
  font-size: 0.8rem;
  background-color: var(--accent-purple);
  border: 2px solid var(--accent-purple-darker);
  max-width: 5rem;
}

.resources-main .icon, .safety-main .icon, .home-main .icon {
  border: 2px solid var(--accent-purple-darker)
}

.milestone-info *:hover {
  transform: none;
}


/* Consult Health Visitor Section */

.consult-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.consult-health-visitor-info {
  background-color: #fefce8;
  font-size: 0.9rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #faf08b;
  min-width: 20rem;
}

.consult-health-visitor-info li::marker {
  color: var(--accent-purple-darker);
}

.extra-note-info {
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  margin: 1rem 0;
}

/* Recommendations section - perplexity idea */

/* ========== Recommendations Section ========== */

.recommendations-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--accent-purple);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.recommendations-section h2 {
  text-align: center;
  color: var(--text-charcoal-dark);
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.recommendations-intro {
  text-align: center;
  color: var(--text-charcoal-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  
  /* 3 columns on desktop (1200px+) */
  grid-template-columns: repeat(3, 1fr);
  
  gap: 2rem;
  margin-top: 2rem;
}

/* 2 columns on tablet (768px - 1199px) */
@media (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* 1 column on mobile (under 768px) */
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .product-card {
    margin: 0 auto;
    max-width: 90%;
  }

  .tip-info {
    width: 100%;
  }
}


.recommendations-section {
  width: 90%;
}

.product-card {
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid var(--neutral-gray);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* background-color: var(--accent-purple); */
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card h3 {
  font-size: 1.1rem;
  color: var(--text-charcoal-dark);
  margin: 0 0 0.5rem 0;
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-charcoal-light);
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.5;
}

.product-price {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.btn--affiliate {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn--affiliate:hover {
  background: var(--primary-green-dark);
  transform: scale(1.02);
}

.btn--affiliate:active {
  transform: scale(0.98);
}

.recommended-learning {
  gap: 1rem;
  width: 90%;
}

.recommended-learning-title {
  
  padding: 0;
}

.recommended-learning-container {
  
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 2rem;
}

.recommended-learning-info {
  min-width: 20rem;
  /* margin: 0 auto; */
  /* flex: 1 1 calc(33.333% - 1.333rem); */
}

.recommended-learning-info ul {
  list-style-position: initial;
  margin: 1rem;;
}

.recommended-learning-info q {
  font-style: italic;
}

#important-reminder {
  margin: 1rem;
  background-color: #f0f6ff;
  border: 2px solid #c6dafe;
  width: 100%;
}






















/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .recommendations-section {
    padding: 1.5rem;
  }

  .recommendations-section h2 {
    font-size: 1.5rem;
  }
}

















/* Responsive design */

@media (max-width: 768px) {
  .welcome-section {
    flex-direction: column;
    gap: 10px;
  }

  .welcome-text {
    align-items: center;
    max-width: 90%;
    
  }

  .welcome-image {
    max-width: 70%;
    
  }

  .welcome-btns {
    align-items: center;
    width: 100%;
    
    margin: 0;
  }

  .welcome-section button {
    width: 70%;
  }

  .begin-text {
    
    align-items: flex-start;
    max-width: 90%;
  }

  .begin-image {
    max-width: 70%;
  }

  .begin-btn {
    align-self: center;
    width: 80%;
    display: flex;
    justify-content: center;
  }

  .start-section h2, .start-section p {
    
    width: 100%
  }

  .start-btns {
    
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .start-btns button {
    width: 80%;
    align-self: center;
  }

  .gagging-box, .choking-box{
    max-width: 80%;
    /* padding-bottom: 50rem; */
    /* border: 2px solid red */
    /* min-width: calc(90vw - 1rem); */
    flex-basis: calc(90vw - 1rem);
  }

  .safe-environment-info, .modify-info, .info-card {
    width: 100%;
  }

}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--neutral-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Styles */
/* Mobile Header Fix */
@media (max-width: 768px) {
  .header-container {
    justify-content: space-between !important;  /* LEFT: logo, RIGHT: hamburger */
    padding: 1rem;
  }

  .title-container {
    display: flex;
    align-items: center;
    margin: 0;
  }

  /* SHOW HAMBURGER */
  .mobile-menu-toggle {
    display: flex !important;  /* Force show */
    order: 2;  /* Push to right */
    /* background-color: var(--text-charcoal-light); */
  }

  .hamburger-line {
    background-color: var(--text-charcoal-light);

  }

  /* HIDE NAV ON MOBILE */
  .primary-nav {
    display: none !important;
  }

  .primary-nav.menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent-purple);
    z-index: 1000;
  }

  .primary-nav ul {
    flex-direction: column;
    padding: 1rem 0;
    margin: 0;
  }

  .primary-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  /* Hamburger Animation */
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .logo-title-container {
    flex-direction: row;  /* Keep side-by-side */
  }
  
  .logo {
    width: 40px;  /* Slightly smaller mobile */
  }

  .footer-text {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
  }
}

/* Recipe Index Section */
.recipe-index {
  background: var(--accent-purple);
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem auto;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.recipe-toggle {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

/* Collapsed: Rotate arrow up */
.recipe-index.collapsed .toggle-icon {
  /* transform: rotate(180deg); */
}

/* Collapsed: Hide list + search */
.recipe-index.collapsed #recipe-search,
.recipe-index.collapsed .recipe-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Search Input */
#recipe-search {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--neutral-gray);
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#recipe-search:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
  transform: translateY(-2px);
}

#recipe-search::placeholder {
  color: var(--text-charcoal-light);
}

/* Recipe List */
.recipe-list {
  columns: 2;              /* ← KEEP 2-column magic */
  column-gap: 2rem;
  column-fill: balance;
  gap: 1rem;
  
  /* Collapse animation */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0;
}

/* OPEN state */
.recipe-index:not(.collapsed) .recipe-list {
  max-height: 2000px;  /* Tall enough for all recipes */
  opacity: 1;
  margin-top: 1rem;
  padding: 0;
}

.recipe-link {
  display: block;
  background: var(--neutral-white);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-charcoal-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  break-inside: avoid;  /* Never split links */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 2px solid transparent;
}

.recipe-link:hover {
  background: var(--primary-green);
  color: white;
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(76,175,80,0.3);
  border-color: var(--primary-green-light);
}

.recipe-link:active {
  transform: translateX(4px) scale(0.98);
}

/* Mobile: Single column */
@media (max-width: 768px) {
  .recipe-list {
    columns: 1;
  }
  
  .recipe-index {
    padding: 1.5rem;
    margin: 1rem;
  }

  .faq-answer {

  }
}

/* Empty state */
.recipe-list:empty::after {
  content: "No recipes found. Try another search...";
  display: block;
  text-align: center;
  color: var(--text-charcoal-light);
  font-style: italic;
  padding: 2rem;
}





/* Coming Soon Page */

.coming-soon{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-white);
  width: 90%;
  margin: 2rem;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
}
.coming-soon h2 {
  font-size: 2rem;;
}

.coming-soon-logo {
  width: 90%;
  border-radius: 20px;
  margin: 1rem;
  box-shadow: 0 10px 10px var(--text-charcoal-hover);
}