*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Uchen', serif;
}
.all-content{
   background: #FFFFFF; /* Adjust direction if needed */
    
}

/* navbar */
#navbar{
    background: #FFE4E1;/* Adjust direction if needed */
    /* padding-left: 60px; */
     font-size: 20px;
}
#logo{
    font-size: 20px;
    color: white;
}
#logo img{
    margin-bottom: 10px;
}

/* .navbar-nav{
    margin-left: 10px;
} */
.navbar-collapse ul {
    float: right;
    margin-right: 100px;
  }

  
  .navbar-collapse {
    display: flex;
    justify-content: flex-end;
  }
    
  @media screen and (max-width: 770px) {
    .navbar-collapse ul {
      float:none; /* Remove float for flexbox to work */
      justify-content: center; /* Center the list items */
    }
    .navbar-collapse {
        display:block;
        justify-content:left;
      }
  }
  
.navbar-nav .nav-item .nav-link{
    color: BLACK;
    font-weight: bold; font-size: 19px;
    margin-left: 15px;
    transition: 0.5s ease;
}
.nav-link:hover{
    background-color: white;
    color: rgb(231, 15, 15);
    border-radius: 5px;
}
.icons{
    margin-left: 30px;
}
.icons img{
    margin-left: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}
.icons img:hover{
    transform: translateY(-5px);
}
@media screen and (max-width:330px){
    #logo{
        font-size: 15px;
    }
}
/* navbar end */
/* home section */
.home{
    width: 100%;
    height: 100vh; /* Use viewport height for full view */
    display: flex;
    background-image:  url(./image/cakeanimation.gif);
    background-size:cover;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}
/* Media query for phone devices (Method 1) */
@media (max-width: 840px) {
    .home {
        background-position: center ; /* Adjust position as needed */
        background-repeat: no-repeat; /* Prevent tiling */
        background-image:  url(./image/bgfilehome.gif);
    }
    .images img{
        display:none;
    }

  }
  
.home .img{
    flex: 1 1 400px;
}
.home .img img{
    width: 100%;
}
.home .content{
    flex: 1 1 400px;
    margin-left: 60px;
}
.content h3{
    color: black;
    font-size: 60px;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
}
.content h2{
    font-size: 40px;
    color: white;
    text-shadow: 1px 1px 1px black;
    font-weight: 900;
}
.changecontent::after{
    content: ' ';
    color: Black;
    animation: changetext 10s infinite linear;
    font-weight: 900;
}
@keyframes changetext{
    0%{content: "Themed Cakes";}
    20%{content: "Celebration Cakes";}
    50%{content: "Baby Shower Cakes";}
    60%{content: "Wedding Cake";}
    100%{content: "Cup Cakes";}
}
.content p{
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
}
.content .btn{
    width: 110px;
    height: 38px;
    background-color: black;
    color: white;
}
@media screen and (max-width:800px){
    .content h3{
        font-size: 50px;
    }
}
@media screen and (max-width:860px){
    .home{
        height: 120vh;
    }
}
@media screen and (max-width:560px){
    .home{
        height: 100vh;
    }
}
@media screen and (max-width:330px){
    .content h2{
        font-size: 30px;
    }
    .content h3{
        font-size: 30px;
    }
}
/* home section end */

/* top cards */
#box{
    margin-top: 50px;
}
#bg -warning{
    box-shadow: 0px 0px 5px black;
    margin-top: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}
#box .card:hover{
    transform: translateY(-10px);
}
/* top cards end */
/* banner */
.banner{
    width: 100%;
    height: 60vh;
    display: flex;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(./image/banner2.png);
    background-size: cover;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0px 0px 10px black;
    margin-top: 50px;
}
.banner .img{
    flex: 1 1 400px;
}
.banner .img img{
    width: 100%;
}
.banner .content{
    flex: 1 1 400px;
    margin-left: 60px;
    margin-top: 60px;
}
.banner .content h3{
    color: white;
    font-weight: bold;
}
.banner .content h2{
    font-size: 50px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
}
.banner .content p{
    color: white;
}
#btnorder button{
    width: 150px;
    height: 32px;
    letter-spacing: 5px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
@media screen and (max-width:800px){
    .banner .content h3{
        font-size: 50px;
    }
}
@media screen and (max-width:855px){
    .banner{
        height: 100vh;
    }
}
/* banner end */
/* product cards */
#product-cards h1{
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: black;
    text-shadow: 1px 1px 1px black;
    border-bottom: 2px solid #FFE4E1;
}
#product-cards .card{
    /* background-color: #FFE4E1; */
    box-shadow: 0 0 3px black;
    border-radius: 5px;
    cursor: pointer;
}
.overlay{
    display: block;
    opacity: 0;
    position: absolute;
    top: 10%;
    margin-left: 0;
    width: 70px;
}
#product-cards .card:hover .overlay{
    opacity: 1;
    margin-left: 5%;
    transition: 0.5s ease;
}
.overlay i img{
    background-color: #2e1700;
    height: 30px;
    width: 30px;
    font-size: 20px;
    padding: 7px;
    margin: -20%;
    margin-bottom: 5%;
    cursor: pointer;
}
.overlay .btn-secondary{
    background: transparent !important;
    border: none;
    box-shadow: none;
}
#product-cards h3{
    color: black;
    text-shadow: 1px 1px 1px black;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 23px;
}
.star .checked{
     color: #FFE4E1;
}
#product-cards p{
    color: #2e1700;
    font-weight: bold;
}
#product-cards h6{
    font-size: 20px;
    color: #2e1700;
    font-weight: bold;
}
#product-cards h6 span button{
    width: 100px;
    height: 26px;
    color: white;
    font-size: 15px;
    background: black;
    letter-spacing: 3px;
    border: 2px solid white;
    border-radius: 5px;
    float: right;
    font-weight: bold;
    transition: 0.5s ease;
    cursor: pointer;
}
#product-cards h6 span button:hover{
    background-color: #2e1700;
    color: white;
}
.card-body h4{
    background-color:black;
}
/* product cards end */

/* gallary */
#gallary{
    margin-top: 50px;
}
#gallary h1{
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: black;
    text-shadow: 1px 1px 1px black;
    border-bottom: 2px solid white;
}
#gallary .card{
    box-shadow: 3px 3px 3px black;
    cursor: pointer;
}
#gallary .overlay{
    opacity: 0;
    width: 100%;
    color: white;
    text-shadow: 1px 1px 1px black;
}
#gallary .card:hover .overlay{
    opacity: 5;
    margin-top: 20%;
    transition: 0.5s ease;
}
/* gallary */

/* about */
#about{
    margin-top: 50px;
}
#about h1{
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: black;
    text-shadow: 1px 1px 1px black;
    border-bottom: 2px solid white;
}
#about .card{
    background-color: white;
    box-shadow: 0px 0px 5px black;
}
#about p{
    color: black;
    font-weight: bold;
    font-size: 20px;
}
#bt button{
    width: 150px;
    height: 32px;
    letter-spacing: 3px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
}
@media screen and (max-width:1000px){
    #about p{
        font-size: 10px;
    }
}
@media screen and (max-width:760px){
    #about p{
        font-size: 20px;
    }
}
/* about */

/* contact */
#contact{
    margin-top: 100px;
}
#contact h1{
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: black;
    text-shadow: 1px 1px 1px black;
    border-bottom: 2px solid white;
}
#contact input{
    background-color: white;
}
#contact input::placeholder{
    color: white;
}
#contact textarea{
    background-color:white;
}
#contact textarea::placeholder{
    color: white;
}
#messagebtn{
    text-align: center;
}
#messagebtn button{
    width: 200px;
    height: 30px;
    letter-spacing: 3px;
    font-weight: bold;
    background: transparent;
    border: 2px solid white;
    color: white;
    transition: 0.5s;
    cursor: pointer;
}
#messagebtn button:hover{
    background-color: white;
    color:black;
}
/* contact */

/* footer */
#footer{
    width: 100%;    
    background-color: #FFE4E1;
    box-shadow: 0px 0px 5px black;
    margin-top: 100px;
}
#footer h1{
    color: Balck;
    padding-top: 30px;
}
#footer p{
    color: black;
}
.icons i{
    background-color: #FFE4E1;
    color: #573818;
    border-radius: 50px;
    padding: 6px;
    font-size: 30px;
    transition: 0.5s;
    cursor: pointer;
}
.icons i:hover{
    background-color: #FFE4E1;
    color: #FFE4E1;
}
.copyright{
    color: Black;
    margin-top: 20px;
}
.credite{
    font-size: 20px; color: black;
}
/* footer */
html{
    scroll-behavior: smooth;
}
.arrow{
    position: fixed;
    background-color: #FFE4E1;
    border-radius: 50px;
    height: 50px;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
}

/*---------------------
  Product
-----------------------*/
.product {
    padding-top: 50px;
  }
  
  .product__item {
    margin-bottom: 40px;
  }
  .product__item:hover .product__item__pic .product__label span {
    background: #f08632;
    color: #ffffff;
  }
  .product__item:hover .product__item__text .product__item__price {
    opacity: 0;
    visibility: hidden;
  }
  .product__item:hover .product__item__text .cart_add {
    opacity: 1;
    visibility: visible;
    bottom: -4px;
  }
  
  .product__item__pic {
    height: 270px;
    position: relative;
    background-position: center;
  }
  .product__item__pic .product__label {
    position: absolute;
    left: 0;
    bottom: -15px;
    text-align: center;
    width: 100%;
  }
  .product__item__pic .product__label span {
    display: inline-block;
    font-size: 14px;
    color: #111111;
    background: #ffffff;
    padding: 6px 10px 4px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 10px rgba(223, 223, 224, 0.7);
            box-shadow: 0 0 10px rgba(223, 223, 224, 0.7);
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
  }
  
  .product__item__text {
    padding-top: 40px;
    text-align: center;
    position: relative;
  }
  .product__item__text h6 {
    margin-bottom: 16px;
  }
  .product__item__text h6 a {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
  }
  .product__item__text .product__item__price {
    color: #111111;
    font-weight: 600;
    font-size: 16px;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
  }
  .product__item__text .cart_add {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
    visibility: hidden;
  }
  .product__item__text .cart_add a {
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    border-bottom: 2px solid #f08632;
    padding-bottom: 4px;
  }











  #bookingform{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 130vh;
    background-image:url("./image/sjdfhksjfj.gif");
    background-size:cover;
    background-position: center center;
  }

  .box {
    /* position: relative; */
    width: 600px;
    height: 600px;
    background: repeating-conic-gradient(from var(--a), #f7ad24 0%,
    #f7ad24 5%, transparent 5%, transparent 40%, #f7ad24 50%);
    filter: drop-shadow(0 15px 50px #000);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

  }

  /* .box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(from var(--a), #24d7f7 0%,
    #24d7f7 5%, transparent 5%, transparent 40%, #24d7f7 50%);
    filter: drop-shadow(0 15px 50px #000);
    border-radius: 20px;

  }
  
  .box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #2d2d39;
    border-radius: 15px;
    border: 8px solid #25252b;
  } */
  .login {
    /* position: absolute; */
    inset: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transition: 0.5s;
    color: #fff;
    overflow: hidden;
  }

  .loginBx {
    /* position: relative; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 70%;
  }
 
  .loginBx h2 {
    text-transform: uppercase;
    font-weight: 600;
    /* letter-spacing: 0.2em; */
  }

  .loginBx input {
    width: 100%;
    padding: 10px 20px; 
    outline: none;
    border: none;
    font-size: 17px;
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    border: 2px solid #fff;
  }

.loginBx  textarea{
    width: 100%;
    padding: 10px 20px; 
    height:120px;
    outline: none;
    border: none;
    font-size: 17px;
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    border: 2px solid #fff;
  }
  
  .loginBx input::placeholder  ,.loginBx  textarea::placeholder{
    color: white;
    font-family:Georgia, 'Times New Roman', Times, serif;
  }
  
  .loginBx input[type="submit"] {
    background: #FFE4E1;
    border: none;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: 0.5s;
  }
  
  .loginBx input[type="submit"]:hover {
    box-shadow: #FFE4E1;
  }
  #formhead{
    font-weight: 600;
    font-family:Georgia, 'Times New Roman', Times, serif;
  }

  



#cakemargintop ,#gallerymargintop{
    margin-top: 10px;
}



  