* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0e0e;
  color: #e0e0e0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.hero {
  height: 100vh;
  background: url("images/photo1.jpg") center/cover no-repeat;
  position: relative;
}

.hero .overlay {
  background: rgba(0,0,0,0.65);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 0.3rem;
}

.hero p {
  margin-top: 20px;
  font-size: 1.2rem;
  opacity: 0.8;
}

section {
  padding: 80px 10%;
}

.about h2,
.gallery h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

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

.gallery img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.quote {
  background: #141414;
  text-align: center;
}

.quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.85;
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  opacity: 0.6;
}
/* ===== Mobile & Tablet ===== */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2.4rem;
    letter-spacing: 0.15rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 50px 7%;
  }

  .quote blockquote {
    font-size: 1.2rem;
  }
}

/* ===== Small phones ===== */
@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

  .hero .overlay {
    justify-content: flex-end;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .gallery .photos {
    grid-template-columns: 1fr;
  }
}
