/* Body with fixed background image visible site-wide */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* background-image: url('assets/background.jpg'); */
  /* background-size: cover; */
  /* background-attachment: fixed; */
  /* background-position: center; */
  /* background-repeat: no-repeat; */
  color: #f1f1f1;
}

/* Hero section without background image (moved to body) */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Semi-transparent black overlay on hero text */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6rem;
  border-radius: 10px;
  text-align: center;
}

.overlay h1 {
  font-size: 6rem; /* doubled from 3rem */
  margin: 0;
}

.overlay p {
  font-size: 2rem;
  margin-top: 1rem;
}

/* Content wrapper with semi-transparent black background */
.content-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
}

/* Add some spacing between sections */
.content-overlay > section,
.content-overlay > footer {
  margin-bottom: 2rem;
}

/* Gallery styling */
.gallery .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gallery .images img {
  width: 450px !important;
  height: 350px !important;
  object-fit: contain !important;
  border-radius: 0;
  box-shadow: none;
}

/* Contact form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

input, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
}

button {
  padding: 0.75rem;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #666;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-details {
  flex: 1;
  min-width: 250px;
  font-size: 1.1rem;
}

.contact form {
  flex: 1;
  min-width: 250px;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline; /* Optional hover effect */
}

/* Footer styling */
footer {
  text-align: center;
}

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

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

.instagram {
  text-align: center;
  margin-top: 2rem;
}

.instagram h2 {
  margin-bottom: 1rem;
}

.insta-preview img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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