:root {
  --primary: #E30006;
  --secondary: #FFD301;
  --dark: #000;
  --white: #fff;
  --gray: #555;
}

/* GLOBAL */
body {
  background: var(--bg);
  color: var(--dark);
  font-family: 'PT Sans Narrow', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* BUTTON */
.btn-primary {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  color: var(--dark);
}


/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* IMPORTANT: keep single-row flex */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* logo always left */
.logo {
  flex: 0 0 auto;
}

/* center nav */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* right side controls */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CTA */
.cta {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  white-space: nowrap;
}

.cta:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* links */
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary);
}

.nav-links a:hover {
  color: var(--accent);
}

/* MOBILE */
@media(max-width:768px) {

  .menu-toggle {
    display: block;
  }

  /* collapse nav */
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    display: none;
    padding: 15px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  /* keep CTA in header row */
  .cta {
    padding: 8px 14px;
  }
}


/* HERO */

/* HERO BASE */
.hero-new {
  padding: 140px 0 100px;
  background: #000;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* TEXT SIDE */
.hero-text h5 {
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 56px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  color: var(--white);
  margin: 20px 0;
  max-width: 480px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-outline {
  border: 2px solid #000;
  padding: 12px 22px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* IMAGE SIDE */
.hero-media {
  position: relative;
}

.hero-img-main img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}

/* FLOATING BADGE (NEW ELEMENT) */
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--secondary);
  color: #000;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 6px;
}

.hero-badge-1 {
  position: absolute;
  top: 20px;
  right: 200px;
  background: var(--secondary);
  color: #000;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 6px;
}

/* MOBILE */
@media(max-width:768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    left: 10px;
    bottom: -10px;
  }


}


/* ABOUT */
/* SECTION BASE */
.about-split {
  padding: 120px 0;
  background: #fff;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

/* CONTENT (OFFSET CARD EFFECT) */
.about-content {
  background: #fff;
  padding: 50px;
  margin-left: -80px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* HEADINGS */
.about-content h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* TEXT */
.about-content p {
  color: #555;
  font-size: 15px;
}

/* TAG STYLE (completely new element) */
.about-tags {
  margin: 20px 0;
  display: flex;
  gap: 10px;
}

.about-tags span {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  /* THIS makes it pill */
  font-weight: 600;
}

/* MOBILE */
@media(max-width:768px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    margin-left: 0;
    margin-top: -60px;
    padding: 30px;
  }

  .about-image img {
    height: 300px;
  }
}


/* MENU */
#menu {
  padding: 120px 0;
  background: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.menu-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-info {
  padding: 18px;
}

/* TIMETABLE */
.timetable-area {
  padding: 120px 0;
}

.timetable-table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* MAP */
.map-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* LEFT SIDE */
.map-info {
  flex: 0.8;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.map-info h2 {
  color:var(--primary);
  font-weight: 800;
}

.map-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
}

.map-info i {
  color: var(--secondary);
}

/* RIGHT SIDE */
.map-frame {
  flex: 1.2;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* MOBILE */
@media(max-width:768px) {
  .map-card {
    flex-direction: column;
  }

  .map-frame iframe {
    height: 300px;
  }
}

/* FOOTER */
.footer-simple {
  background: #111;
  color: #fff;
  padding: 30px 0;
}

.footer-simple a {
  color: var(--secondary);
}

/* MOBILE */
@media(max-width:992px) {

  .hero-content h1 {
    font-size: 40px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }

  .section-title {
    font-size: 28px;
  }

  .about-visual {
    text-align: center;
  }

  .about-visual img {
    max-width: 400px;
  }
}

/* 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);
}