:root {
  --brown: #614534;
  --red: #D61E26;
  --orange: #F7901E;
  --light-brown: #bdb09d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}

body {
  color: var(--brown);
  background: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  max-width: 80px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--brown);
}

.cta {
  background: var(--red);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta:hover {
  background: var(--orange);
}

/* HERO */
.hero {
  padding: 80px 8%;
  background: #BDB09D;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-text p {
  margin-bottom: 20px;
}

.hero-image img {
  width: 600px;
  border-radius: 20px;
}



/* SECTION */
.section {
  padding: 70px 8%;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

/* MENU */
.menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Tablet */
@media (max-width: 992px) {
  .menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
}
.menu-card {
  background: var(--light-brown);
  border-radius: 15px;
  padding: 15px;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.menu-content{
  max-height: 250px;
  padding: 7px;
}
/* ABOUT */
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-content img {
  width: 450px;
  border-radius: 15px;
}


/* MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 15px;
}

/* FOOTER */
.footer {
  background: #614534;
  color: white;
  padding: 40px 8%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.footer-item i {
  color: #F1C772;
  font-size: 16px;
}

/* Bottom line */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.footer-bottom a {
  color: #F1C772;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #E94A23;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-item {
    justify-content: center;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
  }


}

@media (min-width: 760px) and (max-width: 992px) {
  .hero-image img {
    width: 420px;
  }

  .about-content img {
    width: 320px;
  }
}

/* -------------Timetable area end here------------- */
.timetable-area {
  background: var(--light-brown);
  padding: 3rem;
}


.timetable-area .heading {
  color: var(--primary);
}

.timetable-table {
  display: block;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  margin-top: 50px;
  border-radius: 2%;
}

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: var(--brown);
  color: white;
}

table.amrt-timetable-table td.amrt-label-td {
  font-size: 16px !important;
  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: white;
  box-shadow: 0 3px 7px var(--brown);
  text-align: center;
  font-size: 15px;
}

table.amrt-timetable-table td {
  padding: 0.3rem 0rem;
}

thead th {
  color: var(--text-color)
}

/* -------------Timetable area end here------------- */