:root {
  --primary: #29378E;
  --secondary: #ED1F24;
  --accent: #ECAE32;

  --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 NEW */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 50px;
  background: linear-gradient(135deg, #034867, #822631);
  color: white;
}

.hero-content {
  flex: 1;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero p {
  max-width: 500px;
  opacity: 0.9;
}

.hero-cta {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

/* HERO IMAGE */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  color: white;

  background:
    linear-gradient(rgba(3, 72, 103, 0.75), rgba(130, 38, 49, 0.75)),
    url('../img/hero.png') center/cover no-repeat;
}

.hero-center {
  max-width: 750px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 25px;
  text-align: center;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.7;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.btn.primary {
  background: var(--secondary);
  color: white;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}


.btn.outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn.small {
  padding: 8px 14px;
  font-size: 13px;
  background: #034867;
  color: white;
}

/* ABOUT NEW */
.about {
  padding: 100px 10%;
  background: #f9f9f9;
}

/* MAIN LAYOUT (4 / 8 SPLIT) */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* IMAGE = 4/12 */
.about-image {
  flex: 4;
}

/* TEXT = 8/12 */
.about-text {
  flex: 8;
}

/* IMAGE CONTROL */
.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  display: block;
}

.about-text h2 {
  font-size: 38px;
  margin: 10px 0;
  color: #034867;
}

.section-badge {
  display: inline-block;
  color: var(--secondary);
  font-weight: bold;
  letter-spacing: 1px;
}

.about-text p {
  color: #555;
  line-height: 1.8;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.about-stats div {
  flex: 1;
  min-width: 150px;
}

.about-stats h3 {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 5px;
}

/* ===================== */
/* RESPONSIVE DESIGN */
/* ===================== */

/* Tablets */

/* Mobile */
@media (max-width: 992px) {
  .about {
    padding: 70px 5%;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 350px;
  }

  .about-stats {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 26px;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
  }

  .about-stats div {
    text-align: center;
  }
}

/* ========================= */
/* GLOBAL OVERFLOW FIX */
/* ========================= */

html,
body {
  overflow-x: hidden;
}

/* ========================= */
/* MENU MODERN */
/* ========================= */

.menu-modern {
  padding: 100px clamp(16px, 5vw, 120px);
  background: #ffffff;
}

/* HEADER */
.menu-head {
  text-align: center;
  margin-bottom: 50px;
}

.menu-head span {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
}

.menu-head h2 {
  font-size: 42px;
  color: var(--primary);
  margin: 10px 0;
}

.menu-head p {
  color: var(--muted);
  max-width: 600px;
  margin: auto;
}

/* GRID */
.menu-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 100%;
}

/* CARD */
.food-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  width: 100%;
  box-sizing: border-box;
}

.food-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* IMAGE */
.food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.food-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.food-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
}

.food-overlay h3 {
  font-size: 22px;
}

.food-overlay p {
  font-size: 13px;
  opacity: 0.85;
  margin: 5px 0 10px;
}

/* BUTTON */
.food-overlay button {
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background: var(--secondary);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.food-overlay button:hover {
  background: var(--accent);
}

/* TIMETABLE */
.timetable-area {
  background: #f5f5f5;
  padding: 80px clamp(16px, 5vw, 120px);
}

.timetable-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  text-align: center;
}

/* 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(--secondary);
  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{
  padding: 3rem 0;
}
.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  margin-top: 50px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 30px;
}

footer a {
  color: var(--secondary);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* 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);
}