/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff; /* Solid white page background */
  color: white;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Page container */
.page-wrapper {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: solid 1px #cdd3cd;
}

/* Header */
header {
  background-color: #5a7d5a;
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 8px 8px 0 0;
}

header h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  letter-spacing: 1px;
}

/* Main */
main {
  position: relative;
  background: url('./bg.jpg') no-repeat center center;
  background-size: 100% 100%; /* Stretch to fit main */
  padding: 5rem 2rem;
  min-height: 300px; /* Adjust as needed */
  color: #ffffff;
  font-weight: bold;

  p {
    font-size: 23px;
    margin-top: 1rem;
    padding-right: 2rem;
    padding-left: 2rem;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  }
}

/* Overlay inside main */
/* main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.5
  ); /* 50% white transparent overlay */
  z-index: 0;
} */

main > * {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background-color: #4a684a;
  color: white;
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer div {
  flex: 1;
  min-width: 250px;
}

.footer .title {
  margin-top: 0.5rem;
  text-align: left;
}

.footer a {
  color: #ddd;
  text-decoration: none;
}

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

.fa {
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  header h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem !important;
    letter-spacing: 1px;
  }

  body {
    font-size: 1rem;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.clickable-img {
  width: 250px;
  margin: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
  box-shadow: 3px 0px 10px 3px rgb(103 132 106 / 89%);
}

.clickable-img:hover {
  transform: scale(1.05);
}

.image-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px #000;
}
