body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

header {
  background: #000;
  color: #fff;
  padding: 10px 0 0 0;
  text-align: center;
  border-bottom: 3px solid #cc0000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#logo {
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.main-nav {
  position: relative;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background: #000;
}

.main-nav li {
  margin: 0 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

header.scrolled .main-nav a:hover,
header.scrolled .main-nav a.active {
  background: #cc0000;
  color: #fff;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.nav-toggle-label span {
  background: #fff;
  height: 4px;
  margin: 4px 0;
  border-radius: 2px;
  width: 100%;
  display: block;
  transition: 0.3s;
}

/* Responsive Navigation */
@media (max-width: 700px) {
  .main-nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    display: none;
    width: 100%;
    border-top: 3px solid #cc0000;
    z-index: 10;
  }
  .main-nav li {
    margin: 0;
  }
  .nav-toggle:checked + .nav-toggle-label + ul {
    display: flex;
  }
  .nav-toggle-label {
    display: flex;
    position: absolute;
    left: 20px;
    top: 30px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

/* Push content below fixed header */
main, #hero {
  padding-top: 0px;
}

/* Hero Section */
#hero {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 400px 0 80px 0; /* Adjust top padding as needed */
  margin-bottom: 0;
  border-radius: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.0);
}
#hero h2 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

#hero p {
  color: #ccc;
  font-size: 1.2em;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
  background: #990000;
  transform: translateY(-2px);
}

/* Banner */
.banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(to bottom, #b71c00, #330900);
  color: #fff;
  text-align: center;
  padding: 16px 0 12px 0;
  font-size: 1.4rem; /* or your preferred size */
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;         /* <-- THIS MAKES IT BOLD */
  font-style: italic;
  letter-spacing: 4px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.banner span {
  display: inline-block;
}

/* About Us Section */
.about-us {
  background: #000;
  color: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.about-us-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.about-title {
  display: block;
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

.about-title::after {
  content: "";
  display: block;
  height: 4px;
  background: #ff0000;
  width: 100%;
  max-width: 180px;
  margin: 6px auto 0 auto;
  border-radius: 2px;
}

.about-us p {
  font-size: 1.15rem;
  line-height: 2;
  color: #e0e0e0;
  margin-bottom: 18px;
  text-align: center;
}

@media (max-width: 600px) {
  .about-us-content {
    max-width: 95vw;
    padding: 0 10px;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-us p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.section-divider {
  border: none;
  height: 2px;
  background: #ff0000;
  width: 400px;
  margin: 40px auto;
  opacity: 0.8;
  border-radius: 1px;
  display: block;
}

/* Events Section */
.events-section {
  background: #000;
  padding: 60px 0;
}

.events-content {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1300px;
  margin: 0px auto 0 auto;
  width: 95%;
}

.events-image {
  flex: 2 1 600px;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-image img {
  width: 100%;
  max-width: 600px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0;
  display: block;
}

.events-text {
  flex: 3 1 500px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  width: fit-content;
}

.events-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  margin-right: 0;
  text-align: left;
  line-height: 1.1;
  position: relative;
}

.events-title-underline {
  height: 4px;
  background: #cc0000;
  border-radius: 2px;
  margin: 10px 0 0 0;
  width: 100%;
}

.events-text h4 {
  color: #cc0000;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.events-text p {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.events-btn {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: none;
  min-width: 0;
  width: fit-content;
  margin-left: 0;
}

.events-btn:hover {
  background: #990000;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .events-content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .events-image {
    flex: none !important;
    max-width: 320px !important;
    width: 100% !important;
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .events-image img {
    width: 100% !important;
    max-width: 320px !important;
    max-height: 160px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .events-text {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .events-title-group {
    align-items: center !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .events-title {
    text-align: center !important;
    width: 100% !important;
  }
  .events-title-underline {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .events-btn {
    display: block !important;
    margin: 1rem auto 0 auto !important;
    text-align: center !important;
  }
  /* --- HERO SECTION MOBILE FIX --- */
  #hero {
    padding: 120px 0 40px 0 !important;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #cc0000;
  color: #fff;
  padding: 60px 0;
  position: relative;
  text-align: center;
}

.testimonials-container {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.5s;
}

.testimonial.active {
  display: flex;
}

.testimonial img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #fff;
}

.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 0 10px 0;
}

.customer-name {
  font-weight: bold;
  margin-top: 5px;
}

.testimonial-prev,
.testimonial-next {
  background: #fff;
  color: #cc0000;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #ff0000;
  color: #fff;
}

.testimonial-prev {
  left: 10px;
}

.testimonial-next {
  right: 10px;
}

@media (max-width: 600px) {
  .testimonial-prev,
  .testimonial-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: 30%;
    transform: translateY(-30%);
    background: #fff;
    color: #cc0000;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .testimonials-container {
    padding: 0 10px;
  }
  .testimonial blockquote {
    font-size: 1rem;
  }
}

/* Contact Section */
.contact-section {
  background: #111;
  color: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 320px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form textarea {
  min-height: 100px;
}

.contact-form button {
  background: #cc0000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #ff0000;
}

.contact-details {
  text-align: left;
  align-self: center;
  font-size: 1.1rem;
}

@media (max-width: 700px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .contact-details {
    text-align: center;
  }
}

.contact-title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  text-align: center;
}

.contact-title::after {
  content: "";
  display: block;
  height: 4px;
  background: #ff0000;
  width: 100%;
  margin: 6px auto 0 auto;
  border-radius: 2px;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  border-top: 3px solid #cc0000;
  margin-top: 40px;
  font-size: 0.9em;
}

/* --- HERO SECTION MOBILE FIX --- */
@media (max-width: 700px) {
  #hero {
    padding: 120px 0 40px 0 !important;
  }
}.hero-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  min-height: 70vh; /* Consistent height for all screens */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.0);
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 55vh;
  }
}

@media (max-width: 700px) {
  .hero-section {
    min-height: 40vh;
    padding-top: 90px; /* For fixed navbar */
    padding-bottom: 20px;
  }
}.home-hero {
  background-image: url('images/header.jpg');
}