@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}
.splash-screen{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.container{
    max-width: 1280px;
    padding: 0 40px;
    margin: auto;
}

 #download-pdf{
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 99;
    background-color: #FF5A1F;
    color: white;
    border: 1px solid #FF5A1F;
    border-radius: 50px;
    padding: 12px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all .3s ease-in-out;
}
#download-pdf:hover{
    background-color: transparent;
    color: #FF5A1F;
}

.logo-div {
    max-width: 248px;
    max-height: 385px;
}
.logo-div img{
    width: 100%;
    height: 100%;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Popup Content */
.popup-content {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    width: 320px;
    position: relative;
}

.popup-content h3 {
    margin: 10px 0 25px;
    font-size: 18px;
    color: #333;
}

/* Confirm Download Button */
.confirm-btn {
    background-color: #FF5A1F;
    border: 1px solid #FF5A1F;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.confirm-btn:hover {
    background-color: transparent;
    color: #FF5A1F;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.popup-close:hover {
    color: #FF4500;
}

 #scrollToTopBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FF5A1F;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      font-size: 20px;
      display: none;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    #scrollToTopBtn:hover {
      background-color: #fff;
       color: black;
    }
.left-corner-div,
.right-corner-div{
    position: fixed;
    z-index: -1;
}
.right-corner-div{
    top: 0;
    right: 0;
}
.left-corner-div{
    bottom: 0;
    left: 0;
}
.btn-div{
    background-color: #FF5A1F;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    width: fit-content;
    margin: 44px auto 0 auto;
    display: flex;
    align-items: center;
}
.logo-and-btn a{
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 29px;
    font-weight: 500;
}
.line-divider{
    width: 100%;
    height: 1px;
    margin: 30px 0px;
    background-color: #FF5A1F;
}

.nancy-4th-img{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.image-nancy img {
    max-width: 400px;
}
.intro-para p{
    margin-bottom: 20px;
    font-size: 18px;
}

.welcome-screen{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}
.nancy-and-receipe{
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 168px;
    place-items: start;
    width: 100%;
    place-content: center;
}
.nancy-btn-div{
    width: 226px;
    background-color: transparent;
    border: 1px solid #000;
    padding: 12px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 14px;
    text-align: center;
    max-height: 53px;
    transition:all .3s ease-in-out;
}
.nancy-btn-div a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    line-height: 29px;
}
.nancy-btn-div:hover{
    background-color: #FF5A1F;
    border: 1px solid #FF5A1F;
    color: #fff;
}

.recipe-links a {
  position: relative;
  transition: color 0.3s ease;
}

.recipe-links a:hover {
  color: #FF5A1F; /* Change to your desired hover color */
}

/* Underline effect */
.recipe-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust distance from the text */
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: #FF5A1F; /* Same as hover color */
  transition: width 0.3s ease;
}

.recipe-links a:hover::after {
  width: 100%; /* Expand underline */
}
.slide-heading-div h2 {
    font-size: 26px;
    font-weight: bold;
}

.receipe-btn-div{
    width: 226px;
    background-color: transparent;
    border: 1px solid #000;
    padding: 12px;
    border-radius: 50px;
    margin-top: 12px;
    text-align: center;
    max-height: 53px;
    display: flex;
    cursor: pointer;
      gap: 10px;
    justify-content: center;
    align-items: center;
    transition:all .3s ease-in-out;
}
.receipe-btn-div:hover{
    background-color: #FF5A1F;
    color: #fff;
    border: 1px solid #FF5A1F;
}
.receipe-btn-div:hover img{
    fill: #fff;
    stroke: #fff;
}

.welcome-title{
    margin-top: 124px;
    font-size: 31px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 114px;
    text-align: center;
}
.title-main{
    font-size: 31px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: center;
}

.welcome-title span,
.title-main span{
    color: #FF5A1F;
}
.welcome-content{
    width: 100%;
}
.image-and-para{
    display: flex;
    margin-bottom: 36px;
    align-items: center;
    gap: 22px;
}
.image-and-para p{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.image-and-para p:last-of-type {
    margin-bottom: 0;
}
.recipe-title {
    margin-top: 100px;
    font-size: 31px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: center;
}

.title-highlight {
    color: #FF5A1F;
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.category-link {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    color: #555;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-link:hover {
    background-color: #FF5A1F;
    color: #fff;
    border-color: #FF5A1F;
}

.recipe-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.recipe-section {
    padding: 20px;
    border-radius: 8px;
}

.section-header {
    background-color: #FF5A1F;
    color: #fff;
    text-align: center;
    padding: 13px 41px;
    border-radius: 50px;
    font-size: 32px;
    width: fit-content;
    font-weight: bold;
    margin: 20px auto;
    position: relative;
}

.nancy-div {
    min-width: 605px;
    height: 90vh;
}
.nancy-div img{
   width: 100%;
   height: 100%;
   object-fit: contain;
}
.receipe-div{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    gap: 40px;
}
.img-nd-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.image-div{
   width:168px;
    height: 168px;
    border-radius: 50%;
    overflow: hidden;
}
.image-div img{
  width: 100%;
  height: 100%;
  object-fit: cover;
=
}

.recipe-links {
    border-top: 1px solid #DDDDDD;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 20px;
    padding-top: 60px;
    margin-top: -50px;
}

.recipe-links a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}
  .about-nancy-header {
      padding-top: 30px;
    position: relative;
}
    #backButton {
    position: absolute;
    left: 0;
    cursor:pointer;
    top: 20px;
}
.nancy-and-receipe a {
    text-decoration: none;
    color: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.recipe-link:hover {
    color: #FF5A1F;
}

.swiper-nav-btn{
    position: fixed;
    bottom: 75px;
    right: 75px;
    z-index: 99;
}
.swiper-button-next {
    right: 0;
}
.swiper-button-prev {
    left: -76px !important;
}

.left-overlap {
    left: -40px !important;
    top: 30px !important;
}
/*.slider-section{*/
/*    padding: 76px 0;*/
/*}*/
.swiper-button-prev::after,
.swiper-button-next::after{
display: none;
}
.pos-relative{
    position: relative;
}
.slide-content {
    max-width: 1067px;
    margin: auto;
}
.main-slide-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
   height: 100vh;
}
.slide-img-div {
    width: 610px;
    height: 80vh;
}
.slide-img-div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.slide-heading-div h2{
    max-width: 396px;
}

.nancy-4th-img img{
    width: 100%;
}

@media only screen and (max-width: 767px) {

    .recipe-title,
    .welcome-title {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .title-main{
        margin-top: 0px;
        margin-bottom: 20px;
    }
    .about-nancy-header {
    padding-top: 0px;
}
    .slide-img-div {
    width: auto;
    height: auto;
}
    .left-overlap {
    left: 0 !important;
    top: 0 !important;
    position: relative !important;
    margin-bottom: 20px;
    margin-left: 0 !important;
}
.swiper-button-next svg, .swiper-button-prev svg {
    width: 20px;
    
}
.swiper-nav-btn {
    position: absolute;
    top: 45px;
    right: 20px;
    z-index: 99;
    bottom: unset;
}
    .image-nancy img {
    max-width: 100%;
}
    .nancy-and-receipe,
    .main-slide-content{
        flex-direction: column;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items:unset;
    height: auto;
}
.nancy-div {
    min-width: auto;
    height: auto;
    padding-top: 30px;
}
/*.slider-inner {*/
/*    padding-top: 50px;*/
/*}*/
.slider-section {
    padding: 20px 0;
}
    .nancy-btn-div,
    .receipe-btn-div {
        margin-top: 20px;
    }
    
    .receipe-div{
        gap: 20px;
        flex-direction: row;
    }
    .welcome-screen {
        padding-bottom: 40px !important;
        height: auto;
    }
    .image-div img{
        width: 100%;
    }
    .container {
        padding: 0px 20px;
        overflow: hidden;
    }
    .receipe-btn-div,
    .nancy-btn-div{
    width: 150px;
    }
  
    .section-header {
        font-size: 20px;
    }
    .recipe-links {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding-top: 40px;
        margin-top: -45px;
    }
    .flex-col-nancy{
        flex-direction: column;
        text-align: center;
    }
    .flex-re-col-nancy{
        flex-direction: column-reverse;
        text-align: center;
    }
    .image-div {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.nancy-div {
    min-width: auto;
    height: auto;
}
#backButton {
    position: relative !important;
    margin-bottom: 20px;
    margin-left: 20px;
}


}
@media screen and (max-width: 1300px) and (min-width: 768px) {
   .left-overlap {
    position: relative !important;
    margin-bottom: 20px;
    margin-left: 20px;
}


}
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .nancy-and-receipe {
    height: 100vh;
    gap: 60px;
}
.nancy-div {
    min-width: auto;
    height: auto;
    padding-top: 30px;
}
.swiper-nav-btn {
    position: absolute;
    top: 50px;
    right: 20px;
    z-index: 99;
    bottom: unset;
}
}
