
/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
       * colors
       */
  
    --rich-black-fogra-29: hsl(210, 26%, 7%);
    --champagne-pink_20: hsla(23, 61%, 86%, 0.2);
    --independence_30: hsla(245, 17%, 29%, 0.3);
    --gray-x-11-gray: hsl(0, 0%, 73%);
    --champagne-pink: hsl(23, 61%, 86%);
    --spanish-gray: hsl(0, 0%, 60%);
    --sonic-silver: hsl(0, 0%, 47%);
    --deep-saffron: hsl(32, 100%, 59%);
    --dark-orange: hsl(28, 100%, 58%);
    --desert-sand: hsl(23, 49%, 82%);
    --isabelline: hsl(38, 44%, 96%);
    --gainsboro: hsl(0, 0%, 87%);
    --tangerine: hsl(31, 84%, 50%);
    --cinnabar: hsl(3, 90%, 55%);
    --black_95: hsla(0, 0%, 0%, 0.95);
    --cultured: hsl(0, 0%, 93%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --onyx: hsl(0, 0%, 27%);
  
    /**
       * typography
       */
  
    --ff-shadows-into-light: 'Shadows Into Light', cursive;
    --ff-roboto: 'Roboto', sans-serif;
    --ff-rubik: 'Rubik', sans-serif;
  
    --fs-1: 3.2rem;
    --fs-2: 2.2rem;
    --fs-3: 1.8rem;
    --fs-4: 1.6rem;
    --fs-5: 1.2rem;
  
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
  
    /**
       * spacing
       */
  
    --section-padding: 60px;
  
    /**
       * shadow
       */
  
    --shadow-1: 0 1px 4px hsla(0, 0%, 0%, 0.2);
    --shadow-2: 0 1px 2px hsla(0, 0%, 0%, 0.2);
  
    /**
       * transition
       */
  
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
  
    /**
       * clip path
       */
  
    --clip-path-1: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
    --clip-path-2: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
  
  }
  
  
  
  
  
  /*-----------------------------------*\
      #RESET
    \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a,
  img,
  svg,
  span,
  input,
  select,
  button,
  textarea,
  ion-icon {
    display: block;
  }
  
  img {
    height: auto;
  }
  
  input,
  select,
  button,
  textarea {
    background: none;
    border: none;
    font: inherit;
  }
  
  input,
  select,
  textarea {
    width: 100%;
  }
  
  button {
    cursor: pointer;
  }
  
  ion-icon {
    pointer-events: none;
  }
  
  address {
    font-style: normal;
  }
  
  html {
    font-family: var( );
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--white);
    color: var(--sonic-silver);
    font-size: 1.6rem;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  body.active {
    overflow: hidden;
  }
  
  :focus-visible {
    outline-offset: 4px;
  }
  
  ::selection {
    background-color: var(--tangerine);
    color: var(--white);
  }
  
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: var(--cultured);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--tangerine);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--tangerine);
  }
  
  
  
  
  
  /*-----------------------------------*\
      #REUSED STYLE
    \*-----------------------------------*/
  
  .container {
    padding-inline: 15px;
  }
  
  .h1,
  .h2,
  .h3,
  .h4 {
    font-family: var(--ff-rubik);
    color: var(--rich-black-fogra-29);
    line-height: 1.2;
    letter-spacing: -1px;
  }
  
  .h1,
  .h2 {
    font-size: var(--fs-1);
  }
  
  .h2,
  .h3,
  .h4 {
    font-weight: var(--fw-600);
  }
  
  .h3 {
    font-size: var(--fs-2);
  }
  
  .h4 {
    font-size: var(--fs-3);
  }
  
  .btn {
    background-color: var(--bg-color, var(--tangerine));
    color: var(--white);
    font-family: var(--ff-rubik);
    font-size: var(--fs-4);
    font-weight: var(--fw-500);
    height: var(--height, 45px);
    padding-inline: var(--padding-inline, 35px);
    transition: var(--transition-1);
    border-radius: 20px;
  }
  
  .btn-hover {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn-hover::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 20px;
    width: 1px;
    height: 1px;
    transform: translate(-50%, 51%) scale(var(--scale, 1));
    border-radius: 50%;
    background-color: var(--rich-black-fogra-29);
    z-index: -1;
    transition: var(--transition-2);
  }
  
  .btn-hover:is(:hover, :focus)::after {
    --scale: 500;
  }
  
  .section {
    padding-block: var(--section-padding);
  }
  
  .section.white {
    background-color: var(--isabelline);
  }
  
  .section-divider {
    position: relative;
  }
  
  .section-divider::before,
  .section-divider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-repeat: repeat no-repeat;
    background-position: bottom;
  }
  
  .section-divider.white::after {
    background-image: url("../images/shape-white.png");
  }
  
  .section-divider.gray::after {
    background-image: url("../images/shape-grey.png");
  }
  
  .w-100 {
    width: 90%;
  }
  
  .has-scrollbar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    padding-block-end: 40px;
  }
  
  .has-scrollbar::-webkit-scrollbar {
    height: 12px;
  }
  
  .has-scrollbar::-webkit-scrollbar-button {
    width: calc(25% - 40px);
  }
  
  .has-scrollbar::-webkit-scrollbar-track {
    outline: 2px solid var(--tangerine);
    border-radius: 50px;
  }
  
  .has-scrollbar::-webkit-scrollbar-thumb {
    border: 3px solid var(--cultured);
    border-radius: 50px;
  }
  
  .section-title>.span {
    display: inline-block;
    color: var(--tangerine);
  }
  
  .abs-img {
    position: absolute;
    transform: scale(1);
  }
  
  .scale-up-anim {
    animation: scaleUp 1s linear infinite alternate;
  }
  
  @keyframes scaleUp {
    0% {
      transform: scale(1);
    }
  
    100% {
      transform: scale(1.05);
    }
  }
  
  .section-subtitle {
    color: var(--tangerine);
    font-family: var(--ff-rubik);
    text-align: center;
    font-weight: var(--fw-500);
  }
  
  .badge {
    position: absolute;
    background: var(--bg-color, var(--tangerine));
    color: var(--white);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    padding: var(--padding-block, 2px) 15px;
  }
  
  .rating-wrapper {
    display: flex;
    gap: 5px;
    color: var(--tangerine);
  }
  
  
  
  
  


/*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/

/* .navbar, */
.header-btn-group .btn {
    display: none;
  }
  
  .header {
  --color: var(--white);
    --btn-color: var(--black_95);
  background-color:var(--white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 20px;
    border-block-end: 1px solid var(--champagne-pink_20);
    z-index: 4;
  }
  
  .header.active {
    --color: var(--rich-black-fogra-29);
    --btn-color: var(--rich-black-fogra-29);
  
    position: fixed;
    top: -86px;
    background-color: var(--white);
    box-shadow: var(--shadow-1);
    animation: slideIn 0.5s ease-out forwards;
  }
  
  @keyframes slideIn {
    0% {
      transform: translateY(0);
    }
  
    100% {
      transform: translateY(100%);
    }
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: var(--color);
    font-family: var(--ff-rubik);
    font-size: 2.8rem;
    font-weight: var(--fw-700);
    letter-spacing: -2px;
  }
  
  .logo .span {
    display: inline-block;
    color: var(--tangerine);
  }
  
  .header-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .search-btn {
    color: var(--btn-color);
    font-size: 20px;
  }
  
  .search-btn ion-icon {
    --ionicon-stroke-width: 50px;
  }
  
  .nav-toggle-btn {
    display: grid;
    gap: 4px;
  }
  
  .line {
    width: 10px;
    height: 3px;
    background-color: var(--btn-color);
    border-radius: 5px;
    transition: var(--transition-1);
  }
  
  .line.middle {
    width: 20px;
  }
  
  .line.bottom {
    margin-left: auto;
  }
  
  .nav-toggle-btn.active .line.top {
    transform: translate(1px, 3px) rotate(45deg);
  }
  
  .nav-toggle-btn.active .line.middle {
    transform: rotate(-45deg);
  }
  
  .nav-toggle-btn.active .line.bottom {
    transform: translate(-1px, -3px) rotate(45deg);
  }
  
  .navbar {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    border-radius: 0px 0px 20px 20px;
    background-color: var(--white);
    padding-inline: 20px;
    box-shadow: var(--shadow-1);
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: var(--transition-1);
  }
  
  .navbar.active {
    height: 236px;
    visibility: visible;
  }
  
  .navbar-list {
    margin-block: 10px;
  }
  
  .nav-item:not(:last-child) {
    border-block-end: 1px solid hsla(0, 0%, 0%, 0.04);
  }
  
  .navbar-link {
    color: var(--rich-black-fogra-29);
    font-size: var(--fs-4);
    font-family: var(--ff-rubik);
    font-weight: var(--fw-500);
    padding: 10px 15px;
    transition: var(--transition-1);
  }
  
  .navbar-link:is(:hover, :focus) {
    color: var(--dark-orange);
  }
  
  .profile-img{
    border-radius: 50%;
    position: relative;
    border: 2px solid rgba(63, 61, 61, 0.678);
    width: 35px;
    height: 35px;
    cursor: pointer;
  }
  .profile-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  }


/*-----------------------------------*\
    #HERO - Landing
  \*-----------------------------------*/


  .hero {
    height: 100vh;
    background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0,0,0,0.5)),
    url('D:/janani/landing/images/landing-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}


.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}
.hero {
  transition: background-image 1s ease, opacity 1s ease;
}
.hero h1 {
    font-family: var(--ff-rubik);
    font-size:var( --fs-1);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: var(--fs-3);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
 .landingBtn {
    display: inline-block;
    background-color: var(--tangerine);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--fs-3);
    margin: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 1rem;
}

.btn-outline:hover {
    background-color: white;
    color: var(--tangerine);
}


/*-----------------------------------*\
    #Cards - Cake Module and pizza Module
  \*-----------------------------------*/


.modules {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-landing {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--ff-rubik);
    font-size: var(--fs-3);
    color: var(--black_95);
    position: relative;
 
}

.section-title-landing:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--tangerine);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.modules-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.module-card {
    flex: 1 1 300px;
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.module-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.module-card:nth-child(1).animated {
    transition-delay: 0.2s;
}

.module-card:nth-child(2).animated {
    transition-delay: 0.4s;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.module-img {
    height: 250px;
    overflow: hidden;
}

.module-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-card:hover .module-img img {
    transform: scale(1.1);
}

.module-content {
    padding: 1.5rem;
}

.module-content {
    padding: 1.5rem;
    font-family:var(--ff-roboto);
}

.module-title {
    font-size: var(--fs-3);
    margin-bottom: 1rem;
    color: var(--black_95);
    font-family:var(--ff-rubik);
}


.module-description {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.module-features {
    margin-bottom: 1.5rem;
}

.module-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.module-features i {
    color:var(--tangerine);
    margin-right: 10px;
}


/*-----------------------------------*\
    #DELIVERY
  \*-----------------------------------*/

  .delivery-content {
    margin-block-end: 40px;
  }
  
  .delivery .section-title {
    max-width: 17ch;
    line-height: 1.6;
    letter-spacing: -2px;
  }
  
  .delivery .section-text {
    margin-block: 15px 25px;
  }
  
  .delivery-banner {
    position: relative;
    aspect-ratio: 1 / 0.86;
  }
  
  .delivery-img {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-80px);
    transition: var(--transition-2);
  }

  
  /*-----------------------------------*\
      #TESTIMONIALS
    \*-----------------------------------*/
  
  .testi {
    text-align: center;
  }
  
  .testi .section-title {
    margin-block: 10px 20px;
  }
  
  .testi .section-text {
    max-width: 44ch;
    margin-inline: auto;
    margin-block-end: 30px;
  }
  
  .testi-card {
    background-color: var(--white);
    padding: 40px;
    text-align: left;
    box-shadow: var(--shadow-2);
  }
  
  .testi-card .profile-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testi-card .avatar {
    min-width: max-content;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .testi-card .testi-name {
    margin-block-end: 2px;
  }
  
  .testi-card .testi-title {
    font-family: var(--ff-rubik);
    font-size: var(--fs-4);
  }
  
  .testi-card .testi-text {
    margin-block: 20px 15px;
  }
  
  .testi-item {
    min-width: 100%;
    scroll-snap-align: start;
  }

  
  
  /*-----------------------------------*\
      #why choose us
    \*-----------------------------------*/
  
  
  
  .features {
    padding: 5rem 2rem;
    background-color: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--secondary);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).animated {
    transition-delay: 0.2s;
}

.feature-card:nth-child(2).animated {
    transition-delay: 0.4s;
}

.feature-card:nth-child(3).animated {
    transition-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: var(--fs-1);
    color: var(--tangerine);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--ff-roboto);
    font-size: var(--fs-3);
    margin-bottom: 1rem;
    color: var(--black_95);
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  
  /*-----------------------------------*\
      #FOOTER
    \*-----------------------------------*/
  
  .footer {
    overflow: hidden;
  }
  
  .footer-top {
    position: relative;
    padding-block: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    border-block-end: 2px solid var(--independence_30);
  }
  
  .footer-top::after {
    content: url(./images/delivery-boy.svg);
    position: absolute;
    bottom: -11px;
    left: -160px;
    width: 160px;
    animation: running-cycle 20s linear infinite;
  }
  
  @keyframes running-cycle {
    0% {
      left: -160px;
    }
  
    100% {
      left: 100%;
    }
  }
  
  .footer-top .container {
    display: grid;
    gap: 30px;
  }
  
  .footer .logo {
    color: var(--rich-black-fogra-29);
    font-size: 3.2rem;
  }
  
  .footer-text {
    margin-block: 15px 25px;
  }
  
  .social-list {
    display: flex;
    gap: 5px;
  }
  
  .social-link {
    background-color: var(--dark-orange);
    color: var(--white);
    font-size: 1.5rem;
    padding: 10px;
    transition: var(--transition-1);
  }
  
  .social-link:is(:hover, :focus) {
    background-color: var(--rich-black-fogra-29);
  }
  
  .footer-list-title {
    position: relative;
    max-width: max-content;
    color: var(--rich-black-fogra-29);
    font-family: var(--ff-rubik);
    font-size: var(--fs-3);
    font-weight: var(--fw-600);
    letter-spacing: -1px;
    margin-block-end: 20px;
  }
  
  .footer-list-title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 15px);
    background-color: var(--tangerine);
    width: 40px;
    height: 4px;
    border-inline-end: 5px solid var(--tangerine);
    box-shadow: inset -5px 0 0 var(--white);
  }
  
  .footer-list>li:not(:last-child) {
    margin-block-end: 15px;
  }
  
  .footer-list address {
    max-width: 20ch;
  }
  
  .janani-booking-table {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;
    /* Initially hidden */
    z-index: 1000;
  
  }
  .janani-contact-table {
    background: #e5e5e5;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    
  
  }
  .janani-contact-table .input-field{
    margin-bottom: 8px;
  }
  
  .footer-form {
    background-color: var(--white);
    padding: 30px;
    border: 1px solid var(--cultured);
    box-shadow: var(--shadow-2);
  }
  
  .input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-block-end: 10px;
  }
  
  .input-field {
    color: var(--spanish-gray);
    font-size: var(--fs-4);
    border: 1px solid var(--cultured);
    padding: 8px 12px;
  }
  
  .input-field::placeholder {
    color: var(--spanish-gray);
  }
  
  .input-field::-webkit-calendar-picker-indicator {
    opacity: 0.5;
  }
  
  textarea.input-field {
    min-height: 50px;
    max-height: 150px;
    height: 100px;
    resize: vertical;
    margin-block-end: 10px;
  }
  
  .booking-btns {
    display: flex;
    flex-direction: row;
    gap: 15%;
    justify-content: center;
  }
  
  
  .footer-form {
    font-size: var(--fs-15);
    --height: 40px;
    --padding-inline: 25px;
  }
  
  .footer-form .btn:is(:hover, :focus) {
    background-color: var(--rich-black-fogra-29);
  }
  
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    /* Initially hidden */
    z-index: 999;
  }
  
  
  .footer-bottom {
    padding-block: 20px;
    text-align: center;
  }
  
  .copyright-link {
    display: inline-block;
  }
  
  .copyright-link:is(:hover, :focus) {
    text-decoration: underline;
  }
  
  
  
  
  
  /*-----------------------------------*\
      #BACK TO TOP
    \*-----------------------------------*/
  
  .back-top-btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: var(--tangerine);
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    box-shadow: var(--shadow-1);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-1);
  }
  
  .back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
  }
  
  .back-top-btn:is(:hover, :focus) {
    background-color: var(--rich-black-fogra-29);
  }
  
  
  
  
  
  /*-----------------------------------*\
      #MEDIA QUERIES
    \*-----------------------------------*/

  
  /**
     * responsive for larger than 480px screen
     */
  
  @media (min-width: 480px) {
  
    /**
       * HEADER
       */
  
    .header-btn-group .btn {
      display: block;
      --bg-color: var(--dark-orange);
    }
  
  
  }
  
  
  
  
  
  /**
     * responsive for larger than 550px screen
     */
  
  
  
  @media (min-width: 550px) {
  
    /**
       * REUSED STYLE
       */
  
    .container {
      max-width: 550px;
      width: 100%;
      margin-inline: auto;
    }
  
    .has-scrollbar>li {
      min-width: calc(50% - 5px);
    }


  
    /**
       * FOOTER
       */
  
    .footer-top .container {
      grid-template-columns: 1fr 1fr;
    }
  
  }
  
  
  
  
  
  /**
     * responsive for larger than 768px screen
     */
  
  @media (min-width: 768px) {
  
    /**
       * REUSED STYLE
       */
  
    .container {
      max-width: 720px;
    }
  

  /**
     * DELIVERY
     */

     .delivery .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 50px;
      }
    
  
    /**
       * FOOTER
       */
  
    .input-wrapper {
      grid-template-columns: 1fr 1fr;
    }

  }
  
  
  
  
  
  /**
     * responsive for larger than 992px screen
     */
  
  @media (min-width: 992px) {
  
    /**
       * CUSTOM PROPERTY
       */
  
    :root {
  
      /**
         * spacing
         */
  
      --section-padding: 120px;
  
    }
  
  
  
    /**
       * REUSED STYLE
       */
  
    .container {
      max-width: 960px;
    }
  
    .has-scrollbar>li {
      min-width: calc(33.33% - 6.66px);
    }
  
    .h2 {
      --fs-1: 4.2rem;
    }
  
  
  
    /**
       * HEADER
       */
  
    .nav-toggle-btn {
      display: none;
    }
  
    .header .container {
      gap: 20px;
    }
  
    .navbar,
    .navbar.active {
      all: unset;
      margin-inline-start: auto;
    }
  
    .navbar-list {
      margin-block: 0;
      display: flex;
      gap: 5px;
    }
  
    .nav-item:not(:last-child) {
      border-block-end: none;
    }
  
    .navbar-link {
      --fs-4: 1.5rem;
      color: var(--btn-color);
      letter-spacing: -0.5px;
    }
  

    /**
       * TESTIMONIALS
       */
  
    .testi-list {
      padding-block-end: 0;
    }
  
    :is(.cta, .delivery) .section-title {
        line-height: 1.2;
      }
    

    /**
       * FOOTER
       */
  
    .footer-top .container {
      grid-template-columns: 1fr 1fr 1fr 1.6fr;
    }
  
  
    /**
       * BACK TO TOP
       */
  
    .back-top-btn {
      bottom: 20px;
      right: 30px;
    }
  
  }
  
  
  
  
  
  /**
     * responsive for larger than 1200px screen
     */
  
  @media (min-width: 1200px) {
  
    /**
       * REUSED STYLE
       */
  
    .container {
      max-width: 1200px;
    }
  

    /**
       * FOOTER
       */
  
    .footer-top .container {
      grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    }

  
  }
  @media (max-width: 380px){
  
    .logo {
        font-size: 1.8rem;
    }
    .header-btn-group{
      gap: 10px;
    }
  }

