* {
  max-width: 100%;
  box-sizing: border-box;
}

@font-face {
  font-family: "LoraReg";
  src: url("assets/Fonts/Lora-Regular.woff2") format("woff2"),
       url("assets/Fonts/Lora-Regular.woff") format("woff");

    font-weight: normal;
    font-style: normal;
  
}

@font-face {
  font-family: "NataSans";
  src: url("assets/Fonts/NataSans-Regular.woff2") format("woff2"),
       url("assets/Fonts/NataSans-Regular.woff") format("woff");

    font-weight: normal;
    font-style: normal;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 600px) {

  body {
    padding: 0 10px;
    overflow-x: hidden;
  }
  /* ----- HEADER (logo + title) ----- */
  .imageflex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .imageflex img {
    max-width: 40%;
  }

  .imageflex h1 {
    font-size: 22px;
    padding: 0;
  }

  /* ----- BOOKING BUTTON ----- */
  .bookingbutton {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 14px;
    z-index: 999;
  }

  /* ----- GENERAL IMAGES ----- */
  img {
    width: 100%;
    height: auto;
  }

  /* ----- INFO SECTION (img + text) ----- */
  .info {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
    padding: 0 10px;
    gap: 15px;
  }

  .info img {
    width: 100%;
    border-radius: 10px;
  }

  .info .text {
    width: 100%;
    padding: 0;
    font-size: 110%;
  }

  .info h1 {
    text-align: center;
  }

  /* ----- TWO SIDE-BY-SIDE IMAGES ----- */
  .images2 {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    display: none;
  }

  .images2 img {
    width: 100%;
    height: auto;
    display: none;
  }

  .imgCor {
    height: auto;
  }

  /* ----- ACCORDION ----- */
  .accordion h4 {
    padding-top: 0;
    font-size: 16px;
  }

  .accordion:after {
    font-size: 30px;
  }

  .panel {
    padding: 0 10px;
    font-size: 16px;
  }

  /* ----- FOOTER ----- */
  .logoFoot {
    width: 150px;
    margin: 0 auto;
    float: none;
    display: block;
  }

  .contactFoot {
    float: none;
    text-align: center;
    padding: 20px 0 0 0;
    font-size: 110%;
  }

  /* ----- FINAL BOOKING BUTTON ----- */
  .buttonend {
    margin-left: 0;
    display: flex;
    justify-content: center;
  }

  .bookingbuttonend {
    width: 80%;
    font-size: 22px;
  }

  /* ----- BOOKING FORM ----- */
  .book {
    padding: 20px 10px;
  }

  .bookform input,
  .bookform textarea {
    width: 100%;
    font-size: 16px;
  }
}




@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

.bookingbutton{
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #004876;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  
}

.bookingbutton:hover {
  background-color: #00334a;
}


.welcomehr{
  
  height: 2px;
  background-color: lightslategray;
  border: none;
  
}

body{
    font-family: "NataSans",sans-serif;
}

.imageflex { 
  display: flex; 
  align-items: center;
}

.logo { 
  margin-left: 5%; 
  margin-top: 0; 
  width: 200px;
    height: auto;
    transition: 0.5s;
}
.logo:hover {
    transform: scale(1.05);
}

.title{
    text-align: center;
    padding-left: 15%;
    font-family: "NataSans",sans-serif;
    transition: 0.5s;
}
.title:hover {
    transform: scale(1.05);
}

h1{
    text-align: center;
    font-family: "NataSans",sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: #004876;
    transition: 0.5s;
}

h1:hover {
    color: #00334a;
}

p{
  transition: 0.5s;
}
p:hover {
  color: #00334a;
}




.info {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.info .text {
  flex: 1; 
 
}

.text{
    width: 50.83333%;
    font-size: 120%;
    padding-left: 10px;
}

.info h1 {
  margin-bottom: 15px;
  text-align: left;

}

.info img {
  width: 45.883%;
  max-width: 100%;
  margin-left: 0;
  border-radius: 10px; 
  object-fit: cover;

}

.images-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.images-col img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width:768px) {
  .info{
    flex-direction: column;
    text-align: center;
  }

  .info img {
    width: 100%;
  }
}



.images2 {
  display: flex;
  justify-content: center; /* centers them horizontally */
  align-items: flex-start;
  gap: 20px; /* spacing between images */
  max-width: 1100px;
  margin: 20px auto; /* centers the block just like .info */
}

.images2 img {
  width: 50%;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.imgCor{
  height: 414px;
}

.accordion {
  background-color: #ffffff;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.accordion h4{
  font-weight: bold;
  float: left;
  padding-top: 25px;
}

.accordion:after {
  content: '+'; 
  font-size: 50px;
  color: #000000;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "-"; 
}

.accordion:hover {
  opacity: 0.7;
  background-color: #004876;
  color: white;
}
.active {
  background-color: #004876;
  color: white;
}


.discover{
  text-align: left;
  font-family: "NataSans", sans-serif;
  margin-top: 20px; 
}


.panel {
  font-size: large;
  padding: 0 18px;
  background-color: white;
  max-height: 0;               /* start closed */
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.logoFoot {
  width: 200px;
  height: auto;
  float: left;
  display: flex;
  justify-content: left;
  padding-top: 20px;
  transition: 0.3s;
}
.logoFoot:hover {
  transform: scale(1.05);
}


.contactFoot{
  float: right;
  text-align: center;
  font-family: "NataSans", sans-serif;
  padding-top: 20px;
  padding-right: 3%;
  font-weight: bold;
  font-size: 120%;
}

.bookingbuttonend{
  background-color: #004876;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 40px;
  transition: 0.3s;
  }

.bookingbuttonend:hover {
  background-color: #00334a;
  transition: 0.3s;
}

.buttonend{
  
  margin-top: 20px;
  margin-left: 45%;
}

/* Booking Form Styles */

.book{
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 1%;
  padding-bottom: 1%;
}

.book::before {
  content: "";
  position: absolute;
  inset: 0; /* fills the container */
  background-image: url("assets/images/Sunset.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  filter: blur(5px); /* <-- blur amount */
  transform: scale(1.1); /* prevents blur from showing edges */
  z-index: -1; /* puts blur behind your content */
}

.bookinghr{

  height: 1.5px;
  border: none;
  
}

.bookform{
  
  font-family: "NataSans", sans-serif;
}

input[type=text] {
  padding: 5px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #00334a;
}

input[type=number] {

  padding: 5px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #00334a;
}

input[type=date] {

  padding: 5px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #00334a;
}
input[type=message] {

  padding: 5px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #00334a;
}

input[type=submit] {

  top: 20px;
  right: 20px;
  background-color: #004876;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  

}

input[type=submit]:hover {
  background-color: #00334a;
}

textarea{
  padding: 5px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #00334a;
}

