/* General Reset */

*{
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #ffffff;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Navbar brand and link styling */
.navbar-brand,
.nav-link {
  color: #000 !important;

}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  background-image: url('../images/chickens-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.highlight {
  color: #fd7e14;
  transition: color 0.3s;
}

.highlight.red {
  color: red !important;
}

/* About Section */
.next-section {
  padding: 80px 20px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.next-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.left-content {
  flex: 1;
  padding: 20px;
}

.left-content h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.left-content h1 {
  font-size: 3rem;
  margin: 10px 0;
}

.left-content h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.left-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.btn-about {
  background-color: #e96200;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.btn-about i {
  transition: transform 0.3s ease;
}

.btn-about:hover i {
  transform: translateX(6px);
}

.right-content {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.image-card {
  position: relative;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hours-card {
  position: relative;
}

.hours-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
}

.hours-overlay h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
}

/* Menu Section */
.menu-card {
  background-color: #fffaf5;
  border: 1px solid #fd7e14;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #fd7e14;
  margin-top: 10px;
}

.btn-orange {
  background-color: #fd7e14;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  transition: background 0.3s ease;
  font-weight: 500;
  text-decoration: none;
}

.btn-orange:hover {
  background-color: #e76800;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .next-section .container {
    flex-direction: column;
    text-align: center;
  }

  .right-content {
    justify-content: center;
  }
}


/* Fixed bottom bar style for mobile */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: white;
  border-top: 1px solid #ddd;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

.fixed-bottom-bar button,
.fixed-bottom-bar a {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .fixed-bottom-bar {
    display: none; /* Show only on small screens */
  }
}


.about-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  color: #333;
}

.about-section .container {
  max-width: 900px;
  margin: auto;
}

.about-section h1 {
  font-size: 2.8rem;
  color: #fd7e14;
  margin-bottom: 20px;
  border-left: 5px solid #fd7e14;
  padding-left: 15px;
}

.about-section h2 {
  margin-top: 40px;
  font-size: 1.8rem;
  color: #222;
  position: relative;
}

.about-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #fd7e14;
  margin-top: 10px;
  border-radius: 3px;
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.about-section ul {
  padding-left: 20px;
  margin-top: 15px;
}

.about-section ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 25px;
  color: #444;
}

.about-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fd7e14;
  font-weight: bold;
}

.contact-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  color: #333;
}

.contact-section .container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;

}

.contact-section h1 {
  font-size: 2.8rem;
  color: #fd7e14;
  margin-bottom: 30px;
  border-left: 5px solid #fd7e14;
  padding-left: 15px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #444;
}

.contact-form {
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #fd7e14;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #fd7e14;
  color: white;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e96a0a;
  transition: background 0.3s ease;
}


.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 1rem;
}

.alert.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  background-color: #020202;
  border-top: 1px solid #333;
}
