/* Global styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
  background-color: #f4f0e5;
  color: #3b2f2f;
  line-height: 1.6;
}

/* Header styles */
header {
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.45); /* transparent dark overlay */
  z-index: 1;
}

header h1, header p, nav {
  position: relative;
  z-index: 2;
}



header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

header p {
  font-style: italic;
  font-size: 1.1rem;
}

nav {
  margin-top: 20px;
}

nav a {
  color: #f0e3d2;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Section styles */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  border-bottom: 1px solid #ddd;
}

h2 {
  color: #5a3e36;
  font-size: 2rem;
  margin-bottom: 20px;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #3b2f2f;
  color: #f4f0e5;
  font-size: 0.9rem;
}
/* Gallery section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item p {
  margin-top: 10px;
  font-style: italic;
  color: #5a3e36;
}


/* Contact section */
.contact-details {
  background-color: #ede6db;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-details p {
  margin: 10px 0;
  color: #3b2f2f;
  font-size: 1rem;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  header p, nav a {
    font-size: 0.9rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  section {
    padding: 30px 15px;
  }

  .gallery-item p {
    font-size: 0.9rem;
  }

  .contact-details {
    padding: 15px;
  }
}
