/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
}

/* NAVBAR */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 10%;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

nav h1 {
  color: white;
  font-size: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: gold;
}

/* HERO */

.hero {
  height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1400&auto=format&fit=crop");

  background-size: cover;
  background-position: center;

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

  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h2 {
  font-size: 65px;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  font-size: 18px;
}

.hero-content button,
.contact button {
  margin-top: 25px;
  padding: 14px 35px;

  border: none;
  border-radius: 8px;

  background: gold;
  color: black;

  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.hero-content button:hover,
.contact button:hover {
  background: white;
}

/* GALLERY */

.gallery {
  padding: 100px 10%;
  text-align: center;
}

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

.gallery-grid {
  margin-top: 50px;

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

.card {
  background: white;
  padding: 20px;

  border-radius: 18px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 20px;
}

.image-placeholder {
  background: #ddd;
  height: 250px;

  border-radius: 16px;

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

  color: #555;
  font-weight: bold;
}

/* ABOUT */

.about {
  padding: 100px 10%;
  text-align: center;
}

.about-description {
  max-width: 800px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

/* TEAM */

.team-section {
  margin-top: 60px;

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

.person-card {
  background: white;
  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

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

.person-photo {
  height: 260px;
  background: #ddd;

  border-radius: 18px;

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

  margin-bottom: 25px;

  color: #555;
  font-weight: bold;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.person-card h3 {
  margin-bottom: 10px;
}

.person-card p {
  color: #777;
}

/* BANNER */

.banner {
  height: 400px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1484154218962-a197022b5858?q=80&w=1400&auto=format&fit=crop");

  background-size: cover;
  background-position: center;

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

  text-align: center;
  color: white;
}

.banner-overlay h2 {
  font-size: 55px;
  margin-bottom: 15px;
}

/* CONTACT */

.contact {
  padding: 100px 10%;
  text-align: center;
}

form {
  max-width: 600px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 15px;

  border: 1px solid #ccc;
  border-radius: 8px;
}

textarea {
  height: 150px;
}

/* FOOTER */

footer {
  background: black;
  color: white;

  text-align: center;
  padding: 25px;
}

/* MOBILE */

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content h2 {
    font-size: 42px;
  }
}
