@import url('https://fonts.googleapis.com/css2?family=Arapey&family=Yeseva+One&display=swap');

:root {
  --bg: #070707;
  --text: #f5f5f5;
  --muted: #b7a9b5;
  --accent: #ffd6e7;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Arapey', serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
  transform: translateZ(0);
}

nav {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 18px 24px;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav a {
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 182, 193, 0.22), rgba(168, 85, 247, 0.12), rgba(34, 211, 238, 0.08)),
    url("images/frenchpurp.jpg.jpg");
  background-size: cover;
  background-position: center;
}

h1, h2, h3 {
  font-family: 'Yeseva One', serif;
  color: var(--accent);
}

h1 {
  font-size: clamp(2.7rem, 7vw, 4.5rem);
  margin: 0;
  text-shadow: 0 0 25px rgba(255, 192, 203, 0.25);
}

p {
  line-height: 1.6;
}

section {
  position: relative;
  max-width: 1100px;
  margin: 70px auto;
  padding: 25px;
}

.grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card,
.booking {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.card {
  padding: 20px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  border: 0;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  color: black;
  cursor: pointer;
  background: linear-gradient(90deg, #ffb6c1, #c084fc, #67e8f9);
}

.gallery img,
.grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: block;
}

.booking {
  padding: 40px;
}

form {
  margin-top: 20px;
}

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;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

@media (max-width: 640px) {
  nav {
    gap: 16px;
    padding: 16px;
  }

  .hero {
    min-height: 78vh;
  }

  .gallery img,
  .grid img {
    height: 260px;
  }
}
