/* Loader Wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  text-align: center;
}





/* Logo Animation */
.loader-logo {
  max-width: 600px; /* Adjust logo size as needed */
  height: auto;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

/* General Styles */
body {
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    background-image: none;
    background-size: cover;
    background-position: center;
    color: #9d292e;
    padding: 100px 0;
    text-align: center;
    border: none;
    background-color: transparent
}

/* Section Styles */
section { 
  width: 95%;
  max-width: 2100px;
  margin: 30px auto;
  border: 2px solid #ccc; /* softer border */
  border-radius: 15px;
  padding: 25px;
  background-color: white !important;
  color: black !important;
}

/* Headings */
h1, h2, h3, h4, h5 {
    color: black;
    font-weight: 700;
}

/* Buttons */
.btn-success {
    background-color: black !important;
    color: white !important;
    border-color: black;
}

.btn-primary {
    background-color: black !important;
    color: white !important;
    border-color: #FFFFFF;
}

.btn:hover {
    opacity: 0.85;
}

/* Services Section */
.services {
    background-color: black !important;
    color: white !important;
    border-left: 5px solid #FFE9E0;
    padding: 10px;
    margin-bottom: 20px;
}

/* PRODUCTS */
.product-section h5 {
  font-size: 2rem;
  margin-top: 2rem;
  color: #9d292e;
}

/* PRODUCT ITEM FONT COLOR */
.product-grid div {
  color: #9d292e !important;
}

/* Remove bullet points */
.product-grid {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 1rem;
  text-align: center;
}

/* For Whole Chicken section – 3 items per row */
.large-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  font-size: 1.5rem;
  gap: 1rem;
}


/* For Chicken Parts section – 4 items per row */
.small-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  font-size: 1.2rem;
  gap: 0.8rem;
}

/* Style each product box */
.product-grid div {
  padding: 1rem;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  background-color: black !important;
    color: white !important;
}

/* Testimonials Section */
.testimonial {
    background-color: black !important;
    color: white !important;
    border-left: 5px solid #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: black !important;
    color: white !important;
    color: #FFFFFF;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

section {
  background-color: white !important;
  color: black !important;
  border: 2px solid #ccc !important;
}