
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #f8f5f2, #ebe5df);
  color: #222;
}

.hero {
  height: 90vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('https://images.unsplash.com/photo-1538485399081-7c897f5c7c4f?q=80&w=1600');
  background-size: cover;
  background-position: center;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 760px;
  padding: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
}

button {
  background: black;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.25s ease;
}

button:hover {
  transform: translateY(-2px);
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 40px 24px 80px;
}

.glass-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 28px;
  padding: 30px;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin-bottom: 8px;
  font-size: 32px;
  font-family: 'Playfair Display', serif;
}

.section-header p {
  color: #666;
}

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

input, select {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #ddd;
  background: rgba(255,255,255,0.9);
}

#map {
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.card {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  display: block;
}

.card-content {
  padding: 18px;
}

.card-content h3 {
  margin: 0 0 6px;
}

.day-plan {
  margin-top: 20px;
  padding: 24px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.day-plan h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {

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

  .hero p {
    font-size: 16px;
  }

  .container {
    padding: 24px 16px;
  }

}
