/* Base Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff8f0;
}

header {
  background-color: #d4af37;
  padding: 1em;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

header .logo {
  height: 60px;
  width: auto;
  border-radius: 5px;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

/* Hero Section */
#hero {
  position: relative;
  background: url('https://tse4.mm.bing.net/th/id/OIP.MXLDt8zUuAatlYmA3UuPMAHaEf?rs=1&pid=ImgDetMain') no-repeat center center/cover;
  color: white;
  padding: 5em 1em;
  text-align: center;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#hero h2,
#hero p,
#hero a {
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #d4af37;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b88a44;
}

section {
  padding: 2em;
  max-width: 1000px;
  margin: auto;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5em;
  padding-top: 1em;
}

.gallery-item {
  background-color: white;
  border: 2px solid #d4af37;
  border-radius: 8px;
  text-align: center;
  padding: 1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.gallery-item .caption {
  margin-top: 0.8em;
  font-weight: bold;
  color: #333;
  font-size: 1.1em;
}

/* Contact & Footer */
footer {
  background-color: #d4af37;
  text-align: center;
  color: white;
  padding: 1em;
}

a:focus {
  outline: 2px dashed #b88a44;
  outline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5em;
  }

  section {
    padding: 1.5em 1em;
  }

  #hero {
    padding: 3em 1em;
  }

  .cta-button {
    font-size: 0.9em;
    padding: 0.6em 1.2em;
  }
}

@media (max-width: 480px) {
  header {
    flex-direction: column;
  }

  #hero h2 {
    font-size: 1.4em;
  }

  #hero p {
    font-size: 1em;
  }
}
