@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&family=Roboto:wght@500;700&display=swap");

body{
  background-color: #ffffff !important;
}


.PrintAndDesign-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px;
}


.slider-body {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 48%);
  min-height: 80vh;
  font-family: "Quicksand", sans-serif;
}



.recipe-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  margin: auto !important;
  background: rgba(132, 159, 255, 0.249);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.244);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 25px;
  padding: 50px 0;
  width: min(1200px, 100%);
}


.recipe-container h1 {
padding-bottom: 20px;  
font-size: 40px;
  font-weight: 900;
  text-align: center;
  color: #1100ff;
  opacity: 0.5;
  margin: auto 50px;
}


.swiper {
  padding: 20px;
  width: 93%;
  height: 100%;
  margin-bottom: 30px;
}


.swiper-scrollbar {
  --swiper-scrollbar-bottom: 0;
  --swiper-scrollbar-drag-bg-color: #ffffff;
  --swiper-scrollbar-size: 5px;
}


.post {
  max-width: 400px;
  min-height: 340px;
  font-size: 1rem;
  font-weight: 500;
  color: rgb(0, 0, 0);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(224, 233, 255) 96%);  

  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  border-radius: 10px;
  padding: 16px 16px 0;
  margin-bottom: 16px;
}


.post img{
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}


.slider-paragraphs{
  font-size: 18px;
    text-align: center;
    padding: 40px;
    color: black;
    text-transform: none;
}


.phone-number{
  text-shadow: 0 1px 0 #ccc,
                     0 2px 0 #c9c9c9,
                     0 6px 1px rgba(4, 0, 255, 0.1),
                     0 0 5px rgba(4, 0, 255, 0.1),
                     0 1px 3px rgba(1, 0, 89,.3),
                     0 3px 5px rgba(1, 0, 89,.2),
                     0 5px 10px rgba(1, 0, 89,.25),
                     0 10px 10px rgba(1, 0, 89,.2),
                     0 20px 20px rgba(1, 0, 89,.15) !important;
}

.pn2{
  text-shadow: 1px 1px #4f9bff !important;
}


.post-img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  user-select: none;
  pointer-events: none;
}


.post-body {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
  cursor: default;
}


.post-name {
  line-height: 20px;
  font-size: 16px !important;
  font-weight: 900 !important;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.post-author {
  width: fit-content;
  font-size: 14px !important;
  text-transform: none;
  font-weight: 600;
  opacity: 0.6;
  color: rgb(0, 2, 52);
}


.post-avatar {
  width: 40px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}


.post-actions {
  position: relative;
}


.post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 238, 238, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.244) !important;
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
}


.post-actions-content[data-visible="false"] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}


.post-actions-content[data-visible="true"] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}


.post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}


.post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}


.post-actions-link {
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}


.post-like {
  text-decoration: none;
  color: rgb(255, 255, 255);
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 0.65;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}


.post-actions-controller {
  border: 0;
  background: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
  opacity: 0.65;
}


.post-like:hover,
.post-actions-controller:hover {
  opacity: 1;
}


.post-like:focus {
  outline: none;
}


.post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}


/* MEDIA QUERIES */


@media (max-width: 1200px) {
  .swiper {
      width: 80%;
    }
}


@media (max-width: 900px) {
  #recipes {
    padding: 60px 80px;
  }


  .swiper {
    width: 50%;
  }
  
.recipe-container h1 {
  font-size: 23px;
}
}


@media (max-width: 765px) {
  .swiper {
    width: 70%;
  }
}


@media screen and (min-width: 300px) and (max-width: 600px) {
  #recipes {
    padding: 40px 40px;
  }


  .swiper {
    width: 87%;
  }


  .recipe-container h1{
    padding: 10px;
    font-size: 23px;
  }


  .post{
    height: 320px;
  }

  
.PrintAndDesign-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
  }
  
  
  .slider-body {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 48%);
    min-height: 80vh;
    font-family: "Quicksand", sans-serif;
  }
  
  
  
  .recipe-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin: auto !important;
    background: rgba(132, 159, 255, 0.249);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.244);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 25px;
    padding: 50px 0;
    width: min(1200px, 100%);
  }
  
  
  .recipe-container h1 {
  padding-bottom: 20px;  
  font-size: 30px;
    font-weight: 900;
    text-align: center;
    color: #1100ff;
    opacity: 0.5;
    margin: auto 50px;
  }
  
}


