@import url('https://fonts.googleapis.com/css2?family=Chau+Philomene+One&family=Ruluko&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron: #ffcd2c;
  --saffron-dark: #eeb62f;
  --red: #d53e33;
  --red-hover: #b8322a;
  --dark: #333;
  --light: #f9f9f9;
  --white: #fff;
  --text: #555;
  --text-light: #888;
  --shadow: 0 2px 8px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Ruluko', Georgia, serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .nav-link, .btn {
  font-family: 'Chau Philomene One', Impact, sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-hover); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: .85rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--saffron); }
.topbar a:hover { color: var(--white); }
.topbar .social a { margin-left: 10px; font-size: 1rem; }

/* ---------- HEADER / NAV ---------- */
header {
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img { height: 60px; width: auto; }

nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--dark);
  padding: 8px 14px;
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.nav-link:hover, .nav-link.active {
  background: var(--saffron);
  color: var(--dark);
}
.nav-link.order-btn {
  background: var(--red);
  color: var(--white);
  margin-left: 6px;
}
.nav-link.order-btn:hover {
  background: var(--red-hover);
  color: var(--white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ---------- HERO ---------- */
.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.hero-content { position: relative; z-index: 1; padding: 40px 20px; }
.hero h1 {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0,0,0,.5);
}
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 24px; }
.hero .btn { font-size: 1.1rem; padding: 14px 36px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); color: var(--white); }
.btn-saffron { background: var(--saffron); color: var(--dark); }
.btn-saffron:hover { background: var(--saffron-dark); color: var(--dark); }

/* ---------- SECTIONS ---------- */
section { padding: 60px 0; }
section:nth-child(even) { background: var(--light); }

.section-title {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--dark);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--saffron);
  margin: 12px auto 0;
}
.section-subtitle {
  text-align: center;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* ---------- CARDS (Why Choose / Services) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
  padding: 30px 24px;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.card p { color: var(--text); font-size: .95rem; }

.card-image { padding: 0; text-align: left; }
.card-image img { width: 100%; height: 200px; object-fit: cover; margin: 0; }
.card-image .card-body { padding: 20px 24px; }

/* ---------- PARALLAX ---------- */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}
.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.parallax-content { position: relative; z-index: 1; padding: 40px 20px; }
.parallax h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(0,0,0,.4);
}

/* ---------- TEAM ---------- */
.team-section { text-align: center; }
.team-img {
  max-width: 600px;
  margin: 0 auto 24px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* ---------- PAGE BANNER ---------- */
.page-banner {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.page-banner h1 {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,.5);
}

/* ---------- ABOUT ---------- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; color: var(--text); }
.about-images { display: flex; flex-direction: column; gap: 20px; }
.about-images img { border-radius: 8px; box-shadow: var(--shadow); }

/* ---------- GALLERY ---------- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 24px;
  font-family: 'Chau Philomene One', sans-serif;
  text-transform: uppercase;
  border: 2px solid var(--saffron);
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  color: var(--dark);
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--saffron);
  color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.gallery-group { display: none; }
.gallery-group.active { display: grid; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1000;
  line-height: 1;
}

/* ---------- CATERING ---------- */
.catering-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Ruluko', serif;
  font-size: 1rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--saffron);
  outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ---------- LOCATIONS ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.location-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--saffron);
}
.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--dark);
}
.location-card p { color: var(--text); margin-bottom: 8px; font-size: .95rem; }
.location-card .icon { color: var(--red); margin-right: 8px; }
.location-hours { border-top: 1px solid #eee; padding-top: 12px; margin-top: 12px; }

/* ---------- MAP ---------- */
.map-embed {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
  margin-top: 30px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 {
  color: var(--saffron);
  font-size: 1.1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-col p, .footer-col li { font-size: .9rem; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col a { color: #ccc; }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid #555;
  padding: 16px 0;
  text-align: center;
  font-size: .85rem;
  color: #999;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hamburger { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 12px 0;
  }
  nav.open { display: flex; }
  .nav-link { width: 100%; text-align: center; padding: 12px; }

  .hero h1 { font-size: 1.8rem; }
  .hero { min-height: 350px; }
  .section-title { font-size: 1.5rem; }
  .parallax h2 { font-size: 1.5rem; }

  .about-content,
  .catering-content { grid-template-columns: 1fr; }

  .page-banner { min-height: 200px; }
  .page-banner h1 { font-size: 1.8rem; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .gallery-grid img { height: 150px; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .topbar .container { font-size: .75rem; }
  .cards { grid-template-columns: 1fr; }
}
