:root {
    --secondary: #FFF3CF;
    --primary: #832625;
    --font-family: 'DM Serif Display', sans-serif;
    --font-family2: 'Source Serif', sans-serif;
}
@font-face {
    font-family: 'DM Serif Display';
    src: url('../fonts/DMSerifDisplay-Regular.ttf') format('opentype');
}

@font-face {
    font-family: 'Source Serif';
    src: url('../fonts/SourceSerif4-Regular.ttf') format('opentype');
}

@font-face {
    font-family: 'Source Serif';
    font-weight: 100;
    src: url('../fonts/SourceSerif4-Light.ttf') format('opentype');
}

@font-face {
    font-family: 'Source Serif';
    font-weight: 500; /* Medium weight */
    src: url('../fonts/SourceSerif4-Medium.ttf') format('opentype');
}

@font-face {
    font-family: 'Source Serif';
    font-weight: 600; /* Semi-bold weight */
    src: url('../fonts/SourceSerif4-SemiBold.ttf') format('opentype');
}

@font-face {
    font-family: 'Source Serif';
    font-weight: 900; /* Black weight */
    src: url('../fonts/SourceSerif4-Black.ttf') format('opentype');
}

body {
    font-family: 'Source Serif', serif; /* Fallback to generic serif */
    font-weight: 100;
    background-color: #fff3cf51;
}


/* Now you can use var(--custom-color) wherever you need #FFF3CF */

.top-bar {
    background-color: var(--primary);
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: end;
    align-items: center;
    position: fixed;top: 0;;z-index:10000000;width: 100%;

}


.contact-info {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.icon {
    margin-right: 5px;
    color: var(--secondary);
}

.info {
    font-size: 14px;
    color: var(--secondary); /* Example of using the custom color */
}
*, html, body{
margin: 0;

}
.nav-bg{
    position: fixed;
    top: 20px;
    width: 100vw;
    z-index: 100000;
    }
header{
    background-image: url('../images/bg-header.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    width: 100%;
}
.navbar {
    background-color: transparent !important;
    font-family: 'DM Serif Display', serif;
}

.navbar-logo {
    max-width: 100px; /* Adjust as needed */
}

.navbar-nav .nav-link {
    color: var(--primary)!important;
    margin-right:20px!important ; /* Change link color */
}

.navbar-toggler {
    border-color: var(--primary)!important; /* Change toggler color */
}



.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.7); /* Change link hover color */
}

.navbar-toggler:focus {
    outline: none;
}

.btn-right-nav {
 background-color: var(--primary); /* Change button outline color */
    color: var(--secondary); /* Change button color */
    width: 200px;
    height: 40px;
    border:none
}

.nav-bg {
    background: linear-gradient(to bottom, var(--secondary), rgba(0, 0, 0, 0) 100%);
}

.btn-right-nav:hover {
    background-color: var(--secondary); /* Change button hover background color */
    color: var(--primary); /* Change button hover color */
}
.center-image {
    position: absolute;
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
    max-width: 40%;
 /* Ensure the image doesn't exceed the width of its container */
}
.section-join{
   
color: var(--primary);
}

/* Custom scrollbar */
.head-cont-join {
    display: flex;
    overflow-y: auto; /* Only show vertical scrollbar */
    justify-content: start;
    align-items: center;
    gap: 2px;
    
    width: 100%;

}

/* Custom scrollbar */
.head-cont-join::-webkit-scrollbar {
    margin-top: 100px;
    width: 10px; /* Width of the scrollbar */
    height: 10px; /* Height of the scrollbar */
}

/* Track */
.head-cont-join::-webkit-scrollbar-track {
    background: transparent; /* Transparent background */
}

/* Handle */
.head-cont-join::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar handle */
    border-radius: 5px; /* Rounded corners */
}

/* Handle on hover */
.head-cont-join::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar handle on hover */
}

/* Set scrollbar width and color */
.head-cont-join {
    scrollbar-width: thin; /* Width of the scrollbar */
    scrollbar-color: #888 transparent; /* Color of the scrollbar handle and track */
}


.cont-join {
    background-color: var(--primary);
    color: var(--secondary);

 padding: 0;
    height: 150px; /* Minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    max-width:30%;
  
    flex-wrap: nowrap;
   
}
.section-join {
    padding: 30px;
}

@media screen and (max-width: 768px) {
    .head-cont-join {
        flex-direction: column; 
        width: 100%;/* Set height to auto for responsiveness */
    }
    .cont-join{
        width: 100%;
    }
    .section-join {
        padding: 0;
    }
   
    
}

.cont-join h2{
    font-size: 1.5  em;
    font-weight: bold;
    font-family: var(--font-family);
   
}
.cont-join p{
    font-size: 0.8em;
    font-weight: light;

}
.get-more-details{
    background-color: var(--primary);
    color: var(--secondary);
    padding: 10px;
    border:none;
    width:350px;
}
.section-requisite{
    background-color: var(--primary);
    color: var(--secondary);
}
.requisite-button{
    background-color: var(--secondary);
    color: var(--primary);
    padding: 10px;
    border:none;
    width:350px;
    font-family: var(--font-family2);
}
.left-requisite{
    padding: 16px;
}
.left-requisite h1{
    font-family: var(--font-family);
}
.right-requisite h1,.right-requisite-2 h1{
    font-size: 2em;
    font-family: var(--font-family);
}
.right-requisite{
   background-color: var(--secondary);
   color: var(--primary);
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: center;
}
.right-requisite-2{
   background-color: var(--secondary);
   color: var(--primary);
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: center;
}
.what-we-offer-cont{
    display: flex;
    align-items: start;
    justify-content: start;
    gap:40px;
   
}

.what-we-offer-cont h4{
font-size: 1em;
}
 .img-offer{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;

}
.fla-cont{
    padding: 50px;
}
.img-flavour{
    height: 80px;
}
.left-flavour h2,.right-flavour h2{
font-size: 1.5em;
font-family: var(--font-family);
}
.left-flavour p,.right-flavour p{
font-size: 0.9em;
}
.left-flavour{
    background-color: var(--secondary);
    color: var(--primary);
}
.right-flavour{
    background-color: var(--primary);
    color: var(--secondary);
}
.left-flavour, .right-flavour{
    padding: 0;
}
.left-flavour{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    
}
.right-flavour{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.border-white{
    border: 2px solid white;
}
.our-flavours h1{
    color: var(--primary);
}
.happy-franchise-owner h1{
    color: var(--primary);
}
.success-cont {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Adjust values as needed */
}


.success-cont img {
    height: 80%;
    display: block;
    width: 100%;
    object-fit: cover;
    
    transition: filter 0.3s ease;
}

@media (min-width: 768px) {
    .success-cont:hover img {
        filter: grayscale(0%);
    }
    .success-cont img{
        filter: grayscale(100%);
    }
}
.success-row{
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.success-cont h2{
    font-size: 1.5em;
    color: white;
}
.success-cont h4{
    font-size: 1em;
    color: white;
}

.success-cont{
height: 500px;
padding: 0;
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
background-color: rgba(2, 2, 2, 0.818);
width: 100%;
}
.success-cont div{
    color: var(--primary);
  padding: 10px;
    margin-top: 10px;
}
.contact-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
height: 100%;
color:var(--primary);
    
}
.contact-container h1{
  color: var(--primary);
}
.contact-button{
    background-color: var(--primary); /* Change button outline color */
    color: var(--secondary); /* Change button color */
    width: 200px;
    height: 40px;
    border: 0;
    margin-top: 10px;
}
.our-team-cont{
    margin-top: 20px;
    display: flex;

padding: 20px;
    color: var(--secondary);
    border-radius: 20px;
align-items: center;

}

.download-catalogue{
    background-color: var(--primary); /* Change button outline color */
    color: var(--secondary); /* Change button color */
    width: 200px;
    height: 40px;
    border: 0;
    margin-top: 10px;   
}

  .footer-1{
    height: auto;
    width: 100%;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 40px;
    color: var(--primary);
  }
  .footer-1 h3{
    font-family: var(--font-family);
    color: var(--primary);
  }
  .q-l ul,li{
    list-style-type: none; /* This removes the default bullet style */
    padding: 0; /* Optional: removes default padding */
    margin: 0; 
    font-weight: 500;
    margin-top:10px ;
    
  }
  .q-l a{
text-decoration: none;
color: var(--primary);
font-size: 1.2em;
margin-top:5px ;
  }
  .wwo-cont{
    padding: 30px;
  }
  .wwo-cont h1{
    color:var(--primary);
    

  }
  .cont-rev{
    display: flex;
    
  }
  .flav-row{
    display: flex;

  }
  h1{
    font-family: var(--font-family);
  }
  .what-we-animate{
    background-color: var(--primary);
    
}
  .what-we-animate h4{
   color: var(--secondary);
    
}
.img-offer:hover {
    transform: scale(1.1);

    transition: transform 0.3s ease; 
}
@media (max-width: 1399px) {
    .pad-s {
      margin-left: 10%;
    }
  }
  
  @media(max-width:420px){
      .navbar-collapse{
    background-color:white;
}

    .right-requisite-2{
      margin-top: 10px;
     }
    .q-l{
        margin-left: 0!important;
    }
    .get-more-details{
     
        width:100%;
    }
    
.top-bar {
   width: 100vw;
 
}
.top-bar span{
   
    font-size: 0.7em!important;
}
    .requisite-button{
        margin-bottom: 20px;
    }
    .left-requisite{
padding: 0;
    }
    .cont-join{
        width: 100%;
        max-width:100vw;
        border-radius: 0;
    }
  
    .head-cont-join {
       width: 100%;
        padding: 0px;
    }
    .success-row{
 flex-direction: column;
    }
    .flav-row{
    flex-direction: column;
      }
    .cont-rev{
        flex-direction: column-reverse;
    }
    .post-img{
height: 400px;
    }
.contact-container h3{
    font-size: 0.8em;
}
.contact-container button{
    width: 100%;
}
    .fla-cont{
        padding: 0;
    }
    .fla-cont h1{
        margin-left: 20px;
        font-size: 2em;
        font-weight: bold;
    }
    .left-flavour, .right-flavour{
        border-radius: 0;
    }
    .footer-1{
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap:20px;
    }
    .requisite-button{
        width: 100%;
    }
    .what-we-offer-cont{
        flex-direction: column;
    }
    .what-we-animate div{
        margin-top: 20px;
    }
    .what-we-offer-cont h4{
        font-size: 1.3em;
        font-family: var(--font-family);
    }
    .wwo-cont{
        padding: 20px;
    }
    .our-team-cont{
      flex-direction: column;
      background-color: transparent;
    
    }
    .our-team-cont img{
      width: 300px;
      height: 300px;
    
    }
    
    .pad-s{
        padding: 0;
    }
    .pad-s p{
        font-size: 0.8em;
    }
    .pad-s h2{
        font-size: 1.5em;
    }
    .pad-s h6{
        margin-top: 20px;
        font-size: 1em;
    }
    header{
        background-image: url('../images/bg-header.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        height: 400px;
        width: 100%;
    }
    .center-image{
        height: 250px;
        max-width: 70%;
    }
    .left-flavour,.right-flavour{
        width: 100vw;
    }
    .footer-ftt{
        margin-bottom: 30px;
    }
    .footer-ftt button{
        width: 100%;
    }
    .btn-right-nav{
        width: 100%;
        margin-top: 30px;
    }
    .alc{
        align-items: center!important;
    }
    .navbar-nav{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        
        z-index: 1000;
        padding: 40px;
        width: 100%;
        height: auto;
    }
  
  }
  .alc{
    align-items: start;
}
  .our-team{
    color:var(--secondary);
    background-color: black;
    padding: 20px;
  }
  .what-we-offer {
    overflow: hidden;
}
@media (min-width: 768px) {
    .what-we-animate {
        animation: slideLeft 10s linear infinite; /* Adjust duration and timing function as needed */
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(-250%);
    }
}
#spinner-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7); /* semi-transparent white background */
    z-index: 10000000000; /* Ensure it's on top */
}
.franchise-container-top{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 40px;
    margin-right:40px;
    color: var(--primary);
    padding-top:50px;
}
.franchise-logo img{
    display: block;
    width: 100%;
}
.franchise-booking h1{
    margin-top: 50px;
    color: var(--primary);
}
.franchise-booking-container{
    display: flex;
    justify-content: center;
    align-items: center;
 padding: 30px;

}
.franchise-left-p p{
font-size: 1.2em;
color: var(--primary);
}
.franchise-left-p button{
    background-color: var(--primary); /* Change button outline color */
    color: var(--secondary); /* Change button color */
    width: 200px;
    height: 40px;
    border:none
}

.franchise-right-img img{
    display: block;
    width: 100%;

}
.pushti-package-container{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top:50px;
    padding: 50px;

}
.pushti-package-summary{
    background-color: var(--primary);
    color: var(--secondary);
}
.pushti-package-container h2{
font-family:var(--font-family)
}
.pushti-package-summary h1{
    padding-top: 50px;
}

.start-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.start-img img {
    max-width: 100%;
    height: auto;
    animation: zoomInOut 2s infinite alternate;
}


@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.centered-text {
    color: var(--primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top:50px ;

}
.download-button{
    background-color: var(--secondary); /* Change button outline color */
    color: var(--primary); /* Change button color */
    width: 100%;
    height: 40px;
    border: 0;
    margin-top: 10px;   
}
.whatsapp-button{
    background-color: var(--primary); /* Change button outline color */
    color: var(--secondary); /* Change button color */
    width: 100%;
    height: 40px;
    border: 0;
    margin-top: 10px;  
}
@media(max-width:450px){
.franchise-container-top{
    flex-direction: column-reverse;
}
.franchise-container-top h3{
    font-size: 1em;
}
.franchise-booking-container,.pushti-package-container{
    flex-direction: column-reverse;
}
.franchise-right-img{
    height: 400px;

}
.franchise-left-p{
    background: linear-gradient(to bottom, rgba(194, 85, 85, 0.689), rgba(104, 49, 49, 0.888) 100%);
    padding-top: 30px;
}
.franchise-left-p p{
    color: var(--secondary);
    
}
.whatsapp-button{
    width: 100%!important;
    margin-bottom: 10px;
}
.kitchen-equi{
    margin-top: 30px;
}
.cddc{
    padding: 20px;
    
}
.cddc p{
font-size: 0.8em;
    
}


}
.mar{
    margin-left: 20px;
}

.about-page-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    padding: 50px;
}
.about-page-container h1{
    color: var(--primary);
    
}
.about-page-container p{
   margin-top: 40px;
    
}

.advert {
    overflow: hidden;
}

.container-advert {
    width: 100%;
    color: var(--secondary);
    background-color: var(--primary);
    justify-content:center;
    align-items:center;
    display:flex;
    
}

.advert div {
    float: left;
    margin-right: 20px; /* Adjust spacing between items */
}
.mar{
    font-size:1.2em ;
}
.why-amrit{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-amrit h1{
    margin-top: 50px;
    color: var(--primary);
}
.cddc{
    margin-top:40px;
    margin-bottom:40px;
}
.cddc p{
    margin-top:10px;
    margin-bottom:10px;
    font-size: 1.5em;
    color: var(--primary);
}
.our-gallery {

    padding: 50px 0;
}
.our-gallery h1{

    color: var(--primary);
}
body{
    overflow-x: hidden;
}

.gallery-container {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 5%;
}

.image-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Assuming you have 6 images */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-column-gap: 20px; 
}
@media (max-width: 767px) { /* Adjust for mobile devices */
    .image-slider {
        display: flex;
        grid-template-columns: repeat(1, 1fr); /* Show one photo at a time */
    }
    
}

.image-slider img {
    width: 400px; /* Set the width */
    height: 400px; /* Set the height */
    object-fit: cover; /* Ensure images fill the fixed dimensions */
    scroll-snap-align: start;
}

.our-gallery {
    overflow: hidden;
}

