@import url('https://fonts.googleapis.com/css2?family=Arapey&family=Yeseva+One&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Arapey', serif;
  background: #070707;
  color: #f5f5f5;
}

/* 🌸 HERO (NO HARSH RESET, SMOOTH ONLY) */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(135deg,
      rgba(255,182,193,0.22),
      rgba(168,85,247,0.12),
      rgba(34,211,238,0.08)
    ),
    url("959.jpg"); /* 👈 YOUR MAIN PHOTO HERE */

  background-size: cover;
  background-position: center;
}

/* 🌟 SOFT GLOBAL SHIMMER (NO JUMPING ANIMATION) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 80px 80px;

  opacity: 0.15;
  transform: translateZ(0);
}

/* 🖋 HEADINGS */
h1, h2, h3 {
  font-family: 'Yeseva One', serif;
  color: #ffd6e7;
}

h1 {
  font-size: 60px;
  margin: 0;
  text-shadow: 0 0 25px rgba(255,192,203,0.25);
}

/* 📄 SECTIONS */
section {
  max-width: 1000px;
  margin: 70px auto;
  padding: 25px;
}

/* 💎 GLASS CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

/* 💖 BUTTON */
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  color: black;

  background: linear-gradient(90deg, #ffb6c1, #c084fc, #67e8f9);
  background-size: 300%;
}

/* 📸 GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
}

/* 💅 BOOKING (FIXED READABILITY) */
.booking {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px;
  border-radius: 22px;
}

/* FORM FIX */
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 15px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(0,0,0,0.5);
  color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}