/* ===============================
   General Styles
=============================== */
:root {
  --accent: #ffc107; /* Yellow */
  --yellow-hover: #e0a800;
  --muted: #666;
  --body-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

/* ===============================
   Navbar
=============================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

.main-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
}

.main-nav a {
  color: #fff;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--yellow-hover);
}

.nav-actions .btn {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 6px;
  background: var(--accent);
  color: #000;
  border: 0;
  cursor: pointer;
}

.nav-actions .btn:hover {
  background: var(--yellow-hover);
  color: #fff;
}

.nav-actions .btn-outline {
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}

.nav-actions .btn-outline:hover {
  background: var(--yellow-hover);
  color: #fff;
  border-color: var(--yellow-hover);
}

/* ===============================
   Banner / Home
=============================== */
.banner {
  margin-top: 0;
  height: 620px;
  background: url('/images/slider-image3.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-content {
  max-width: 700px;
  color: #fff;
  padding-left: 2%;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.banner-content .lead {
  margin-bottom: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.95);
}

.banner-content .btn-reserve {
  padding: 12px 28px;
  border-radius: 6px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.banner-content .btn-reserve:hover {
  background: var(--yellow-hover);
  color: #fff;
}

/* ===============================
   Story Section
=============================== */
.story {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.story-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.story-text {
  flex: 1 1 520px;
  min-width: 280px;
}

.story-photo {
  flex: 1 1 420px;
  min-width: 260px;
}

.story-photo img {
  width: 100%;
  border-radius: 8px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.story-text h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.story-text p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* ===============================
   Team Section
=============================== */
.team {
  padding: 72px 0;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 36px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.card {
  width: 260px;
  text-align: center;
  transition: 0.3s;
}

.card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  transition: 0.3s;
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 6px;
}

.card .muted {
  color: var(--muted);
  font-size: 14px;
}

/* ===============================
   Menu Section
=============================== */
.menu {
  background: #faf8f6;
  padding: 72px 0;
  text-align: center;
}

.menu-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.menu-card {
  width: 320px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background: transparent;
  transition: 0.3s;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}

.menu-card:hover img {
  transform: scale(1.05);
}

.menu-info {
  padding: 12px 14px;
}

.menu-info h3 {
  margin-bottom: 6px;
}

.price {
  color: var(--accent);
  font-weight: 600;
}

/* ===============================
   Testimonial Section
=============================== */
.testimonial {
  padding: 72px 0;
}

.testimonial-bg {
  position: relative;
  background: url('/images/testimonial-bg.jpg') center/cover no-repeat;
  border-radius: 8px;
  padding: 120px 0;
}

.testimonial-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(0,0,0,0.48);
  z-index: 0;
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.testimonial-quote {
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 18px;
}

/* ===============================
   Contact Section
=============================== */
.contact {
  padding: 72px 0;
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-form {
  flex: 1 1 520px;
  min-width: 280px;
}

.contact-aside {
  flex: 1 1 360px;
  min-width: 280px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-aside iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form button {
  width: 180px;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--yellow-hover);
  color: #fff;
}

/* ===============================
   Footer
=============================== */
.site-footer {
  background: #222;
  color: #fff;
  padding: 60px 0 30px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--accent);
}

.footer-col p {
  margin: 4px 0;
  color: #ccc;
  font-size: 14px;
}

.footer-col img {
  display: block;
  margin: 0 auto 12px;
  max-width: 140px;
}

.footer-copy {
  font-size: 14px;
  color: #aaa;
  text-align: center;
  margin-top: 12px;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 1000px) {
  .banner { height: 520px; }
  .banner-content h1 { font-size: 40px; }
}

@media (max-width: 800px) {
  .banner { height: 460px; }
  .banner-content h1 { font-size: 32px; }
  .banner-content .lead { font-size: 16px; }
  .story-inner { flex-direction: column-reverse; text-align: center; }
  .team-cards { gap: 14px; }
  .card { width: 100%; max-width: 320px; }
  .menu-card { width: 100%; max-width: 420px; }
  .contact-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .banner { height: 360px; }
  .banner-content h1 { font-size: 24px; }
  .banner-content .lead { font-size: 14px; }
  .main-nav ul { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-col img { margin: 6px auto; }
}
