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

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

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

/* contact */

#contact-id {
  background-color: var(--c-brand);
  color: white;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-heading {
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: left;
  font-size: 4rem;
  margin: 0;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-heading {
    font-size: 1.25rem;
    top: 10px;
    left: 10px;
    margin-bottom: 1.5rem;
  }
}

.contact-info {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-info p {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: larger;
}
/* contact form */
.contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}
.contact-form h2 {
  color: black;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.form-control {
  border-radius: 4px;
  font-size: 0.875rem;
}
.form-label {
  color: black;
}
.btn-custom {
  background-color: var(--c-brand);
  color: white;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn-custom:hover {
  background-color: #0d100e;
  color: white;
}

/* 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;
}
