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

body {
  font-family: 'Lora', serif;
  color: #333;
  background-color: #f7f7f7;
  line-height: 1.6;
}

header {
  background-color: #274e13;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;

  
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  padding: 8px 12px;
  transition: color 0.5s;
}


header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  padding: 8px 12px;
  transition: color 0.5s;
}



header nav ul li a:hover {
  color: #4CAF50;
}

main {
  margin-top: 80px;
  padding: 20px;

}

.hero {
  background-image: url('images/Hawaii.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.cta {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #3a8d40;
}

/* Highlights Section */
.highlights {
  margin: 40px 0;
  text-align: center;
}

.highlights h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: #4CAF50;
}

.highlight-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-item {
  background: #e8f5e9;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  text-align: left;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.highlight-item h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: #274e13;

}

.highlight-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.highlight-item2 {

  background: #e8f5e9;
  border-radius: 8px;
  padding: 20px;
  width: 650px;
  text-align: left;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.highlight-item2 img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;



}


.contact-form-section {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.contact-form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  color: #4CAF50;
  margin-bottom: 5px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border 0.3s;
}

input:focus, textarea:focus {
  border-color: #4CAF50;
}

textarea {
  resize: vertical;
}

button.cta {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button.cta:hover {
  background-color: #3a8d40;
}

/* Contact Information */
.contact-info {
  text-align: center;
  margin-top: 40px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #4CAF50;
}

.contact-info ul {
  list-style-type: none;
  margin-top: 20px;
}

.contact-info li {
  font-size: 1.2rem;
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .highlight-items {
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}
