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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  background: #0b0b0f;
  color: #f5f5f5;
}

h1, h2 {
  letter-spacing: -0.5px;
}

.highlights h2,
.reservation h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

/* =========================
   NAVBAR (GLASS EFFECT)
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

nav a:hover {
  color: #2d6a4f;
}

/* =========================
   HERO (MODERN APP STYLE)
========================= */
.hero {
  height: 45vh;
  display: flex;
  align-items: center;
  padding: 60px;
  position: relative;
  background: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

/* =========================
   BUTTONS (GLOW EFFECT)
========================= */
button {
  background: #2d6a4f;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45,106,79,0.4);
}

/* =========================
   MAIN LAYOUT
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
}

.box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 70px 0;
  align-items: start;
}

/* =========================
   HIGHLIGHTS (CARDS PREMIUM)
========================= */
.highlights h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.highlights .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);

  transition: 0.4s ease;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  padding: 10px 12px 0;
}

.card p {
  padding: 0 12px 15px;
  color: #aaa;
}

/* =========================
   RESERVATION (APP STYLE CARD)
========================= */
.reservation {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 1s ease;
}

.reservation h2 {
  font-size: 26px;
}

.reservation p {
  color: #aaa;
}

.reservation input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.4);
  color: white;
}

.reservation input:focus {
  outline: none;
  border-color: #2d6a4f;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.2);
}

.row {
  display: flex;
  gap: 10px;
}

.row input {
  flex: 1;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .box {
    grid-template-columns: 1fr;
  }

  .highlights .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 25px;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}