* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #07111f;
  color: white;
  font-family: "Poppins", sans-serif;
}

/* NAVBAR */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 60px;

  background: rgba(5,10,20,0.95);

  position: sticky;
  top: 0;
  z-index: 100;
}

nav h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: white;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  color: #d9e6ff;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #8bb8ff;
}

/* HERO */

.hero {
  height: 100vh;

  background:
  linear-gradient(rgba(5,10,20,0.7), rgba(5,10,20,0.8)),
  url('images/hero.jpg') center/cover;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 20px;
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 85px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
}

.hero p {
  margin-top: 25px;
  color: #d0d9e8;
  line-height: 1.8;
  font-size: 18px;
}

/* BUTTON */

.btn {
  display: inline-block;

  margin-top: 30px;

  padding: 14px 34px;

  border: 1px solid #8bb8ff;

  color: white;

  text-decoration: none;

  border-radius: 40px;

  transition: 0.4s;
}

.btn:hover {
  background: #8bb8ff;
  color: #07111f;
}

/* SECTION */

.section {
  padding: 110px 70px;
}

h2 {
  text-align: center;

  margin-bottom: 40px;

  font-size: 55px;

  font-family: "Cormorant Garamond", serif;

  font-weight: 600;
}

/* ABOUT */

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image img {
  width: 450px;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}

.about-text p {
  color: #d0d9e8;
  line-height: 2;
  margin-bottom: 20px;
  font-size: 17px;
}

/* MENU */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-card {
  background: #0d1b2d;

  border-radius: 20px;

  overflow: hidden;

  transition: 0.5s;
}

.menu-card:hover {
  transform: translateY(-10px);
}

.menu-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.menu-card h3 {
  padding: 20px 20px 10px;

  font-family: "Cormorant Garamond", serif;

  font-size: 32px;
}

.menu-card p {
  padding: 0 20px;
  color: #d0d9e8;
  line-height: 1.7;
}

.menu-card span {
  display: block;

  padding: 20px;

  color: #8bb8ff;

  font-size: 20px;

  font-weight: bold;
}

/* CONTACT */

#contact {
  text-align: center;
}

#contact p {
  margin-bottom: 15px;
  color: #d0d9e8;
}

/* FOOTER */

footer {
  text-align: center;

  padding: 30px;

  border-top: 1px solid rgba(255,255,255,0.1);

  color: #9fb0c9;
}

/* MOBILE */

@media (max-width: 768px) {

  nav {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .about-container {
    flex-direction: column;
  }

  .about-image img {
    width: 100%;
    height: auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

}