@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;
}

/* Flavour  */
#flavours {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f1f1f1;
}

#flavours h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

#flavours ul {
  list-style: none;
}

#flavours li {
  margin: 10px 0;
}

#flavours a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#featured-flavours {
  text-align: center;
  padding: 3rem 2rem;
}

#featured-flavours h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

#featured-flavours ul {
  list-style: none;
}

#featured-flavours li {
  display: inline-block;
  margin: 10px 20px;
}

#featured-flavours a {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background-color: var(--c-brand);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#featured-flavours a:hover {
  background-color: rgb(240, 225, 111);
  color: black;
}
.flavours-description {
  font-family: "Merriweather", serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40;
}

.flavor-list li {
  flex: 1 1 45%;
}

.flavor-list li a {
  display: block;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}
.image-top {
  object-fit: contain;
  width: 20%;
  height: auto;
  max-width: 400px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--c-brand);
  border-radius: 60%;
}
.span-carousel-control {
  background-color: var(--c-brand);
  border-radius: 60%;
}
.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;
}
.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;
}
@media (max-width: 480px) {
  .flavor-list li {
    flex: 1 1 100%;
  }
}

/* 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;
}
h1 {
  text-shadow: 5px 5px 8px #6d0789;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.12em;
}
h3 {
  text-shadow: 2px 2px 8px #9e0fe1;
  /* Animated Gradient */
  background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #91eae4);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s ease infinite;

  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.05em;
  margin-bottom: 5rem;
  margin-top: 0;
}
h4 {
  color: white;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.05em;
  margin-bottom: 4rem;
  font-weight: 100;
}
p {
  font-family: "Merriweather", serif;
  text-align: justify;
  visibility: visible;
  text-align: justify;
  margin-top: 4rem;
  line-height: 1.5;
  margin-top: 4rem;
  line-height: 1.5;
  color: black;
}
.push-right {
  font-family: "Merriweather", serif;
  font-size: medium;
  text-align: justify;
  padding-left: 20px;
  margin-left: 20px;
  color: white;
}

h5 {
  font-weight: 600;
  color: rgb(240, 225, 111);
  font-family: serif;
}
@media (max-width: 992px) {
  .navbar-nav .nav-link,
  .btn-brand {
    margin-bottom: 8px;
    text-align: center;
  }
}

.small-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.purple-bg {
  background-color: var(--c-brand);
  padding: 40px;
  display: inline-block;
  width: 80vh;
  min-height: 65vh;
  margin: 0 auto;
}

#hero {
  background: url(images/Background.png);
  background-position: center;
  background-size: cover;
}

/* button links */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.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;
}
/* 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;
}
h5 {
  font-weight: 600;
  color: rgb(240, 225, 111);
}
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%;
}

/* same size images for carousel */
.same-size {
  height: 200px; /* Adjust the height as needed */
  object-fit: cover; /* Ensures the images cover the area without stretching */
}

/* raspberry image */
.standard-height {
  height: 900px; /* Adjust as per your design */
  object-fit: cover; /* Ensures the image maintains its aspect ratio and doesn't stretch */
  width: 100%; /* Ensures responsiveness */
}

@media (max-width: 768px) {
  .standard-height {
    height: auto; /* Let images adjust naturally for small screens */
  }
}

/*  About Page */

/* General Styles */
.image-hover-effect {
  width: 100%;
  max-width: 300px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.image-hover-effect:hover {
  transform: scale(1.03);
}

.image-container {
  text-align: center;
  margin: 20px auto;
  overflow: hidden;
}

.text-container {
  margin-top: 15px;
  text-align: justify;
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .image-hover-effect {
    max-width: 250px;
  }

  .image-container {
    margin: 15px auto;
  }

  .row.mb-5 {
    margin-bottom: 30px; /* Adjust margin for medium screens */
  }
}

@media (max-width: 480px) {
  .image-hover-effect {
    max-width: 200px;
  }

  .image-container {
    margin: 10px auto;
  }

  .row.mb-5 {
    margin-bottom: 20px; /* Adjust margin for small screens */
  }
}

.col-md-6 img {
  max-height: 900px;
  object-fit: cover;
}

.col-md-6 p {
  text-align: justify;
  margin-top: 10px;
}

/* Align images with their respective text */
.col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-container {
  text-align: justify;
  font-size: 16px;
}
