:root {
  --primary: #3C2C22;
  --secondary: #7F5737;
  --white: #fff;
  --dark: #111;
  --gray: #666;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PT Sans Narrow', sans-serif;
}

body {
  background: var(--secondary);
  color: var(--dark);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.logo img {
  max-height: 250px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.cta {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  background: var(--secondary);
  color: #000;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url('../img/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
}

.brand-name {
  letter-spacing: 2px;
  opacity: 0.8;
}

.hero h1 {
  font-size: 64px;
  font-family: 'Pacifico', cursive;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #573D29;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
}

.btn-outline {
  border: 2px solid #fff;
  padding: 10px 25px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
}

/* SECTION */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 10px auto 0;
}

/* ABOUT */
.about {
  padding: 50px 0;
  text-align: center;
  color: var(--white);
}



.about-intro {
  margin-bottom: 15px;
  color: var(--white);
}

.about .card-btn {
  margin-top: 15px;
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s;
}

.card-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* MENU */
#menu {
  padding: 100px 0;
  background: #fff;
}

.menu-grid {
  display: grid;
  gap: 25px;
}

/* Mobile (default) → 1 column */
.menu-grid {
  grid-template-columns: 1fr;
}

/* Tablets → 2 columns */
@media (min-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens → exactly 3 columns */
@media (min-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.menu-card img {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  transition: 0.4s;
}

.menu-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: 0.4s;
}

.menu-card:hover img {
  transform: scale(1.1);
}

.menu-card:hover .menu-card-content {
  opacity: 1;
}

.menu-card.modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.menu-card.modern:hover {
  transform: translateY(-8px);
}

.menu-info {
  padding: 20px;
  border: 1px solid var(--primary);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top: none;
}

.menu-info h4 {
  margin-bottom: 8px;
  color: #573D29;
}

.allergy-note {
  background-color: var(--secondary);
  color: var(--white);
  font-size: 24px;
  font-style: 800px;
  text-align: center;
  margin-bottom: none;
  padding-top: 5px;
}

/* MAP */
.map-modern {
  padding: 80px 0;
  background: #fff;
}

.map-header {
  text-align: center;
  margin-bottom: 25px;
}

.map-header h2 {
  color: #573D29;
  font-size: 32px;
  margin-bottom: 10px;
}

.address {
  font-size: 14px;
  opacity: 0.7;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* FOOTER */
.footer-simple {
  background: #573D29;
  color: #fff;
  padding: 20px 0;
  font-size: 18px;
}

.footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0.85;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
}

.footer-copy {
  text-align: center;
  margin-top: 8px;
  opacity: 0.6;
  font-size: 12px;
  color: var(--white);
}

/* FLOATING BUTTON */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.floating-cta:hover {
  background: var(--secondary);
  color: #000;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width:768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #E3DFDD;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
    margin-top: 0.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .about-box {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 40px;
  }
}

/* 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);
}

.fa {
  color: var(--primary);
}

footer a {
  color: #fff;
}