/* ============================= */
/* GLOBAL RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* remove horizontal scroll */
  font-family: 'Poppins', sans-serif;
  background: #222224;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================= */
/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* ================= HEADER ================= */

.main-header {
  background: #222224;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Flex layout */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 55px;
  display: block;
}

/* ================= DESKTOP NAV ================= */

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav a:hover {
  color: #C50C74;
}

/* Desktop button */
.desktop-btn {
  display: inline-block;
}

/* ================= BUTTON ================= */

.btn-primary {
  background: linear-gradient(135deg, #C50C74, #9e0a5c);
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 12, 116, 0.4);
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

  /* Hide desktop button */
  .desktop-btn {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Mobile dropdown menu */
  .nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #222224;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    transform: translateY(-200%);
    transition: transform 0.4s ease;
  }

  .nav.active {
    transform: translateY(0);
  }
}


/* ============================= */
/* BUTTONS */
.btn-primary,
.btn-small,
.btn-secondary {
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary {
  padding: 0.8rem 2rem;
  border: none;
  background: linear-gradient(135deg, #C50C74, #222224);
  color: #fff;
  box-shadow: 0 5px 15px rgba(197, 12, 116, 0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(197, 12, 116, 0.6);
}

.btn-secondary {
  padding: 0.7rem 1.8rem;
  border: 2px solid #C50C74;
  background: transparent;
  color: #C50C74;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #C50C74, #222224);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(197, 12, 116, 0.5);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  border: none;
  background: linear-gradient(135deg, #C50C74, #222224);
  color: #fff;
}

.btn-small:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* ============================= */
/* HERO SECTION */
.hero-section {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
    background-image: 
        linear-gradient(135deg, rgba(34,34,36,0.7), rgba(197,12,116,0.7)),
        url('../images/hero-food.png');
    background-size: cover, cover;          
    background-position: center, center;    
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;        
}


.hero-section {
  transition: transform 8s ease;
}

.hero-section:hover {
  transform: scale(1.05);
}


.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-section .hero-content {
    position: relative;        /* stay above background */
    z-index: 2;
    padding: 2rem 3rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);  /* semi-transparent black */
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: inline-block;     /* wrap text tightly */
    max-width: 600px;          /* prevent stretching too wide */
    text-align: center;
}

/* Optional: make text more readable */
.hero-section h1, .hero-section h4, .hero-section p {
    color: #fff;
}


/* ============================= */
/* SECTIONS COMMON */
.about-section,
.menu-section,
.timetable-section,
.location-section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #C50C74;
  margin-bottom: 3rem;
}

/* ============================= */
/* ABOUT SECTION */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #C50C74;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ============================= */
/* MENU SECTION */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.menu-card {
  position: relative;
  flex: 1 1 300px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background: #111112;
  transition: transform 0.3s;
}

.menu-card img {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-card-overlay {
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(197, 12, 116, 0.85);
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-card:hover {
  transform: scale(1.05);
}

.menu-card:hover .menu-card-overlay {
  opacity: 1;
}

/* ============================= */
/* TIMETABLE SECTION */
.timetable-section {
  background: linear-gradient(90deg, #C50C74, #222224);
}

.timetable-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.timetable-box {
  flex: 1;
  min-width: 280px;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
}

table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
  background-color: #C50C74;
}

/* ============================= */
/* LOCATION SECTION */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.map-wrapper {
  flex: 2;
}

.map-wrapper iframe {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  border: none;
  display: block;
}

.contact-info {
  flex: 1;
  background: rgba(197, 12, 116, 0.1);
  padding: 2rem;
  border-radius: 20px;
  color: #fff;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #C50C74;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  /* vertically center icon + text */
  gap: 0.5rem;
  /* space between icon and text */
  color: #fff;
}

.contact-info i {
  color: #C50C74;
  /* icon color matches brand */
  font-size: 1.2rem;
  min-width: 20px;
  /* keeps icons aligned */
}


/* ============================= */
/* FOOTER */
.footer {
  padding: 2rem 0;
  background: #222224;
  color: #fff;
  text-align: center;
}

.footer a {
  color: #C50C74;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ============================= */
/* RESPONSIVE */
@media (max-width: 991px) {

  .about-grid,
  .location-grid {
    flex-direction: column;
  }
}