/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* to prevent side scroll */
}

h1,
h2,
h3 {
    font-family:sans-serif;
    font-weight: 600;
}

/* Paragraph and body text */
body,
p,
a,
span,
li {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Hero Section */
.hero {
    height: 100vh;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0) 65%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 30%),
        linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%), url('img/Hero_img.png') no-repeat center center/cover;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 1rem;
}

.nav-item {
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    /* better than top: 8px */
    left: 10%;
    /* to center it a bit */
    width: 60%;
    height: 2px;
    background: white;
    border-radius: 2px;
}
.btn-warning {
      background: linear-gradient(to right, #fcae12, #cb8c0f);
    border: none;
    color: #fff;
    transition:all 0.3s ease-in-out;
    box-shadow: none;
}

.btn-warning:hover {
    background: linear-gradient(to right, #fff, #e3e2e2);
    color: #fcae12;
    /* box-shadow: 0 8px 15px rgba(255, 168, 7, 0.6); */
}

.btn-outline-light{
       transition:all 0.3s ease-in-out;
}
.btn-outline-light:hover{
     background: linear-gradient(to right, #fff, #e3e2e2);
}




button {
  position: relative;
  margin: 0;
  padding: 14px 29px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid rgba(22, 76, 167, 0.6);
  border-radius: 10px;
  color: #ffa807;
  font-weight: 400;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);

  /* Infinite animation applied here */
  animation: rotate624 1s ease-in-out infinite;
}



button span {
  color: #ffa807;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;

  /* Infinite animation */
  animation: storm1261 1s ease-in-out infinite;
  animation-delay: 0.06s;
}

/* Remove the hover animation as it's replaced by infinite animation */

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.btn-shine {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}

.btn-shine span {
  z-index: 20;
}

.btn-shine:after {
  background: #ffa807;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn-shine:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

#shine_custom{
      background-color: #ffa807;
        color: #fff;
          border: 1px solid #ffa807;
}
#shine_custom span {        color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;

  /* Infinite animation */
  animation: storm1261 1s ease-in-out infinite;
  animation-delay: 0.06s;
}

.order {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 50px;
      background: linear-gradient(to right, #fff, #e3e2e2);
          color: #fcae12;
}

.navbar-brand img {
    width: 90%;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    /* font-family: cursive; */
}

.experince {
    background-color: rgb(234, 217, 199);
    position: relative;
    padding: 3rem !important;
}

.exp_img img {
    width: 85%;
    width: 80%;
    border-radius: 11px;
}

.exp_para {
    font-size: 17px;
    line-height: 33px;
    text-align: justify;
}


.coffee_bee img {
    position: absolute;
    bottom: 0;
    right: 30px;
}

.selection {
    position: relative;
}

.little_bee {
    position: absolute;
    top: -123px;
    left: 137px;
}

.little_bee img {
    width: 70%;
}

.second_little_bee {
    position: absolute;
    top: -140px;

    right: -95px;
}

.second_little_bee img {
    width: 80%;
}

.selction_container {
    position: relative;
}

.third_little_bee {
    position: absolute;
    top: 436px;



}

.third_little_bee img {
    width: 80%;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    max-width: 300px;
    height: 350px;
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
}

.flip-card-front {
    background-color: bisque;
}

.flip-card-back {
    background: linear-gradient(180deg, #ebe0d6 0%, rgb(209 191 171) 100%);
    color: white;
    transform: rotateY(180deg);

}

.title {
    color: #653420;
    /* Deep coffee brown */
    font-weight: 700;
    font-size: 25px;
}

.falvour,
.falvour_two {
    color: #7b5c53;
    /* Mocha/chocolate shades */
    font-size: 0.95rem;
    font-weight: 600;
    font-family: cursive;
}

.user_row {
    position: relative;
}

.falvour_bee {
    position: absolute;

    left: -24px;
    display: none;

}

.falvour_bee img {
    width: 30%;
}

.price {
    color: #d84315;
    /* Burnt orange for attention */
    font-size: 1.1rem;
    font-family: cursive;
}

.description {
    color: #7b5c53;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: cursive;
}
.order {


    padding: 10px 16px;

}



span {
    color: #a97456;
    font-weight: 700;
}


.text-brown {

    font-size: 21px;
    color: #7b5c53;
    font-family: cursive;
}

.selection_h {
    color: #7b5c53;

}

.card_3 {
    position: relative;
}




.feedback {
    background-color: rgb(234, 217, 199);
}

.user_detials {
    background-color: rgb(249, 239, 229);
    color: black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    /* Or gap between cards */
    align-items: center;
    flex-direction: column;
    /* Important: Cards side by side */
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.user_detials:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    /* smooth hover shadow */
    transform: translateY(-5px);
}

.user_img img {
    border-radius: 50%;
    width: 60%;
}

.User_name {
    color: #653420;
    /* Deep coffee brown */
    font-weight: 700;
    font-size: 25px;
}

.User_mail {
    color: #7b5c53;
    font-weight: 500;
    font-size: 20px;
}

.user_para {
    color: black;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: cursive;
    text-align: center;
}


.footer {
    background: rgba(44, 22, 13, 0.88);
    color: #fff;
    padding: 2rem 1rem 1.5rem 1rem;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.footer a {
    color: #e1c9b2;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer a:hover,
.footer a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.footer .footer-logo {
    font-family: "Georgia", serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer .footer-logo i.fa-coffee-bean {
    font-style: normal;
    font-size: 1.4rem;
    color: #cbb6a4;
}

.footer .address,
.footer .email-contact {
    /* max-width: 270px; */
    font-family: cursive;
}

.footer .email-contact i {
    margin-right: 0.3rem;
    font-size: 0.9rem;
    color: #cbb6a4;
}

.footer .footer-links a {
    display: block;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.footer .footer-links a:last-child {
    margin-bottom: 0;
}

.footer .footer-links {
    font-weight: 500;
}

.footer .social-icons a {
    color: #fff;
    font-size: 1.4rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer .social-icons a:first-child {
    margin-left: 0;
}

.footer .social-icons a:hover,
.footer .social-icons a:focus {
    color: #e1c9b2;

}

.footer-bottom {
    justify-content: end;
}

@media (max-width: 576px) {
    .footer .row>div {
        margin-bottom: 1.5rem;
    }

    .footer .social-icons {
        margin-top: 1rem;
    }

    .footer .footer-logo {
        justify-content: center;
    }

    .footer .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

.footer-bottom {
    border-top: 1px solid #6d4c3c;
    margin-top: 1rem;
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: #baa591;
}

.footer-bottom a {
    color: #baa591;
    margin-left: 1.5rem;
    text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: #fff;

}


.footer .Active {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

/* From Uiverse.io by david-mohseni */
.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    justify-content: center;
}

.wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
}

.icon svg {
    color: #6f4e37;
    /* Coffee Brown or any visible color */
    transition: color 0.3s ease;
}

.icon:hover svg {
    color: white;
    /* Lighter shade or highlight on hover */
}


.exp_img img {
    width: 100%;
    height: auto;
}

.exp_content h1 {
    font-size: 2.5rem;
}

.exp_para {
    font-size: 1rem;
}

.Hero_container {
    padding: 3rem;
}

.nav_container {
    padding: 1rem;
}


/* === Extra Large Devices (Desktops, 1200px and up) === */
@media (max-width: 1326px) {
    .Hero_container {
        padding: 0px 0px 0px 3rem;
    }

    .little_bee {

        top: -100px;

    }

    .little_bee img {
        width: 60%;
    }

    .coffee_bee img {
        width: 20%;
    }

    .exp_img img {
        width: 100%;
        height: auto;
    }

    /* Example: Increase spacing or layout width */
    .container {
        max-width: 1140px;
    }
}


/* === Large Devices (Laptops, 992px to 1199px) === */
@media (max-width: 1199px) {
    /* .exp_img img {
        width: 100%;
    } */



    .flip-card {

        max-width: 290px;

        height: 300px;

    }
}

@media (max-width: 1100px) {
    .exp_img img {
        width: 100%;
        height: auto;
    }

    .little_bee {

        left: 74px;
    }
}

@media (max-width: 1078px) {
    .navbar-brand {
        width: 218px;
    }

    .navbar-brand img {
        width: 100%;
    }

    a {
        font-size: 15px;
    }
}


/* === Medium Devices (Tablets, 768px to 991px) === */
@media (max-width: 991px) {
    .hero {
        background-position: center top;
        text-align: center;
    }

    .navbar-brand {
        width: fit-content;
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .navbar-brand img {
        width: 70%;
    }

    .nav_container {
        padding: 0px 0px 0px 0px;
    }

    .exp_img img {
        width: 90%;
    }

    .third_little_bee {
        top: 350px;
    }

    .user_detials {
        flex-direction: column;
        padding: 20px;
    }

    /* .navbar-brand img {
        width: 100px;
    } */

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-collapse .btn {
        margin-bottom: 10px;
    }

    .exp_content h1 {
        font-size: 2rem;
    }

    .exp_para {
        font-size: 0.95rem;
    }

    .coffee_bee img {
        max-width: 220px;
    }

    .Hero_container {
        text-align: start;
        padding: 3rem 0px 0px 3rem;
    }

    .nav-link.active::after {

        left: 0;
        width: 100%;
        height: 1px;

    }

    .little_bee img {
        width: 55%;
    }

    .third_little_bee {
        top: 442px;
    }

    .third_little_bee img {
        width: 70%;
    }

    .little_bee {
        left: 35px;
    }

    .flip-card {
        max-width: 280px;
        height: 290px;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: white;
        border-radius: 2px;
    }
}

@media (max-width: 800px) {
    .exp_img img {
        width: 100%;
        height: 400px;
    }

    .footer-logo img {
        width: 100%;
    }
}

/* === Small Devices (Phones, 576px to 767px) === */
@media (max-width: 767px) {
    /* .hero {
        height: auto;
        padding: 4rem 2rem;
        text-align: center;
    } */

    .exp_img img {
        width: 90%;
        height: 370px;
    }

    .exp_img,
    .exp_para {
        text-align: center;
    }

    /* .little_bee,
    .second_little_bee,
    .third_little_bee {
        display: none;
        
    } */

    .little_bee {
        left: -25px;
    }

    .flip-card {
        /* max-width: 54%; */
        height: 330px;
        margin: auto;
    }

    .user_detials {
        width: 50%;
        margin-bottom: 1rem;
    }

    /* .navbar-brand img {
        width: 80px;
    } */

    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .exp_img,
    .exp_content {
        text-align: center;
    }

    .exp_content h1 {
        font-size: 1.8rem;
    }

    .exp_para {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .coffee_bee img {
        max-width: 180px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {

        width: fit-content;
    }

    .footer-bottom a {

        margin-left: 1rem;

    }

    .falvour_bee {
        display: block;
    }

    .coffee_bee img {
        width: 30%;
    }
}

@media(max-width:600px) {
    .text-brown {
        font-size: 19px;

    }

    .user_detials {
        width: 80%;

    }
}

/* === Extra Small Devices (Very small phones < 576px) === */
@media (max-width: 500px) {
    .little_bee img {
        width: 50%;
    }

    .third_little_bee img {
        width: 50%;
    }

    .navbar-brand img {
        width: 80%;

    }

    .falvour_bee img {
        width: 40%;
    }

    .lead {
        font-size: 1rem;
    }

    .title {
        font-size: 20px;
    }

    .User_name {
        font-size: 20px;
    }

    .User_mail {
        font-size: 16px;
    }

    .exp_para {
        font-size: 0.85rem;
        text-align: justify;
    }

    .footer {
        text-align: center;
    }

    .exp_content h1 {
        font-size: 1.5rem;
    }

    .exp_para {
        font-size: 0.85rem;
    }

    .btn-warning {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .flip-card {
        max-width: 58%;
        height: 300px;
        margin: auto;
    }

    .Hero_container {
        text-align: center;
        padding: 3rem 0px 0px 0px;
    }

    .navbar-brand {

        display: flex;
        ;
        justify-content: start;
        align-items: center;
    }

    /* .navbar-brand img {
        width: 100%;
    } */

    .wrapper {
        height: 120px;
        width: 100%;
    }

    ol,
    ul {
        padding-left: 0rem;
    }

}

@media (max-width:460px) {
    .wrapper {
        height: 120px;
        width: 100%;
    }

    ol,
    ul {
        padding-left: 0rem;
    }

    .user_detials {
        width: 90%;
    }

}

@media (max-width:400px) {
    .exp_img img {
        width: 100%;
        height: 338px;
    }

    .flip-card {
        max-width: 70%;
        height: 291px;
    }

    .falvour_bee {
        z-index: 2;
    }

    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 398px) {
      .navbar-brand{
        max-width: 70%;
    }
    .footer-bottom {
        justify-content: center;
        gap: 38px;
    }

    .footer-bottom a {
        margin-left: -1rem;
        font-size: 12px;
    }

    .wrapper {

        padding-top: 20px;
    }

    .coffee_bee img {
        width: 40%;
        right: -5px;
    }

    .experince {

        padding: 2rem !important;
    }
}

@media(max-width:330px) {
     .experince {
        padding: 1rem !important;
    }
    .exp_img{
        padding: 0;
    }

    .exp_content{
        padding: 0;
    }

        .little_bee {
        top: -61px;
    }
        .flip-card {
        max-width: 95%;
        height: 287px;
    }
        .third_little_bee {
        top: 1143px;
    }
    .second_little_bee {

    display: none;
}
    .text-brown {
        font-size: 15px;
    }
        .user_detials {
        width: 91%;
        height: 445px;
    }  
  
}