/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* Header Image */
.header-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Introduction Section */
.intro {
    text-align: center;
    padding: 2rem 20%; /* 2rem padding on top and bottom, 20% on left and right */
    padding-bottom: 0; /* Remove bottom padding */
    background-color: white;
}

@media (max-width: 768px) {
    .intro {
        padding: 1rem 10%; /* 1rem padding on top and bottom, 10% on left and right for mobile */
    }
    .intro h1 {
        font-size: 2.2rem; /* Adjusted for smaller screens */
        line-height: 1.3; /* Adjusted line height for better readability */
    }
}

/* Paragraph Spacing Style */
p {
    margin-bottom: 1.5rem; /* Adjust the value to your desired spacing */
}


.intro h1 {
    font-weight: 700;
    font-size: 2.9rem;
    margin-bottom: .75rem;
}

.intro h2 {
    font-weight: 400;
    font-size: 1.65rem;
    margin-bottom: 2rem;

}

.intro p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.intro a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

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





/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    padding-bottom: 0; /* Remove bottom padding */
    padding-top: 0; /* Remove top padding */
    margin-top: 0; /* Remove top margin */
}

.gallery img {
    width: 100%;
    height: auto;
}


/* Contact Form Styling */
/* Ensure the form maintains consistent styling */
#contact-form {
  max-width: 600px;
  margin: 0 auto;

}

.contact-form-row {
    display: flex;
    justify-content: center;
    padding: 2rem 20%;
    background-color: rgb(183, 167, 117);
    margin-bottom: 0; /* Remove bottom margin */
}


.contact-form h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;

}


/* Style for input field grouping */
.form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

/* First and last name fields */
.form-group .half-width {
  width: 48%;
}

/* Full-width fields */
.email-field, .message-field {
  width: 100%;
  margin-bottom: 15px;
}

/* Input and textarea styling */
#contact-form input, 
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Required field indicator */
label.required::after {
  content: '*';
  color: red;
  margin-left: 4px;
}

/* Submit button styling */
#contact-form .submit-btn {
  display: block;
  width: 120px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  background-color: #22632c; /* Adjust as needed */
  color: #fff;
}

/* === Mobile Responsive Styles === */
@media (max-width: 768px) {
  .form-group {
      flex-direction: column; /* Stack form fields on smaller screens */
  }

  .form-group .half-width {
      width: 100%; /* Full width for better mobile experience */
  }
}









/* Newsletter Section */
.newsletter {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem 20%;
    background-color: #f4f4f4;
    border-radius: 8px;
    margin-bottom: 0; /* Remove bottom margin */
}

.newsletter h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.newsletter button {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    background-color: #22632c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: gray;
}


/* Responsive Styling */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Footer Styling */
footer {
    text-align: center;
    color: white;
    background-color: #195387;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 0; /* Remove top margin from the footer */
}
 