* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}
section {
  padding: 4rem 2rem;
  text-align: center;
}
.section-alt {
  background-color: #f6f7f9;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.spaced-note {
  margin-top: 2rem;
}

.email-line {
  font-size: 1.1rem;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.email-line a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
  transition: color 0.3s ease;
}

.email-line a:hover {
  color: #000;
}

.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.button:hover {
  background: white;
  color: black;
  border-color: white;
}
.button.secondary {
  background: transparent;
  color: black;
  border: 2px solid black;
}

.button.secondary:hover {
  background: black;
  color: white;
}

#hero {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-height: 100vh;
  background: url("../assets/VBWWscZtszY-Title.jpg") no-repeat center
    center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.hero-content {
  position: relative;
  color: white;
  text-align: center;
  padding: 0 1rem;
  max-width: 700px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}

footer {
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #eee;
}

/* Lightbox */
#lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  inset: 0;
  z-index: 9999;
}
#lightbox img {
  max-width: 90%;
  max-height: 90vh;
}
#close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}
