/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #263D87;
  background-color: #F8F9FB;
  line-height: 1.6;
}

/* COLOR VARIABLES */
:root {
  --primary: #263D87;   /* Deep Royal Blue */
  --secondary: #D3D8E2; /* Soft Silver-Blue */
  --accent: #EAE295;    /* Muted Gold */
  --text-dark: #1E1E2F;
  --light-bg: #F8F9FB;
}

/* GENERAL CONTAINERS */
.container,
section > .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ORDER BUTTON */
.order-btn {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(38, 61, 135, 0.3);
}

.order-btn:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 5%;
  background-color: var(--primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .logo img {
  max-width: 110px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul li a {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 902px) {
  nav ul {
    flex-direction: column;
    background-color: var(--primary);
    position: absolute;
    top: 90px;
    right: -100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  nav ul.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO */
.hero {
  background: linear-gradient(rgba(38, 61, 135, 0.5), rgba(38, 61, 135, 0.5)), 
              url('../images/hero.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
}

.hero h4 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--secondary);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* SECTION HEADINGS */
section {
  padding: 4rem 5%;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 2.3rem;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--accent);
  margin: 0.8rem auto;
  border-radius: 5px;
}

/* ABOUT */
/* ABOUT SECTION */
#about {
  padding: 100px 0;
  background: #fdfaf7;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.8rem;
  color: #2f1e1e;
  margin-bottom: 20px;
}

.about-text p {
  color: #5a4a4a;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2f1e1e;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #7a5a3c;
}

/* MENU SECTION */
#menu {
  background: #fff;
  padding: 100px 0;
}

.menu-intro {
  text-align: center;
  margin-bottom: 60px;
}

.menu-intro h2 {
  font-size: 2.6rem;
  color: #2f1e1e;
}

.menu-intro p {
  color: #777;
  font-size: 1.1rem;
  margin-top: 10px;
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-item {
  background: #f9f6f3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-details {
  padding: 0px;
  text-align: center;
}

.menu-details h3 {
  font-size: 1.4rem;
  color: #3b2f2f;
  margin-bottom: 10px;
}

.menu-details p {
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
}

.menu-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3b2f2f;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.menu-btn:hover {
  background: #7a5a3c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    max-width: 90%;
  }
}


/* TIMETABLE */
#timetable {
  background-color: var(--secondary);
  padding: 3rem 5%;
  border-radius: 15px;
}

#timetable h2 {
  color: var(--primary);
}

table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
  background-color: var(--primary);
  color: var(--accent);
}

.timetable-rows {
  display: flex;
    justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.timetable-column {
  flex: 1 1 45%;   /* allow them to grow/shrink */
  min-width: 300px; /* prevents too narrow on small screens */
  max-width: 500px; /* limits how wide it can get on large screens */
}



/* MAP */
.map {
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 2rem 5%;
  font-size: 1rem;
  line-height: 1.6;
}

footer i {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

footer a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--secondary);
}

.bottom-line {
  margin-top: 2rem;
  color: var(--secondary);
}

/* SMALL SCREENS */
@media (max-width: 768px) {
  footer {
    font-size: 0.95rem;
    padding: 2rem;
  }

  .about {
    flex-direction: column;
  }
}
