:root {
  --blue: #005FE2;
  --red: #FC3C36;
  --yellow: #FDFE61;
  --dark: #0b0f1a;
  --text: #ffffff;
  --muted: #252222;
}


/* =========================
GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--text);
  color: var(--dark);
  line-height: 1.6;
}



img {
  width: 100%;
  display: block;
}

section {
  padding: 110px 0;
}

.section-tag {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.section-heading {
  font-size: 64px;
  line-height: .95;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-text {
  font-size: 20px;
  color: #555;
}

/* =========================
NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  backdrop-filter: blur(80px);
  border-bottom: 1px solid var(--muted);
}

.navbar .container {
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: .35s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--black);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

.tag {
  display: inline-block;
  background: var(--blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.highlight {
  color: var(--yellow);
  background-color: var(--red);
}

/* =========================
   BUTTONS
========================= */

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--red);
}

.btn-secondary {
  border: 1px solid var(--red);
  color: var(--red);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

/* =========================
   HERO
========================= */

.hero-v2 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--blue);
  filter: blur(180px);
  opacity: 0.25;
  top: -150px;
  left: -150px;
}

.hero-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 56px;
  font-weight: 800;
}

.hero-left p {
  margin: 20px 0;
  color: var(--muted);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}

.hero-stats h3 {
  color: var(--red);
}

/* HERO RIGHT */

.hero-right {
  flex: 1;
  position: relative;
}

.image-frame img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

/* floating cards */

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 14px;
  border-radius: 12px;
  border-left: 3px solid var(--yellow);
}

.floating-card h4 {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--text);
}

.floating-card p {
  font-size: 12px;
  color: var(--yellow);
}

.floating-card.top {
  top: 20px;
  right: 20px;
}

.floating-card.bottom {
  bottom: 20px;
  left: 20px;
}

/* =========================
   ABOUT
========================= */

.about-v2 {
  padding: 50px 0;
}

.about-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-visual {
  flex: 1;
  position: relative;
}

.img-main img {
  width: 100%;
  border-radius: 18px;
}

.img-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue);
  padding: 15px;
  border-radius: 12px;
}

.img-overlay-card h3 {
  color: var(--yellow);
}

.img-overlay-card p {
  color: var(--text);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 42px;
  margin: 15px 0;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 15px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.feature-cards .card {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  border-left: 3px solid var(--red);
}

/* =========================
   MENU
========================= */

.menu-v2 {
  padding: 50px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.menu-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.menu-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.menu-item:hover .overlay {
  opacity: 1;
}

.overlay button {
  background: var(--yellow);
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* =========================
   TIMETABLE
========================= */

.time-v2 {
  padding: 100px 0;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.time-card {
  background: rgba(52, 50, 50, 0.05);
  padding: 25px;
  border-left: 4px solid var(--red);
  border-radius: 14px;
  color: var(--red);
}

.time-card.highlight {
  border-left: 4px solid var(--red);
  color: var(--red);
}

/* =========================
   LOCATION
========================= */

.location-v2 {
  padding: 14px 0;
}

.location-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

.location-info {
  flex: 1;
}

.location-info h2 {
  font-size: 40px;
  margin: 10px 0;
}

.info {
  margin: 15px 0;
}

.info strong {
  color: var(--red);
}

.location-map {
  flex: 1;
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  border: none;
}

/* =========================
   FOOTER
========================= */

.footer-v2 {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.footer-inner a {
  color: var(--red);
  text-decoration: none;
}

/* 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(--red);
  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(--muted);
}

/* =========================
RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 1024px) {

  .section-heading {
    font-size: 48px;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }


  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    max-width: 80%;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .image-frame {
    width: 90%;
    max-width: 600px;
  }

  .about-grid {
    flex-direction: column;
    text-align: center;
  }


  .img-main img {
    max-width: 600px;
    justify-content: center;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    flex-direction: column;
    text-align: center;
  }

  .location-grid {
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .location-info,
  .location-map {
    width: 100%;
    flex: unset;
  }

  .location-map iframe {
    width: 100%;
    height: 300px;
    display: block;
  }


  .nav-links {
    gap: 20px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  section {
    padding: 70px 0;
  }

  .nav-links.active {
    display: flex;
  }

  /* NAVBAR MOBILE FIX */
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--text);
    position: absolute;
    top: 60px;
    right: 1px;
    left: 1px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links a {
    color: var(--red);
  }

  .menu-toggle {
    display: flex;
    color: var(--red);
  }

  .section-heading {
    font-size: 36px;
  }

  .section-text {
    font-size: 16px;
  }

  .hero-v2 {
    padding: 70px 0;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions button,
  .hero-actions a {
    width: 100%;
  }

  .image-frame {
    width: 100%;
  }

  .location-map {
    flex: 3;
  }

  /* Floating cards fix */
  .floating-card {
    position: static;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .time-grid {
    grid-template-columns: 1fr;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}


/* Small phones */
@media (max-width: 480px) {

  .section-heading {
    font-size: 28px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .logo img {
    max-height: 30px;
  }

  .hero-bg-accent {
    width: 300px;
    height: 300px;
    filter: blur(120px);
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    padding: 7px;
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }
}