/* Global Styles & Google Font */
body, h1, h2, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* Hero Section */
.hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(78, 46, 28, 0.7); /* Dark Brown overlay */
  padding: 2rem 3rem;
  border-radius: 8px;
  text-align: center;
  color: #FFD700; /* Gold text */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background: #FFF; /* White background for clarity */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.8rem;
  color: #4E2E1C;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
