:root {
  --theme11-primary: #c0392b;
  --theme11-dark: #1b1b1b;
  --theme11-accent: #f4a261;
  --theme11-light: #fff8f3;
}

/* HERO */

.theme11-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.theme11-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme11-hero .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(192, 57, 43, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: white;
  max-width: 900px;
}

.hero-content h1 {
  font-family: "Bebas Neue";
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: "Poppins";
  font-size: 1.3rem;
  margin-bottom: 35px;
}

/* CONTACT BG */

.contact-cards-theme11,
.contact-social-section-theme11 {
  background: var(--theme11-light);
}

/* POSTER */

.theme11-poster {
  background: var(--theme11-dark);
  padding: 70px 80px;
  color: white;
}

.poster-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.poster-right img {
  max-width: 420px;
  width: 100%;
}

.poster-name {
  font-family: "Bebas Neue";
  font-size: 3.5rem;
  color: var(--theme11-accent);
  margin-bottom: 20px;
}

.poster-location-heading {
  font-family: "Bebas Neue";
  font-size: 2.2rem;
  margin-top: 40px;
  margin-bottom: 10px;
  color: var(--theme11-accent);
}

.poster-contact {
  font-size: 1.2rem;
  margin: 12px 0;
  display: flex;
  gap: 10px;
}

.poster-contact a,
.poster-contact i {
  color: white;
}

.poster-location p {
  font-size: 1.1rem;
  color: #eee;
}

/* BUTTON */

.btn-Know-theme11 {
  background: var(--theme11-primary);
  color: white;
}

.btn-Know-theme11:hover {
  background: var(--theme11-accent);
  color: black;
}

/* MENU GRID */

.theme11-services {
  padding: 80px 20px;
  background: var(--theme11-light);
  text-align: center;
}

.section-title {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--theme11-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.services-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s;
}

.services-grid img:hover {
  transform: scale(1.05);
}

.services-save {
  margin-top: 50px;
}

/* MAP */

.theme11-map {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.map-wrapper {
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* PAYMENT */

.theme11-payment {
  padding: 80px 20px;
  background: var(--theme11-light);
  text-align: center;
}

.upi-id {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--theme11-dark);
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 90px;
  padding: 15px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.payment-icons img:hover {
  transform: translateY(-8px);
}

/* SOCIAL */

.contact-social-section-theme11 {
  padding: 70px 20px;
  text-align: center;
}

.social-cards {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.social-card img {
  width: 55px;
  transition: 0.3s;
}

.social-card img:hover {
  transform: translateY(-6px) scale(1.05);
}

/* SLIDER */

.banner .slide-bg::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(192, 57, 43, 0.6)
  );
}

.slide-content {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.slide-content h2 {
  font-family: "Bebas Neue";
  font-size: 3rem;
  color: white;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.1rem;
  color: #ffe3e0;
  margin-bottom: 25px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .poster-content {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid img {
    height: 200px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .social-card img {
    width: 45px;
  }
}
