:root {
  --primary: #24283D;
  --secondary: #324B6B;
  --accent: #039EE7;
  --white: #ffffff;
  --light: #f5f7fb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* GLOBAL BACKGROUND */

body {
  line-height: 1.6;
  color: white;

  background:
    linear-gradient(rgba(36, 40, 61, 0.88), rgba(36, 40, 61, 0.88)),
    url("https://images.unsplash.com/photo-1557683316-973673baf926");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;

  background: rgba(36, 40, 61, 0.85);
  backdrop-filter: blur(6px);

  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  max-height: 60px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: .3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ORDER BUTTON */

.order-btn {
  background: var(--accent);
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  transition: .3s;
}

.order-btn:hover {
  background: #0287c7;
}

/* MOBILE */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.mobile-order {
  display: none;
}

/* HERO */

.hero {
  position: relative;
  min-height: 85vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 80px 20px;

  background-image:
    linear-gradient(rgba(36, 40, 61, 0.75), rgba(36, 40, 61, 0.75)),
    url("../img/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  gap: 18px;
  /* controls spacing between elements */
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0;

  color: #ffffff;

  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 620px;

  margin: 0;

  color: rgba(255, 255, 255, 0.9);

  letter-spacing: 0.3px;

  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

/* SECTIONS */

section {
  padding: 90px 20px;
  background: transparent;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: white;
}

/* ABOUT */

.about-modern {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border-radius: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  color: var(--accent);
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

/* MENU */

.menu-section {
  background: transparent;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.menu-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform .3s;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* OVERLAY */

.menu-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 20px;

  background: linear-gradient(to top,
      rgba(36, 40, 61, 0.95),
      rgba(36, 40, 61, 0.2));

  color: white;
}

.menu-info h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.menu-info p {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.menu-info .order-btn {
  padding: 8px 16px;
  font-size: 14px;
}

/* MAP */

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

/* FOOTER */

footer {
  background: rgba(36, 40, 61, 0.9);
  backdrop-filter: blur(6px);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-info {
  margin-bottom: 20px;
}

.footer-info div {
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* -------------Timetable area end here------------- */
.timetable-area .sub-heading {
  color: var(--secondary_color)
}

.timetable-table {
  display: block;
  box-shadow: 0 5px 10px rgba(191, 187, 187, 0.3);
  margin-top: 50px;
  border-radius: 2%;
}

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(--secondary);
  border-bottom-style: double;
  background: var(--accent);
}

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: var(--accent);
  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------------- */

/* RESPONSIVE */

@media(max-width:1000px) {

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:900px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;

    background: var(--primary);
    width: 100%;

    flex-direction: column;
    gap: 20px;
    padding: 30px;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-order {
    display: none;
  }

  .mobile-order {
    display: block;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }


  .hero {
    min-height: 50vh;
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

}



@media(max-width:600px) {

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    height: 240px;
  }

}

@media(max-width:500px) {

  .hero h1 {
    font-size: 34px;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

}