@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: "Nunito", sans-serif !important;
}

body {
  overflow-x: hidden;
}
.title{
  font-family: "Changa One", sans-serif !important;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.custom-navbar
{
  background-color: #fff;
  padding:10px 0px;
}
.menulist{
      padding: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: center;
}

.navbar a {
  margin-left: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* HERO */
.hero {
  min-height:100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
   background: linear-gradient(135deg, #5b1fa6, #9333ea);
}

.hero-text h2 {
  font-size: 60px;
  animation: fadeLeft 1s ease forwards;
    font-family: "Changa One", sans-serif !important;
}

.hero-text p {
  margin: 20px 0;
  font-size: 18px;
  opacity: 0.9;
}

.hero-text button {
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  background: #ffcc00;
  font-size: 16px;
  cursor: pointer;
}

/* CANS */
/*.hero-cans {
  position: relative;
  width: 400px;
  height: 400px;
}*/

.can {
  position: absolute;
  animation: float 4s ease-in-out infinite;
}
.success { color:green; text-align:center; }
        .error { color:red; text-align:center; }
        #enquirySuccess{    left: 100px;
    right: 0;
    width: 463px;
    margin: 0 auto;
    top: 76px;
    z-index: 9;}

.orange { left: 0; top:30px; animation-delay: 0s;    width: 189px;
 }
.cola { left: 123px; top:-22px; animation-delay: 1s;    width: 189px;
 }
.lemon { right: 0; top: 30px; animation-delay: 2s;    width: 189px;
 }
.professional_section{
  background-image: url('assets/images/divider.png');
  background-size: cover;
  background-position: top;
  height:557px;
  width: 100%;
  position: relative;
}
/*.professional_section::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  background: #000000ad;
}*/

/* FLAVOURS */
.flavours {
  padding: 80px 60px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.card {
  width: 220px;
  height: 280px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.4s;
}

.card:hover {
  transform: translateY(-30px) scale(1.05);
}

.card.orange { background: linear-gradient(#ff9800, #ff5722); }
.card.cola { background: linear-gradient(#673ab7, #3f51b5); }
.card.lemon { background: linear-gradient(#cddc39, #8bc34a); }

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
}

/* ANIMATIONS */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-cans {
    margin-top: 40px;
  }
}

.text-dark{
  color: #000 !important;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: 0.4s;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top:101px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 6;
    gap: 0;
  }

  nav.active {
    max-height: 300px;
  }

  nav a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #c8c8c8;
    text-align: start;
  }
}


@media screen and (min-width: 320px) and (max-width: 375px) {
  .container{
    width: 100%;
  }
  .hero {
    min-height: 85vh !important;
    display: flex;
    align-items: top;
    padding: 0px !important;
    position: relative;
  }
  .success { color:green; text-align:center; }
    .error { color:red; text-align:center; }
    #enquirySuccess{    left: 0px;
    right: 0;
    width:100%;
    margin: 0 auto;
    top:50px;
    z-index: 9;}
  .canIcon img{
           width:93px;
        display: flex;
        justify-content: center;
        align-items: center;
  }
  .hero-text h2{
    font-size: 30px;
  }
  .cola {
    left:118px;
    top: -37px;
    animation-delay: 1s;
}
}
@media screen and (min-width:376px) and (max-width:401px) {
  .container{
    width: 100%;
  }
  .hero {
    min-height: 85vh !important;
    display: flex;
    align-items: top;
    padding: 0px !important;
    position: relative;
  }
  .success { color:green; text-align:center; }
    .error { color:red; text-align:center; }
    #enquirySuccess{    left: 0px;
    right: 0;
    width:100%;
    margin: 0 auto;
    top:50px;
    z-index: 9;}
  .canIcon img{
           width:93px;
        display: flex;
        justify-content: center;
        align-items: center;
  }
  .hero-text h2{
    font-size: 30px;
  }
  .cola {
    left:164px;
    top: -37px;
    animation-delay: 1s;
}
}