:root {
  --saffron: #FF9933;
  --green: #138808;
  --brown: #6f4e37;
  --accent: #FFCC00;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Alkatra', cursive;
  color: var(--saffron);
  font-weight: 600;
}

p, li, a, input, textarea, button {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

/* Header */
header {
  background-color: var(--saffron);
  padding: 0.25rem 0 !important;
}

.custom-header {
  background-color: var(--saffron);
    padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

header .logo img {
  height: 60px;
  border-radius: 10px;
}

header .site-title {
  font-family: 'Alkatra', cursive;
  font-size: 36px;
  margin-left: 15px;
  color: white;
}

/* Navbar */
.navbar-toggler {
  border: none;
  background: none;
  font-size: 1.5rem;
  color: white;
  border-color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link,
.nav-link,
nav a {
  color: white !important;
  font-weight: 500;
  text-decoration: none;
  margin-left: 25px;
}

.navbar-nav .nav-link:hover,
.nav-link:hover,
nav a:hover {
  color: var(--accent);
}

/* Responsive Navbar for small devices */
@media (max-width: 768px) {
  header nav {
    display: none;
    flex-direction: column;
    text-align: center;
  }

  header.active nav {
    display: flex;
  }

  .navbar-toggler {
    display: block;
  }
}

@media (max-width: 375px) {
  .custom-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
  }

  .navbar-brand-title {
    font-size: 18px !important;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    text-align: center;
  }
}

/* Footer */
footer {
  background-color: var(--saffron);
  color: white;
  padding: 40px 0 20px;
  font-family: 'Alkatra', cursive;
}

footer h5, footer h6 {
  color: black;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-logo img {
  border-radius: 8px;
}

.footer-contact {
  color: black;
}

.social-icons a {
  font-size: 20px;
  margin-right: 15px;
}

/* Buttons */
.btn-dark {
  background-color: var(--brown);
  border: none;
}

.btn-dark:hover {
  background-color: #5a3d2c;
}

.text-muted {
  color: #ccc !important;
}

/* Menu styling */
.menu-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.menu-item h5,
.menu-item h6,
.menu-item p {
  text-align: center;
}
