/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {

  --text-dark: #000000;
  --text-grey: #757575;
  --text-white: #ffffff;
  --bg-light: #fafafa;
  --font-family: "Poppins", sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
  font-family: var(--font-family);
  background-color: var(--text-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   Featured Sections Layout
   ========================================================================== */
.site-main {
  overflow: hidden;
}

.featured-section {
  position: relative;
  width: 100%;
}

.pizza-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.nuggets-section {
  margin-top: 6rem;
  margin-bottom: 4rem;
}

/* ==========================================================================
   Image Column & Overlays
   ========================================================================== */






/* ==========================================================================
   Typography & Badge Components
   ========================================================================== */
.custom-badge {
  display: inline-block;
  background-color: #42a5a7;
  color: var(--text-white);
  font-size: 21px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 9px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(66, 165, 167, 0.15);
  user-select: none;
}







.recipe-container-1 {
  padding-top: 14%;
}





/* ==========================================================================
   Responsive / Breakpoints
   ========================================================================== */


@media (max-width: 767px) {
  .pizza-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .nuggets-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

 

 
 

  

  .custom-badge {
    padding: 8px 18px;
    border-radius: 6px;
  }

  /* Grinder Position adjustments for smaller screens */
  .bottle-overlay {
    width: 25%;
  }

  .oregano-bottle {
    bottom: 4%;
    right: 4%;
  }

  .piripiri-bottle {
    top: 10%;
    left: 4%;
  }

  .bg-splash {
    width: 32%;
    top: -15%;
    right: -10%;
  }

}

/* ==========================================================================
   All Recipes Section Styles
   ========================================================================== */
.all-recipes-section {
  padding: 2rem 0 6rem 0;
  background-color: var(--text-white);
}

.all-r-title {
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

/* Grid Layout */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* Recipe Card Container */
.recipe-card {
  background-color: var(--text-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image Wrapper with hidden overflow for zoom */
.recipe-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.recipe-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card Content Area */
.recipe-content {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Card Title and Arrow Row */
.recipe-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 6px;
}

.recipe-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  flex-grow: 1;
}

.recipe-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* SVG Arrow Styling */
.recipe-arrow-link {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 4px;
  transition: color 0.3s ease;
}

.recipe-arrow {
  width: 14px;
  height: 14px;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    color 0.3s ease;
}

/* Recipe Description */
.recipe-excerpt {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 6px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

/* Recipe Footer Link */
.recipe-footer {
  margin-top: auto;
}

.view-recipe-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.view-recipe-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #42a5a7;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

/* ==========================================================================
   Hover Animations
   ========================================================================== */
.recipe-card-title a:hover {
  color: #42a5a7;
}

.view-recipe-btn:hover {
  color: #42a5a7;
}

/* Button */
.primary-btn {
  background-color: #000;
  font-size: 18px;
  padding: 15px 20px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: var(--text-white);
}

.primary-btn:hover {
  background-color: #42a5a7;
}
@media (max-width: 767px) {
  .primary-btn {
    font-size: 14px;
    padding: 14px 18px 14px 18px;
  }
}

/* ==========================================================================
   Responsive Grid & Typography Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .recipes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .recipes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .recipe-image-wrapper {
    height: 200px;
  }

  .recipe-card-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .recipes-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
  }

  .recipe-image-wrapper {
    height: 220px;
  }
}