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

body {
  background-color: #fffaf5;
  color: #333;
  line-height: 1.6;
}

header {
  background: #3e2723;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* .hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero-content {
  background: rgba(0,0,0,0.5);
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
} */

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

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero .btn {
  background: #d7ccc8;
  color: #3e2723;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #c7b6ac;
}


.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.buttons .btn {
  display: inline-block;
  margin: 10px;
}

section {
  padding: 60px 10%;
  text-align: center;
}

h2 {
  color: #3e2723;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin-bottom: 20px;
}

.btn {
  background: #6f4e37;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover {
  background: #5a3c2a;
}

.btn.secondary {
  background: #d7ccc8;
  color: #3e2723;
}

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

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

blockquote {
  font-style: italic;
  margin: 10px auto;
  max-width: 600px;
  background: #f5f5f5;
  padding: 10px;
  border-left: 4px solid #6f4e37;
}

.social a {
  display: inline-block;
  margin: 10px;
  color: #3e2723;
  font-weight: 500;
  text-decoration: none;
}

.social a:hover {
  text-decoration: underline;
}

footer {
  background: #3e2723;
  color: white;
  text-align: center;
  padding: 20px 10%;
  font-size: 0.9rem;
}