:root {
  --primary: #F4CD0B;
  --dark: #000;
  --light: #fff;
  --muted: #666;
}

/* ================= GLOBAL ================= */
body {
  margin: 0;
  font-family: 'PT Sans Narrow', sans-serif;
  background: var(--light);
  color: var(--dark);
}

/* ================= NAVBAR ================= */
.navbar {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 45px;
}

.nav-links a {
  margin: 0 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  background: var(--primary);
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
}

/* ================= BUTTON ================= */
.cta,
.hero-btn,
.card-btn {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.25s;
}

.cta:hover,
.hero-btn:hover,
.card-btn:hover {
  background: #d4b300;
  transform: translateY(-2px);
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: url('../img/hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero h1,
.hero h5,
.hero p,
.hero-cta {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  font-weight: 900;
}

.hero p {
  max-width: 500px;
  color: #ddd;
}

/* ================= SECTION TITLE ================= */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* ================= ABOUT ================= */
/* ================= ABOUT V5 ================= */

.about-v5 {
  padding: 40px 0;
  background: #000;
  color: #fff;
  text-align: center;
}

/* TOP TEXT */
.about-top h2 {
  color: #F4CD0B;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.about-top h3 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 50px;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ITEM */
.about-item {
  padding: 30px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  transition: 0.3s;
}

.about-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* ICON */
.about-item i {
  font-size: 28px;
  color: #F4CD0B;
  margin-bottom: 15px;
}

/* TEXT */
.about-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.about-item p {
  color: #bbb;
  font-size: 14px;
}

/* CTA */
.about-cta {
  margin-top: 10px;
}

.about-cta .card-btn {
  background: #F4CD0B;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px 28px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-top h3 {
    font-size: 30px;
  }
}
/* ================= MENU ================= */
/* ================= MENU SECTION REDESIGN ================= */

#menu {
  padding: 90px 0;
  background: #fafafa;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.menu-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  border: 2px solid transparent;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: #F4CD0B;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

/* IMAGE */
.menu-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.menu-card-content {
  padding: 22px;
  text-align: center;
  background: #fff;
  position: static;
  opacity: 1;
}

/* BUTTON */
.menu-card-content .card-btn {
  background: #000;
  color: #F4CD0B;
  border: 2px solid #000;
  padding: 11px 22px;
  border-radius: 35px;
  font-weight: 700;
  transition: 0.3s;
}

.menu-card-content .card-btn:hover {
  background: #F4CD0B;
  color: #000;
  border-color: #F4CD0B;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    height: 260px;
  }
}
/* ================= TIMETABLE ================= */
.timetable-area {
  padding: 80px 0;
  background: #f5f5f5;
}

.timetable-table {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

/* ================= MAP ================= */
/* ================= MAP V3 ================= */

.map-v3 {
  padding: 100px 0;
  background: #f8f8f8;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: stretch;
}

/* LEFT PANEL */
.map-info {
  background: #000;
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info h2 {
  color: #F4CD0B;
  margin-bottom: 25px;
}

/* INFO ROW */
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.info-item i {
  color: #F4CD0B;
  margin-top: 4px;
}

.info-item p {
  margin: 0;
  color: #ccc;
}

/* BUTTON */
.map-info .card-btn {
  margin-top: 20px;
  background: #F4CD0B;
  color: #000;
  border-radius: 30px;
  padding: 12px 24px;
}

/* MAP */
.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ================= FOOTER ================= */
/* ================= FOOTER V3 ================= */

.footer-v3 {
  background: #000;
  color: #bbb;
  padding: 60px 0 30px;
}

/* INNER */
.footer-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* BRAND */
.footer-brand h3 {
  color: #F4CD0B;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  color: #888;
}

/* CONTACT */
.footer-contact i {
  color: #F4CD0B;
  margin-right: 6px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 13px;
}

.footer-bottom a {
  color: #F4CD0B;
  text-decoration: none;
}

/* ================= FLOATING BUTTON ================= */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #000;
  border: none;
  padding: 14px 20px;
  border-radius: 40px;
  font-weight: 700;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .about-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links a{
    padding: 5px;

  }
  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 38px;
  }

  .timetable-table{
    padding: 5px;
  }
}
/* TIMETABLE */
.timetable-area {
  background: #f5f5f5;
  padding: 80px 0;
}

.timetable-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  text-align: center;
}

/* TABLE */
table.amrt-timetable-table th {
  background: var(--primary);
  color: white;
  padding: 10px;
}

table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
  font-size: 18px;
}

table.amrt-timetable-table td.amrt-label-td {
  font-size: 16px;
}

table.amrt-timetable-table td {
  padding: 8px;
  color: var(--text);
}

.fa{
  color: var(--primary);
}