/****************************************
GLOBAL STYLES
****************************************/

html * {
  font-family: 'Lora', sans-serif;
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'sidelinesregular';
  src: url('../fonts/sidelines-webfont.woff2') format('woff2'),
    url('../fonts/sidelines-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

body {
  background-color: #ffffff;
  color: white;
}


h2 {
  font-size: 36px;
}

/****************************************
1. HEADER STYLES
****************************************/

header {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

@keyframes arrowBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.scroll-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 48.9%;
  transform: translateX(-48.9%);
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  animation: arrowBounce 1.5s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  /* Add a width to the arrow container */
  height: 40px;
  /* Add a height to the arrow container */
  z-index: 999;
  /* Ensure the arrow is on top of other elements */
}

.scroll-down-arrow i {
  display: block;
}

.scroll-down-arrow:hover {
  color: #FF8484;
}


/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
  header {
    background: url('../imgs/LakeHouse2.PNG') black no-repeat center center scroll;
  }

  header video {
    display: none;
  }
}



@media screen and (max-width: 801px) {
  .h1Logo {
    width: 500px;
    height: auto;
  }
}

@media screen and (max-width: 551px) {
  .h1Logo {
    width: 400px;
    height: auto;
  }

  .listings-section {
    margin-top: 120px !important;
  }
}

@media screen and (max-width: 581px) {
  .scroll-down-arrow {
    display: none;
  }

  header {
    height: 70vh;
  }

  .listings-section {
    margin-top: 120px !important;
  }
}

@media screen and (max-width: 451px) {
  .h1Logo {
    width: 300px;
    height: auto;
  }
}

@media screen and (max-width: 391px) {

  .listings-section {
    margin-top: 120px !important;
  }
}


/****************************************
2. NAV STYLES
****************************************/
#navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

nav {
  font-size: 13.5px;
}

.nav-separator {
  border: none;
  height: 10px;
  background-color: #222222;
  margin: 0;
}

hr:not([size]) {
  margin-top: 10px;
  height: 2px;
}

.navbar-toggler-icon {
  color: white;
}

.navbar-brand {
  width: 80px;
  height: auto;
}

.nav-link {
  color: white;
  text-transform: uppercase;
  font-family: 'Lora', serif;
}

.navbar-nav .nav-link:hover {
  color: #FF8484;
}

.btn {
  font-size: 13.5px;
}

.contact-btn {
  background-color: white;
  color: #222222;
}

.contact-btn a {
  color: #222222;
}

.contact-btn .nav_button:hover {
  color: white;
}

.contact-btn:hover,
.contact-btn:active {
  background-color: #FF8484;
  color: white;
}

@media (max-width: 991.98px) {
  .contact-btn {
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .contact-btn a {
    color: white;
    text-decoration: none;
  }

  .contact-btn:hover,
  .contact-btn:active {
    background-color: transparent;
    color: #FF8484;
  }

  .contact-btn .nav_button:hover {
    color: #FF8484;
  }
}

.nav-separator {
  border: none;
  height: 10px;
  background-color: #222222;
  margin: 0;
}


/****************************************
3. HEADING STYLES
****************************************/

/****************************************
4. BODY STYLES
****************************************/

.listings-section {
  padding: 40px 0;
  margin-top: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  text-align: center;
  color: #222222;
  font-family: 'Lora', serif;
  font-weight: bold;
  letter-spacing: 0.25em;
  font-size: 24px;
}

.section-description {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #666666;
  font-family: 'Lora', serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 182%;
  /* Set the line height to 182% */
  max-width: 854px;
  /* Set the maximum width to 854px */
  margin-left: auto;
  /* Center the element using auto margins */
  margin-right: auto;
  /* Center the element using auto margins */
}

.section-title,
.section-description {
  opacity: 0;
  transition: opacity .8s ease;
}

.fade-in {
  opacity: 1;
}

.listing-item {
  position: relative;
  text-decoration: none;
  color: inherit;
  text-align: center;
  color: #000000;
  margin-top: 50px;
}

.listing-item img {
  width: 100%;
  max-width: 250px;
  height: 250px;
  /* makes all images a square instead of being auto */
  object-fit: cover;
  border-radius: 10px;
}

.listing-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  color: #222222;
  font-family: 'Lora', serif;
  letter-spacing: 0.15em;
}

.listing-description {
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
  color: #666666;
  letter-spacing: 0.15em;
}

.listing-link {
  color: #222222;
  margin-top: 10px;
  font-family: 'Lora', serif;
  letter-spacing: 0.15em;

}

.listing-title,
.listing-description,
.listing-link {
  margin-left: 10px;
}

.rental-blurb-section {
  background-color: rgba(103, 103, 103, 0.04);
  text-align: center;
  color: #222222;
  padding: 30px; /* Optional: Add padding to the section */
  margin-bottom: 350px;
}

.rental-heading{
  margin-bottom: 50px;
}

.rental-blurb-container {
  max-width: 600px; /* Adjust the container width as needed */
  margin: 0 auto; /* Center the container horizontally */
  text-align: center; /* Center the blurb content */
}

.rental-blurb-container h3 {
  font-family: 'Lora', serif;
  font-size: 24px; /* Optional: Adjust the heading font size */
}

.rental-paragraph{
  color: #666666;
  font-family: 'Lora', serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 182%;
}

.inquire-btn {
  margin-top: 20px; /* Optional: Add some space below the blurb */
}



.price-bold {
  font-family: 'Lora', serif;
  font-weight: bold;
}

.gallery {
  margin-bottom: 270px;
}

.about-section {
  background-color: rgba(103, 103, 103, 0.04);
  padding: 40px 0;
  /*margin-bottom: 80px;*/
}



.about-image {
  position: relative;
  margin-top: -100px;
  /* Adjust the value to position the image */
}

.about-image img {
  display: block;
  margin: 0 auto;
  width: 125px;
  /* Adjust the width as desired */
  height: auto;
  padding-bottom: 50px;
}

.about-content {
  width: 100%;
  margin-top: 20px;
  /* Add some space between the image and the text */
}

.about-description {
  font-size: 16px;
  line-height: 280%;
  color: #222222;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  font-family: 'Lora', serif;
  margin-bottom: 50px;
}

.night {
  font-family: 'Lora', serif;
  font-weight: lighter;
  color: #666666;
}


.rrlogo {
  padding-top: 50px;
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.anchor {
  position: absolute;
  transform: translateY(-15vh);
}

.fade-in {
  opacity: 0;
  animation: fade-in 1s ease-in forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/****************************************
5. FOOTER STYLES
****************************************/
.footer {
  font-size: 12px;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-phone{
  font-family: 'lora', serif;
  text-decoration: none;
  color: white;
}

.footer-phone:hover{
  color: #FF8484;
}

.footer-ai {
  text-decoration: none;
  color: #FF8484;
}

.footer-ai:hover {
  color: #e07171;
}

.btn:hover {
  color: #FF8484;
}

.footer-Aplogo {
  max-width: 18px;
  /* Adjust the size of the logo as needed */
  padding-bottom: 0px;
  margin-bottom: 3px;
}


/****************************************
CONTACT SECTION
****************************************/