@charset "UTF-8";
/* CSS Document */



@font-face {
  font-family: HN;
  src: url('HelveticaNeue.ttf'),
       url('HelveticaNeue.eot'); /* IE9+ */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  /* width: 100%;*/
  font-size: 21px;
  font-family: "Helvetica Neue", Helvetica, Arial;
  line-height: 140%;
  color: #eee;
  background-color: #112244;
  /*   BGO darg green background-color: #0a410f;*/
}

/* Background image */
.bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/1050wp-hero.webp");
  opacity: 0.1;
  z-index: -1;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}



/* Wrapper styles */
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: top; /* vertical center */
  align-items: flex-start; /* left align */
  height: 100%;
  padding-left: 200px;
  box-sizing: border-box;
  max-width: 1200px;
}



/* Headings */
h1 {
  font-size: 120px;
  font-weight: 500;
  letter-spacing: -4px;
  line-height: 100%;
  padding: 10px 50px 50px 0;
  margin: 0;
}

h1.hero {
  font-size: 200px;
  font-weight: 600;
  letter-spacing: -6px;
  padding: 150px 50px 0 0;
  margin: 0 0 0 -10px;
}

h3 {
  margin: 1.5em 0 0.5em;
  padding-left: 0;
}




/* Paragraphs and links */
p {
  margin: 0 0 2em 0;
  padding-left: 0;
}


a {
  display: inline-block;
  padding: 10px 12px 12px 20px;
  color: white;
  background-color: #116611;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid #234;
  border-radius: 6px;
  transition: all 0.3s ease;
}

a::after {
  content: " →";
  padding-left: 8px;
  font-size: 1.2em;
}

a:hover, a:focus {
  color: white;
  background-color: #007700;
  border-color: #007700;
  text-decoration: none;
}

a:hover::after, a:focus::after {
  color: white;
}






/* List styles (no bullets) */

ul {
  /*list-style: none;*/
  padding-left: 14px;
  margin: 0;
}

ul li {
  padding-left: 0;
  margin-bottom: 0.5em;
}





/* Amenities section */

.amenities {

  padding: 30px 0;

}






/* Image gallery section */
.image-gallery {
  /*background-color: #223366;*/

  padding: 40px 20px 40px 10px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 40px;
}

/* Rows with exact fixed width */
.image-row.fixed-width {
  display: flex;
  gap: 40px;
  width: 1400px;
  justify-content: center;
}

/* Image styles (vertical and horizontal) */
.image-row img {
  width: 440px;
/*  height: auto;*/
  object-fit: cover;
}

.image-row img.wide {
  width: 680px;
}







/* Footer area */
.footer {
  color: #ffffff;
  padding: 40px 0 0 0;
  font-size: 15px;
}








/* Mobile styles */
@media (max-width: 1120px) {
  .wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 20px 60px;
  }

  h1.hero {
    font-size: 120px;
    letter-spacing: -4px;
    padding: 0 0 20px 0;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -2px;
    padding: 0 0 40px 0;
  }

  p {
    padding-left: 0;
  }


 .image-row {
    flex-direction: column;
    align-items: left;
  }

  
 .image-row img {
    width: 80%;
    max-width: 600px;
  }
}





/* Mobile styles */
@media (max-width: 768px) {
  .wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 20px 60px;
  }

  h1.hero {
    font-size: 120px;
    letter-spacing: -4px;
    padding: 0 0 20px 0;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -2px;
    padding: 0 0 40px 0;
  }

  p {
    padding-left: 0;
  }


 .image-row {
    flex-direction: column;
    align-items: left;
  }

  
 .image-row img {
    width: 80%;
    max-width: 300px;
  }
}





