@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Merriweather:wght@400;700&display=swap");

:root {
  --c-dark: #212529;
  --c-brand: #4f328f;
  --c-body: #8a8888;
  --font-base: " font-family: helvetica, serif;";
}
body,
html {
  overflow-x: hidden;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

p,
li,
span {
  font-family: "Merriweather", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

a {
  text-decoration: none;
  color: var(--c-body);
}
a:hover {
  color: var(--c-body);
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: inherit;
  letter-spacing: 1px;
}
nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  border-radius: 5px;
  padding: 10px 0;
}

nav .dropdown-menu li {
  padding: 8px 20px;
}

nav .dropdown-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
}

nav .dropdown-menu a:hover {
  background-color: #ffcc00;
  color: #333;
}

nav li:hover .dropdown-menu {
  display: block;
}
/* Navbar */
.navbar {
  padding: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-nav .nav-link {
  color: #e8e6e6;
  font-size: 1.2rem;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link:hover {
  color: var(--c-body);
}

.navbar-toggler-icon {
  background-color: white;
  border-radius: 2px;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgb(240, 225, 111);
}
/* Image size style */
.image-top {
  object-fit: contain;
  width: 20%;
  height: auto;
  max-width: 400px;
}

.btn-brand {
  background-color: var(--c-brand);
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  display: inline-block;
  margin: 10px auto;
  text-align: center;
  transition: background-color 0.3s ease;
}
.btn-brand:hover {
  background-color: rgb(240, 225, 111);
  color: black;
}

@media (max-width: 480px) {
  .flavor-list li {
    flex: 1 1 100%;
  }
}
img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--c-brand);
  border-radius: 60%;
}
span {
  background-color: var(--c-brand);
  border-radius: 60%;
}
.p-text {
  color: #0d100e;
  margin-top: 20px;
  font-size: 1rem;
  font-family: "Merriweather", serif;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 40;
  text-align: center;
}

.carousel-indicators button {
  width: 30px;
  height: 4px;
  background-color: #fff;
  border: none;
  margin: 5px;
}

.carousel-indicators button.active {
  background-color: #000;
}
.flavour-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8rem;
}

@media (max-width: 992px) {
  .navbar-nav .nav-link,
  .btn-brand {
    margin-bottom: 8px;
    text-align: center;
  }
}

/* Footer Styling */
.footer {
  background-color: #343a40;
  color: #f8f9fa;
}

.footer h5 {
  font-size: 1.25rem;
}

.footer a:hover {
  text-decoration: underline !important;
}

.footer a {
  transition: color 0.3s ease;
}

footer p {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.6;
}

footer .text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.text-right {
  display: flex;
  font-family: "Merriweather", serif;
}
footer p.mb-0 {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  font-family: "Merriweather", serif;
}
footer {
  width: 100%;
}
