:root {
  --primary: #034867;
  --secondary: #822631;
  --accent: #AC8F42;

  --white: #ffffff;
  --light: #f9f9f9;
  --dark: #111111;
  --text: #333333;
  --muted: #666666;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PT Sans Narrow', sans-serif;
}

body {
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

i {
  color: var(--secondary);
  margin-right: 6px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary);
  border-bottom: 2px solid rgba(3, 72, 103, 0.1);
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media(max-width: 768px) {
  .menu-toggle {
    display: block;
    color: var(--secondary);
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--primary);
    display: none;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  margin-top: 70px;
  background:
    linear-gradient(rgba(3, 72, 103, 0.7), rgba(130, 38, 49, 0.7)),
    url('../img/hero.png') center/cover;
  color: white;
}

.hero h5 {
  color: var(--accent);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 60px;
  font-family: 'Pacifico', cursive;
}

.hero p {
  max-width: 500px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-cta {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
}

/* PRIMARY CTA */
.hero-btn.primary {
  background: var(--secondary);
  color: white;
  border: none;
}

.hero-btn.primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}




/* SECTIONS */
section {
  padding: 80px 10%;
}

.section-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
  font-weight: bold;
}

/* ABOUT */
.about-box {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-left {
  flex: 1;
}

.about-left img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* TEXT */
.about-right {
  flex: 1;
}

.about-right h3 {
  font-size: 32px;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}


/* BUTTON reuse your existing */
.card-btn {
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-box {
    flex-direction: column;
    align-items: normal;
  }

  .about-left img {
    height: 320px;
  }
}

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.menu-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-content {
  padding: 18px;
  text-align: center;
}

.menu-card-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* BUTTONS */
.card-btn {
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 25px;
  border: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.card-btn:hover {
  background: var(--secondary);
}

/* TIMETABLE */
.timetable-area {
  background: #f5f5f5;
  padding: 80px 10%;
}

.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);
}

/* MAP */
.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 30px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* FLOAT BUTTON */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  cursor: pointer;
}

.floating-cta:hover {
  background-color: var(--accent);
}