body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=2100&q=80')
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0 20px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

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

/* CONTENT CONTAINERS */
.container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 300px;
}

.gallery-item {
  background-size: cover;
  background-position: center;
}

/* FORM */
.register {
  padding: 100px 20px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

input {
  width: 90%;
  max-width: 350px;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

button,
.button {
  display: inline-block;
  padding: 14px 30px;
  background: black;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  margin-top: 10px;
}

button:hover,
.button:hover {
  background: #333;
}

/* THANK YOU SCREEN */
#thankyou {
  display: none;
  height: 100vh;
  text-align: center;
  padding: 100px 20px;
}

#thankyou.visible {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.hidden {
  display: none;
}

.thank-you-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.thank-you-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.thank-you-content p {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

select {
  width: 90%;
  max-width: 350px;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  appearance: none; /* Removes the default system dropdown look */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
