:root {
  --gold: #F9C019;
  --dark: #393A3C;

  --brown: #614534;
  --light-brown: #bdb09d;

  --primary: #E7A138;
  --quaternary_color: #D61E26;
  --tertiary-color: #555;
  --text-color: #333;

  --gradient: linear-gradient(135deg, #E7A138, #F9C019);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}

body {
  background: #fff;
  color: var(--dark);
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo img {
  max-height: 65px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.cta {
  padding: 10px 18px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gold);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--dark);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: url('../img/hero.png') center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: relative;
  color: white;
  padding: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero h5 {
  color: var(--gold);
  z-index: 2;
  padding-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* ================= SECTION TITLE ================= */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--primary);
}

/* ================= MENU ================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}

.menu-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}


.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-card-content {
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.menu-card h3 {
  margin: 0;
  font-size: 18px;
}

.card-btn {
  margin-top: 12px;
  padding: 10px 16px;
  border: none;
  border-radius: 25px;
  background: var(--gradient);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.card-btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE MENU */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT ================= */
/* ================= MENU BUTTON ================= */
.card-btn {
  margin-top: 10px;
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #FABF19, #E8A339);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.card-btn:hover {
  transform: scale(1.05);
}

/* ================= ABOUT GRID ================= */
.about {
  background: var(--dark);
  padding: 3rem;
}

.about .container {
  text-align: center;
  gap: 40px;
}

.about .section-title {
  margin: 0;
  margin-bottom: 3rem;
}

.about-text {
  flex: 1;
  color: #fff;
}

/* ================= TIMETABLE ================= */
.timetable-area {
  background: var(--light-brown);
  padding: 60px 5%;
}

.timetable-area .section-title {
  color: var(--dark);
  margin-top: 0;
}

.timetable-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* table styling fix */
table.amrt-timetable-table th {
  background: var(--primary);
  color: white;
  padding: 10px;
}

table.amrt-timetable-table td {
  padding: 8px;
  color: var(--text-color);
}

/* ================= MAP ================= */
.map {
  padding: 60px 0;
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

/* ================= FOOTER ================= */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: var(--gold);
}

footer a:hover {
  color: var(--primary);
}

/* ================= FLOATING CTA ================= */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 18px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}