* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Inter", sans-serif; */
  font-family: "Playfair Display", serif;
}

body {
  background-color: #0e0e0e;
  color: #f1f1f1;
  line-height: 1.6;
  padding-top: 68px;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0e0e0e;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dark-mode header {
  background-color: #f1f1f1;
}
header h1 {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

nav a {
  margin-left: 20px;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.489)),
    url("https://images.pexels.com/photos/5812847/pexels-photo-5812847.jpeg")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px;
  min-width: 100vw;
}
.dark-mode .hero {
  background: url("https://images.pexels.com/photos/5812847/pexels-photo-5812847.jpeg")
    center/cover no-repeat;
}

.hero-content {
  max-width: 500px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.btn {
  padding: 12px 24px;
  background-color: #c18f59;
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgb(227, 176, 74);
  cursor: pointer;
}

.dark-mode-btn {
  margin-left: 16px;
}

section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: auto;
}

section h3 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.menu-item {
  background-color: #161616;
  padding: 16px;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.menu-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.menu-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.menu-item h4 {
  font-size: 1.2rem;
  margin: 8px 0;
}

.menu-item span {
  display: block;
  color: #c18f59;
  font-weight: 600;
  margin-top: 8px;
}

.about p {
  max-width: 700px;
  opacity: 0.9;
}
.about-img {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
  overflow: hidden;
}
.about-img img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 40px;
  background-color: #0a0a0a;
  opacity: 0.6;
}

.dark-mode {
  background-color: #f1f1f1;
  color: #0e0e0e;
}
.dark-mode .hero-content {
  color: white;
}
.dark-mode .menu-item {
  background-color: #eaeaea;
}

.dark-mode .btn {
  background-color: #dd9548;
  color: #5a3d1d;
  box-shadow:
    #00000033 0px 4px 6px -1px,
    #00000020 0px 8px 12px -2px;
}

.dark-mode footer {
  background-color: #d4d4d4;
  opacity: 0.8;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}

/* Hamburger menu button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 2px;
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #0e0e0e;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.mobile-nav a {
  margin: 8px 0;
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav a:hover {
  opacity: 0.8;
}

/* Show mobile nav when active */
.mobile-nav.active {
  display: flex;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .dark-mode-btn {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .about-img {
    padding-top: 2em;
    flex-direction: column;
    align-items: center;
  }
  .about-img img {
    width: 100%;
  }

  .location {
    grid-template-columns: 1fr;
    text-align: left;
  }

  nav {
    display: none;
  }
}

/* Hide the mobile dark mode button on desktop */
#darkModeToggleMobile {
  display: none;
}

/* Show the mobile dark mode button when the mobile nav is active */
@media (max-width: 768px) {
  #darkModeToggleMobile {
    display: block;
    margin-top: 16px;
  }
}
