/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf0;
  color: #1a1a1a;
  line-height: 1.6;
}

.logo {
  font-family: 'Lobster', cursive;
  font-size: 1.8rem;
  color: #fff;
}

/* Navbar */
.navbar {
  background-color: #6a0000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 1rem 1.2rem;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fcb045; /* golden-orange hover tone */
}

/* Hero Section */
.hero {
  background: url('Hero\ Background.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff0eb;
}

.hero h1 {
  font-family: 'Lobster', cursive;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6347, #ffcc29);
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: 0 0 15px #fcb045; /* golden-orange hover tone */
  transform: scale(1.05);
}

/* Menu Section */
.menu {
  padding: 4rem 2rem;
  background-color: #fff0eb;
  text-align: center;
}

.menu h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #6a0000;
}

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

.card {
  background: #fbe3d1;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
  border: 2px solid #ff6347;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.6);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card p {
  margin-top: 1rem;
  font-weight: 600;
  color: #6a0000;
}

/* Menu Button */
.menu-btn {
  display: inline-block;
  background: linear-gradient(90deg, #cf0006, #ff6347);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 6px 14px rgba(255, 99, 71, 0.12);
}

.menu-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(255, 99, 71, 0.18);
}

/* About Section */
.about {
  padding: 4rem 2rem;
  text-align: center;
  color: #fbe3d1;
  background: #6a0000;
}

.about h2 {
  font-family: 'Lobster', cursive;
  margin-bottom: 1rem;
  color: #fbe3d1;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #fbe3d1;
  color: #6a0000;
}

.footer-socials {
  margin-bottom: 1rem;
}

.footer-socials a {
  color: #6a0000;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #fcb045; /* golden-orange hover tone */
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}

/* Hide checkbox */
#menu-toggle {
  position: absolute;
  left: -9999px;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #6a0000;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.36s cubic-bezier(.2, .9, .2, 1), padding 0.2s ease;
    z-index: 999;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    padding: 1.2rem 0;
    max-height: 520px;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1.15rem;
    color: #fff;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
  }
}