:root {
  --primary: #ED1D23;
  --accent: #F5871F;
  --highlight: #FED900;
  --dark: #001721;
  --light: #f7f7f7;
  --muted: #9EA4A8;
}

/* GLOBAL */
body {
  font-family: 'PT Sans Narrow', sans-serif;
  background: var(--light);
  color: var(--dark);
  margin: 0;
  line-height: 1.6;
}

section {
  padding: 50px;
}

/* ================= NAVBAR ================= */
.navbar {
  background: rgba(0, 23, 33, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}

.logo img {
  height: 45px;
}

.nav-links a {
  margin: 0 14px;
  text-decoration: none;
  color: #cfd6da;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--highlight);
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

/* ================= BUTTONS ================= */
.cta,
.btn-primary {
  background: var(--primary);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(237, 29, 35, 0.25);
}

.cta:hover,
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 135, 31, 0.3);
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  background: url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
  background-color: var(--dark);
}

/* ADD GRADIENT ONLY BEHIND TEXT AREA */
.hero-content {
  position: relative;
  color: white;
  max-width: 650px;
  padding: 30px;
  border-radius: 18px;

  /* glass + readability instead of overlay */
  background: rgba(0, 23, 33, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* TYPOGRAPHY */
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.hero p {
  color: #e6e6e6;
  margin-top: 15px;
}

/* ================= SECTION TITLE ================= */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 45px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 70px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 10px auto 0;
}

/* ================= ABOUT ================= */
/* ================= ABOUT MODERN ================= */
.about-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */
.about-text h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.about-text p {
  color: var(--muted);
  margin-bottom: 15px;
  font-size: 16px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
}

.feature i {
  color: var(--primary);
  font-size: 18px;
}

/* VISUAL SIDE */
.about-visual {
  position: relative;
}

.img-main img {
  width: 90%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
}

.img-overlay-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: white;
  padding: 15px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
}

.img-overlay-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.img-overlay-card p {
  margin: 5px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 992px) {

  .about-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
  }

  /* Prevent image from getting too small */
  .img-main img {
    width: 100%;
    max-width: 380px;
  }

  .about-text h3 {
    font-size: 26px;
    line-height: 1.3;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-features {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .img-overlay-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 15px;
  }
}

/* ================= MENU ================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.menu-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.menu-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.menu-info {
  padding: 18px;
}

.menu-info h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.menu-info p {
  color: var(--muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TIMETABLE ================= */
.timetable-area {
  padding: 80px 0;
  background: #fff;
}

.timetable-table {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

/* ================= MAP ================= */
.map-modern {
  padding: 80px 0;
}

.map-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ================= FOOTER ================= */
.footer-simple {
  background: var(--dark);
  color: #aab3b8;
  text-align: center;
  padding: 45px 0;
}

.footer-simple a {
  color: var(--highlight);
  text-decoration: none;
}

/* ================= FLOATING CTA ================= */
.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.floating-cta:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: var(--dark);
    padding: 20px;
    border-top: 2px solid var(--primary);
  }

  .nav-links a {
    margin: 10px 0;
    color: #d6d6d6;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 38px;
  }
}

/* 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);
}