@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

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

/* ---------- BODY ---------- */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #56463f, #766060);
  color: #252323;
  line-height: 1.6;
}

/* ---------- NAVBAR ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  padding: 0 50px;
  background: rgba(26, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #ffffff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

/* ---------- HERO ---------- */
.hero {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("images/interior.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: #ffffff;
}

.hero h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 60px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

/* ---------- GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ---------- CARD ---------- */
.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---------- MENU ---------- */
.dark {
  background: #1c1c1c;
  color: #fff;
}

.menu {
  max-width: 500px;
  margin: auto;
  text-align: left;
}

/* ---------- FOOTER ---------- */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 25px;
}