/* ROOT */
:root {
  --green: #51803E;
  --orange: #E9A234;
  --red: #CC484A;
  --white: #fff;
  --dark: #111;
  --muted: #777;
}

/* GLOBAL */
body {
  font-family: 'PT Sans Narrow', sans-serif;
  margin: 0;
  background: #f6f6f6;
  color: var(--dark);
}

/* NAVBAR (floating minimal) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.nav-links a {
  text-decoration: none;
  margin: 0 12px;
  color: var(--dark);
  font-weight: 600;
}

.cta {
  background: var(--green);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #EEECEA;
    padding: 20px;
    border-top: 1px solid #ddd;
  }

  .nav-links a {
    padding: 8px;
    color: var(--orange);
  }

  .nav-links a:hover {
    padding: 8px;
    color: var(--red);
  }

  .nav-links.active {
    display: flex;
  }
}

/* ================= HERO (CENTERED CARD STYLE) ================= */

/* ================= HERO V3 ================= */

.hero-v3 {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.png') center/cover no-repeat;
  filter: brightness(0.75);
}

/* CONTENT PANEL */
.hero-content-v3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* true center */

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);

  padding: 40px 50px;
  border-radius: 24px;

  max-width: 700px;
  width: 90%;
  text-align: center;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* TEXT */
.hero-content-v3 h5 {
  color: var(--green);
  margin-bottom: 10px;
}

.hero-content-v3 h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-content-v3 p {
  margin: 15px 0 25px;
  color: var(--muted);
}

/* BUTTON */
.btn-main {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-main:hover {
  background: var(--red);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content-v3 {
    padding: 25px;
  }

  .hero-content-v3 h1 {
    font-size: 32px;
  }
}


/* ================= ABOUT (HORIZONTAL STRIP) ================= */
/* ================= ABOUT V4 (ENHANCED) ================= */

.about-v4 {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #fff;
}

/* BACKGROUND STRIP (now richer) */
.about-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 65%;

  background: linear-gradient(135deg,
      #51803E 0%,
      #3e6a2f 100%);

  z-index: 0;
}

/* subtle pattern overlay */
.about-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 40%);
}

/* CONTENT */
.about-content-v4 {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

/* TEXT SIDE */
.about-text-v4 {
  color: #fff;
  max-width: 520px;
}

.about-text-v4 h2 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* BIG HEADLINE */
.about-text-v4 h3 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* divider line (adds structure) */
.about-text-v4 h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #E9A234;
  margin-top: 12px;
  border-radius: 2px;
}

.about-text-v4 p {
  margin-bottom: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

/* IMAGE SIDE */
.about-image-v4 {
  position: relative;
}

/* smoother overlap */
.about-image-v4 img {
  width: 100%;
  border-radius: 22px;

  transform: translateX(-40px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
}

/* hover micro interaction */
.about-image-v4 img:hover {
  transform: translateX(-40px) scale(1.02);
}

/* subtle floating accent */
.about-image-v4::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;

  width: 120px;
  height: 120px;
  border-radius: 50%;

  background: #E9A234;
  opacity: 0.2;
}

/* BUTTON */
.about-text-v4 .btn-primary {
  margin-top: 15px;
  background: #E9A234;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px 26px;
}

.about-text-v4 .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .about-bg {
    width: 100%;
  }

  .about-content-v4 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-text-v4 {
    margin: 0 auto;
  }

  .about-text-v4 h3::after {
    margin: 12px auto 0;
  }

  .about-image-v4 img {
    transform: none;
  }

  .about-image-v4::after {
    display: none;
  }
}

/* ================= MENU (ASYMMETRIC GRID) ================= */
#menu {
  padding: 100px 0;
}

/* GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.menu-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

/* IMAGE */
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.menu-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 16px;
  color: #fff;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.menu-info h4 {
  margin: 0 0 4px;
}

.menu-info p {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

.menu-info button {
  margin-top: 10px;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--orange);
  color: #fff;
}

.menu-info button:hover {
  background: var(--red);
}

/* FEATURE CARD */
.menu-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}

/* TABLET */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 220px;
  }
}

/* ================= TIMETABLE ================= */

/* TIMETABLE */
.timetable-area {
  background: #f5f5f5;
  padding: 50px 2%;
}

.timetable-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  text-align: center;
}

/* TABLE */
table.amrt-timetable-table th {
  background: var(--green);
  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(--orange);
}

/* ================= MAP ================= */

.map-modern {
  padding: 80px 0;
}

.map-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/* ================= FOOTER ================= */

.footer-simple {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 0;
}

.footer-simple a {
  color: var(--orange);
}

/* ================= FLOAT BUTTON ================= */

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .hero-content {
    padding: 30px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .menu-card:nth-child(1) {
    grid-row: auto;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .about-wrapper {
    flex-direction: column;
  }
}