/* Base styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
  background: url('images/hero-bg.jpg') center center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.85;
}

/* About Section */
.about {
  padding: 4rem 1rem;
  background-color: #fafafa;
  text-align: center;
}

.about .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery Section */
.gallery {
  padding: 4rem 1rem;
  background: white;
}

.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.grid-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s ease-in-out;
}

.grid-item img:hover {
  transform: scale(1.02);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox span#close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f5f5f5;
  font-size: 0.9rem;
}
