/* Blue: 03cce6 */ 
/* Green: 7ee700 */

:root{
  --brand-green: #7ee700;
  --brand-blue: #03cce6;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.homeBody {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homeBody img.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.homeBody-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  background: rgba(30, 144, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto auto;
}

.homeBody::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.homeBody-content h2{
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 0 25px 0; 
}

.homeBody-content p {
  font-size: 1.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  .homeBody-content h1 {
    font-size: 2.8rem;
  }
  .homeBody-content p {
    font-size: 1.2rem;
  }
}

.homeBody-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.homeBody-buttons .button {
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

#contact-button {
  background-color: black;
  color: white;
  border: 2px solid black;
}

#contact-button:hover {
  background-color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

#book-button {
  background-color: #28a745;
  color: white;
  border: 2px solid #28a745;
}

#book-button:hover {
  background-color: #7ee700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}





