:root {
  --primary-color: #f59000;
  --secondary-color: #800000;
  --white: #fff;
  --black: #000000;
}

@font-face {
  font-family: hidayarullah;
  src: url(./assets/font/hidayatullah.ttf);
}

@font-face {
  font-family: bamini;
  src: url(./assets/font/bamini.ttf);
}

.banner-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}

.welcome-text {
  font-size: 2rem;
  font-style: italic;
  color: #f9a825;
}

.main-title {
  font-family: hidayarullah;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 5px;
  word-spacing: 10px;
}

.carousel-caption p {
  max-width: 700px;
  margin: 20px auto;
}

.btn-banner {
  background: #f9a825;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.btn-banner:hover {
  background: #fff;
  color: #f9a825;
  border: 2px solid #f9a825;
}

.offer-card {
  background: #1e2530;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease-in-out;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f7b500;
  flex-shrink: 0;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-content {
  margin-left: 20px;
  flex: 1;
}

.offer-content h5 {
  font-family: "Brush Script MT", cursive;
  font-size: 22px;
  margin-bottom: 10px;
}

.offer-content h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.order-btn {
  background: #f7b500;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #d69900;
  color: #fff;
}


/* About Section Start */

.about-section {
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  padding: 20px 0;
}

.section-title {
  text-align: center;
  font-weight: bold;
  /* bold */
  font-size: 35px;
  /* size adjust panna */
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  /* border length */
  height: 3px;
  /* border thickness */
  background-color: var(--primary-color);
  /* root color use panna change panniko */
  margin: 10px auto 0;
  /* center la border */
  border-radius: 2px;
}


.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-btn {
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.about-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Services Section Start */


.services-section {
  position: relative;
  padding: 40px 0;
  background: url('./assets/all-images/carousel-img/1.png') no-repeat center center/cover;
  color: #fff;
}

.services-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  /* overlay darkness */
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
  /* content above overlay */
}

.services-section .section-title {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.services-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--white);
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.btn-custom {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-custom:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  color: #fff;
}

.menu-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-card h3 {
  font-weight: 700;
  font-size: 22px;
  margin-top: 15px;
  color: var(--secondary-color);
}

.menu-card .border-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 10px auto;
  border-radius: 5px;
}

.menu-card p {
  font-size: 15px;
  padding: 0 15px;
  color: #444;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Gallery Section Start */

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--white), #f9f9f9);
  padding: 20px 0;
}

.gallery-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.gallery-section h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: var(--primary-color);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Gallery Images */
.gallery-img {
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.25);
}

/* Modal Customization */
.modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-body {
  padding: 0 !important;
  background: var(--black);
}

#modalImage {
  height: 100%;
  width: auto;
  margin: auto;
  display: block;
  border-radius: 10px;
  width: 100%;
}

.custom-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1056;
  /* modal content la mela varanum */
}

.custom-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
  color: var(--white);
}


/* Contact Details & Form Section Start */

/* Contact Section */
.contact-section {
  padding: 20px 0;
  background: var(--white);
}

.contact-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
}

/* Left Side Details */
.contact-info {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ddd;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info i {
  font-size: 24px;
  color: var(--primary-color);
  min-width: 35px;
}

.contact-info h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary-color);
}

.contact-info p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* Form Box */
.contact-form {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 12px;
  background: #fff;
}

/* Form Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  margin-bottom: 15px;
  transition: 0.3s;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(247, 181, 0, 0.4);
  outline: none;
}

/* Button */
.contact-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* 🔽 Responsive Fix */
@media (max-width: 992px) {
  .contact-section .row {
    flex-direction: column;
  }

  .contact-info {
    padding-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 26px;
  }

  .contact-form {
    padding: 15px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 10px;
  }
}

@media(max-width:768px) {
  .contact-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 80px;
    text-align: center;
  }
}