/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Container for centering content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Navbar */
/* Navbar */
.main-header {
  background: #d81e16;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Main Flex Wrapper */
.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  flex-wrap: nowrap; /* prevent wrapping */
  position: relative;
}

/* Logo */
.logo img {
  height: 60px;
}

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  white-space: nowrap;
}

.desktop-nav ul li a:hover {
  color: #000;
}

/* Order Now Button */
.cta-btn {
  background: #fff;
  color: #d81e16;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  white-space: nowrap; /* prevent text break */
}

.cta-btn:hover {
  background: #000;
  color: #fff;
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
}

/* ============================= */
/* MOBILE LAYOUT FIX */
/* ============================= */

@media (max-width: 991px) {

  /* Hide desktop nav */
  .desktop-nav {
    display: none;
  }

  /* Keep everything in one row */
  .navbar-wrapper {
    justify-content: space-between;
  }

  /* Center Order Now perfectly */
  .cta-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

}
/* Navbar CTA Button */
.cta-btn {
  background: #fff;
  color: #d81e16;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #a3140f;
  color: #fff;
}

/* Optional: adjust mobile offcanvas nav spacing */
.offcanvas-body .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #d81e16;
  padding: 10px 0;
  transition: color 0.3s;
}

.offcanvas-body .nav-link:hover {
  color: #a3140f;
}
/* Hero Carousel Styles */
.hero-section {
  position: relative;
}

/* Image */
.hero-section .hero-image {
  object-fit: cover;
  width: 100%;
  height: 90vh;               /* responsive height */
  min-height: 500px;
  max-height: 800px;
  filter: brightness(50%);
}

/* Caption Center */
.hero-section .carousel-caption.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 800px;
  padding: 0 20px;
}

/* Heading */
.hero-section .carousel-caption h1 {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Paragraph */
.hero-section .carousel-caption p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Button */
.hero-section .hero-cta {
  background: #d81e16;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
  display: inline-block;
}

.hero-section .hero-cta:hover {
  background: #fff;
  color: #d81e16;
}

/* Carousel Dots */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center !important;
  gap: 12px;
  padding-left: 0;
  margin: 0;
  list-style: none;
  z-index: 5;
}

.carousel-indicators button {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  opacity: 0.8 !important;
  border: none !important;
  padding: 0 !important;
  transition: all 0.3s;
}

.carousel-indicators button.active {
  background-color: #d81e16 !important;
  opacity: 1 !important;
}

/* ===================== */
/* RESPONSIVE FIXES */
/* ===================== */

@media (max-width: 992px) {

  .hero-section .hero-image {
    height: 70vh;
    min-height: 450px;
  }

  .hero-section .carousel-caption h1 {
    font-size: 48px;
  }

  .hero-section .carousel-caption p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .hero-section .hero-image {
    height: 60vh;
    min-height: 400px;
  }

  .hero-section .carousel-caption h1 {
    font-size: 36px;
  }

  .hero-section .carousel-caption p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .hero-section .hero-image {
    height: 55vh;
    min-height: 350px;
  }

  .hero-section .carousel-caption {
    padding: 0 15px;
  }

  .hero-section .hero-cta {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* About Section */
.about-section {
  position: relative;
  background: url("../img/about-bg.png") center center / cover no-repeat;
  padding: 100px 0;
  color: #fff;
}

/* FLEX LAYOUT */
.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.about-text {
  flex: 1;
}

/* RIGHT SIDE */
.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Typography */
.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 25px;
}

/* MOBILE */
@media (max-width: 991px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    text-align: center;
    margin-top: 30px;
  }
}
/* Menu Section */
.menu-section {
  padding: 80px 0;
  background: #000;
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  text-align: center;
  color: #d81e16;
  margin-bottom: 50px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;     /* controls width */
  margin: 0 auto;       /* centers grid */
}

.menu-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background: #d81e16;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-10px);
}

/* Hide title */
.menu-item h3 {
  display: none;
}

/* Keep image */
.menu-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Push button to bottom */
.menu-cta {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #d81e16;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.menu-cta:hover {
  background-color: #a3140f;
  color: #fff;
}
/* -------------Timetable area end here------------- */
.timetable-area {
	text-align: center;
	background: var(--tertiary_color);
	padding: 3rem;
}

.timetable-area .sub-heading{
	color: var(--secondary_color)
}
.timetable-area .heading{
	color: var(--primary_color);
}
.timetable-table {
	display: block;
	box-shadow: 0 5px 10px var(--quaternary_color);
	margin-top: 50px;
}

table.amrt-timetable-table-tbody-tr-td {
	text-align: center;
}

table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
	font-size: 20px;
	border-bottom: 5px double var(--quaternary_color);
	border-bottom-style: double;
	background: #d81e16;
}

table.amrt-timetable-table td.amrt-label-td{
	font-size: 16px !important;
}
table.amrt-timetable-table td.amrt-label-td {
	font-size: 13px;
	color: var(--tertiary-color);
}

table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {
	display: inline-block;
	white-space: nowrap;
	padding: 0.1em 0.5em;
	margin: 0.1em 0.2em;
	color: #fff;
	box-shadow: 0 3px 7px var(--quaternary_color);
}

table.amrt-timetable-table td {
	padding: 0.3rem 0rem;
}

table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {

	text-align: center;
	font-size: 15px;
}

thead th {
	color: var(--text-color)
}

/* -------------Timetable area end here------------- */


/* Locations Section */
.locations-section {
  padding: 80px 0;
}

.store-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-top: 20px;
  scroll-behavior: smooth;
}

.store-carousel img {
  width: 250px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Footer Section */
.footer-section {
  background: #d81e16;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.footer-section h3 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 16px;
  margin: 5px 0;
}

.footer-section iframe {
  max-width: 100%;
  border-radius: 10px;
}

.social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #000;
}

@media (max-width: 576px) {
  .footer-section h3 {
    font-size: 20px;
  }

  .footer-section p {
    font-size: 14px;
  }
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .store-carousel {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .header-flex {
    padding: 15px;
  }

  .nav-links ul {
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-text h2 {
    font-size: 28px;
  }
}

.copyright a{
  color: #fff;
  text-decoration: none;
}
.copyright a:hover{
  text-decoration: underline !important;
}