/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1; /* Pushes the footer to the bottom */
}

/* General styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6em;
    font-size: 25px;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    background-position: top left;
    background-size: 3000px;
    background-attachment: scroll;
    background-repeat: repeat;
    background-image:url(lumitar-A4FJfFBEKts-unsplash.jpg);
    color: #33262f;
    line-height: 1.6;
     font-size: 1.1rem;
  padding: 1rem;
}

.header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center; 
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: underline;
}

.logo {
  height: auto;
  max-height: 150px;
  width: auto;
  max-width: 90%;
  margin-bottom: 1rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.nav a {
  color: #263333;
  text-decoration: none;
  padding: 0.5rem 1rem;
  
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.36);
}

/* Hero Section */
.hero {
  max-width: 700px;
  margin: 5rem auto;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
   font-size: 1.1rem;
  padding: 1rem;
  border-radius: 10px;
  background-color: #ddc2dba8;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
.reviews {
  text-align: center;
  padding: 3rem 1rem;
}

.review-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.review {
  display: none;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 10px;
  background-color: #ffffff92;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.review.active {
  display:block;
  animation: fadeIn 3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 2; }
}

/* Gallery Section */
.gallery {
  padding: 3rem 1rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-grid img {
  width: 90%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: #ff8aed25;
  color: #263333;
  text-align: center;
  padding: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero {
    margin: 2rem 1rem;
    padding: 1rem;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #ffffff;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #f0f0f0;
}

.photo {
  height: 200px;  /* Increase size */
  max-width: 90%;
  margin-bottom: 1rem;

}
@media (max-width: 400px) {
  .nav {
    flex-direction: column;
    align-items: center;
  }
}
iframe {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}