/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
  --primary-color: #42a5a7;
  --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(--bg-light);
  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
   ========================================================================== */
.image-wrapper {
  position: relative;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-collage {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

/* Grinder Bottle Overlay Styles */
.bottle-overlay {
  position: absolute;
  width: 27%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
  transition: var(--transition-smooth);
 
  z-index: 10;
}

/* Grinder Positions and Float Animations */
.oregano-bottle {
  bottom: 6%;
  right: 3%;
  animation: float-oregano 6s ease-in-out infinite;
}

.piripiri-bottle {
  top: 15%;
  left: 2%;
  animation: float-piripiri 6s ease-in-out infinite;
}

/* Red Splash Background Image */
.bg-splash {
  position: absolute;
  width: 34%;
  height: auto;
  top: -20%;
  right: -15%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.95;
  animation: pulse-splash 8s ease-in-out infinite alternate;
}

/* ==========================================================================
   Typography & Badge Components
   ========================================================================== */
.custom-badge {
  display: inline-block;
  background-color: var(--primary-color);
  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);
  /* Hover state removed as requested */
  user-select: none;
}

.recipe-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.recipe-description {
  font-size: 16px;
  color: var(--text-grey);
  line-height: 1.75;
}

.recipe-container {
  width: 80%;
}

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

.recipe-container-2 {
  padding-bottom: 8%;
}

.featured-section-2 {
      margin-top: -300px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
/* @keyframes float-oregano {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes float-piripiri {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes pulse-splash {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.04) rotate(1.5deg);
  }
} */

/* ==========================================================================
   Responsive / Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .recipe-title {
    font-size: 26px;
  }
}

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

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

  .recipe-title {
    font-size: 26px;
    text-align: center;
  }

  .recipe-description {
    line-height: normal;
    text-align: left !important;
  }
  .recipe-container {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .badge-container {
    text-align: center;
  }

  .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%;
  }

  .featured-section-2 {
    margin-top: 0;
  }

  .recipe-container-2 {
    align-items: flex-end;
  }
  .recipe-container-2 .recipe-description {
    text-align: right !important;
  }
}