/* UNIVERSAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* This presets the font, font fize, and color of the font. */
body {
  .permanent-marker-regular {
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    font-style: normal;
    color: #003B31;
  font-size: 16px;
  }
  
  
}
/* ------------------------------HEADER------------------------------------- */
/* This is the navigation bar */
nav {
  display: flex;
  gap: 50px;
  align-items:flex-start;
  justify-content: space-between;
  width: 100%;
}
.nav{
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}

.nav-links{
  display: flex;
  gap: 30px;
  margin-top: 10px;;
}

/* Navigation links */
nav a:link {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

nav a:hover{
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.2);
}

/* Visited links. Keeps them looking the same even after visiting the page. */
nav a:visited {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  
}

/* THIS FORMATS THE DROPDOWN MENU */
.dropdown-content a {
  color: #ddd;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* THIS IS THE HIGHLIGHT COLOR WHEN HOVERING OVER A DROPDOWN LINK */
.dropdown-content a:hover {
  background-color: #003B31;
}

/* THIS IS WHAT MAKES THE DROPDOWN MENU APPEAR */
.dropdown:hover .dropdown-content {
  display: block;
}

/* SETS POSITIONING OF DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dropdown:hover{
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.2);
}

/* FORMATS THE DROPDOWN MENU AND ITS STYLE */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #3e555b;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.227), rgba(0, 0, 0, 0.2)),
  url(img/Index-header.jpg);
  background-repeat:repeat-y;
  height: 40vw;
  width: 100%;
  background-position-y:950vw;
  background-size: 100%;
  /* display: flex; */
  align-content: baseline;
  justify-content:space-between;
  /* justify-content: */
  padding: 5px 50px;
  align-items: flex-start;
}

.header-logo {
  width: 8vw;
  height: auto;
  margin-top: 10px;
}
/* "RESERVE NOW" BUTTON ON THE BANNER */
.cta-button-container {
  width: auto;
  display: flex;
  justify-content: center;
  /* background-color: #03c03c; */
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
  color: #333333;
  text-transform: uppercase;
  font-weight: 700;
  /* border: #333333 solid 2px; */
  
  /* border: #03c03c solid 3px; */
}

.cta-button{
  border: #ddd solid 3px;
  padding: 10px;
  border-radius: 10px;
  color: #ddd;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

}

/* CAUSES THE RESERVE NOW BUTTON TO GROW WHEN HOVERING */
.cta-button:hover {
  /* font-size: 18px; */
  color: #ddd;
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.2);
}

.cta-button a{
  color: white;
  text-decoration: none;
}

.title-container{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.title-text{
  color: white;
  text-transform: uppercase;
  font-size: 3vw;

}

.subtitle-container{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.subtitle-text{
  color: white;
  /* text-transform: uppercase; */
  font-size: 3vw;

}

/* ------------------------------------END HEADER-------------------------------------- */

/* --------------------------------------START BODY---------------------------------------- */


/* -----------------------------INTRODUCTION SECTION OF PAGE---------------------------------------- */
.introduction {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 100px;
  gap: 50px;
}

.introduction-text {
  width: 100%;
  height: 100%;
  
}

.intro-text{
  font-size: .9vw;
}

.introduction-image {
  width: 30vw;
  height: auto;
  border: #003B31 solid 3px;
}

.intro-text1 {
  margin-bottom: 10px;
}
.intro-text2 {
  margin-bottom: 10px;
}

.introduction h2 {
  margin-bottom: 10px;
}

.stamp-container{
  display: flex;
  width: 10vw;
  justify-content: center;
  padding-right: 50px;
  gap: 10px;
  align-content: center;
}

/* THIS IS THE RV LIFE TOP RATED LOGO */
.top-rated{
  width: 6vw;
  height: fit-content;
  align-self: center;
}

/* THIS IS THE CAMPERS CHOICE LOGO */
.campers-choice{
  width: 8vw;
  height: fit-content;
  }


/* -----------------------------AMENITIES SECTION OF PAGE -------------------------------*/
.amenities {
  display: grid;
  /* CREATES 3 COLUMNS OF EQUAL SIZE */
  grid-template-columns: repeat(3, 1fr);
  /* CREATES 2 ROWS */
  grid-template-rows: 20px 1fr;
  justify-content: center;
  padding: 100px 50px;
  /* Adds gap between the rows */
  gap: 50px;
  /* MAKES BACKGROUND IMAGE AND GRADIENT DARKENS IT */
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)),
    url(img/river-winter.jpg);
  background-position: center;
  border-top: #003B31 solid 5px;
  border-bottom: #003B31 solid 5px;
  margin-bottom: 50px;
  /* CREATES THE SCROLLING EFFECT */
  background-attachment: fixed;
}
/* THIS CENTERS THE H2 ELEMENT */
.amenities-title {
  grid-column: 1 / -1;
  grid-row: 1 / 1;
  color: white;
  justify-self: center;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* THIS POSITIONS THE FIRST LIST */
.list1 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  justify-self: center;
  align-self: center;
}
/* THIS POSITIONS THE SECOND LIST */
.list2 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-self: center;
  align-self: center;
}
/* THIS POSITIONS THE THIRD LIST */
.list3 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  justify-self: center;
  align-self: center;
}
/* THIS IS THE SASQUATCH BULLET POINTS */
.amenities-list {
  display: inline-block;
  color: white;
  list-style-image: url(img/sasquatch-silhouette-vector-2.png);
  /* PADDING IS USED TO JUSTIFY BECAUSE OF THE BULLET POINTS */
  padding-left: 75px;
  text-transform: uppercase;
}

/* ADD SPACE BETWEEN LIST ITEMS */
.amenities-list li {
  padding-bottom: 25px;
}

/* DON"T NEED SPACE ON THE LAST LIST ITEM */
.amenities-list li:last-child {
  padding-bottom: 0;
}

/* -------------------------TAKE A LOOK AROUND SECTION------------------------------ */
.look-around-container {
  display: grid;
  /* CREATES 3 COLUMS OF EQUAL WIDTH THAT TAKE UP THE WIDTH OF THE PAGE */
  grid-template-columns: 15vw 15vw 15vw;
  /* CREATES 3 ROWS OF EQUAL WIDTH THAT TAKE UP THE WIDTH OF THE PAGE */
  grid-template-rows: .1vw 1fr 1fr 1fr;
  /* SETS THE WIDTH OF THE CONTAINER */
  width: 99vw;
  height: 100%;
  /* padding: 250px; */
  padding-top: 0;
  padding-bottom: 0;
  row-gap: 5em;
  column-gap: 3vw;
  margin-bottom: 50px;
  justify-content: center;
}
/* THIS IS THE CODE THAT MAKE THE SMOOTH TRANSITION WHEN YOU HOVER OVER THE IMAGES */
.look-around-container img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: #003B31 solid 3px;
  object-fit: cover;
  width: 10vw;
  height: 10vw;
}
/* THIS IS THE CODE THAT MAKES THE IMAGES LARGER WHEN YOU HOVER OVER THEM */
.look-around-container img:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.25);
}
/* SETS THE SIZE OF EACH CELL. EQUAL TO IMAGE SIZE STATED IN INDEX.HTML */
.cell {
  width: 10vw;
  height: 10vw;
  justify-self: center;
}

/* THIS IS THE H2 OF THE LOOK AROUND SECTION */
.look-around-title {
  grid-column: 1/-1;
  justify-self: center;
  text-transform: uppercase;
  height: fit-content;
  letter-spacing: 1px;
  font-size: 1vw;
}

/* END BODY */

/* --------------------------PRE-FOOTER SECTION--------------------------- */
.pre-footer-container {
  display: grid;
  background-color:#003B31;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  justify-items: center;
  row-gap: 10px;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 20px;
  color: white;
}

.pf-cell {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1vw;
}

.pf-cell img{
  width: 4vw;
  height: auto;
}

/* START FOOTER */
.footer {
  display: flex;
  justify-content: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer p {
  display: inline-block;
  font-size: 1vw;
}
/* END FOOTER */

/* ------------------------------------------------CONTACT US PAGE--------------------------------------------- */


/* TEXT IN THE BANNER */
.contact-us-text {
  color: #3e555b;
  text-transform: uppercase;
  background-color: #03c03c;
  padding: 25px 50px;
  font-weight: 700;
}

/* THIS IS THE BANNER AT THE TOP OF THE PAGE */
.header-subpage-contact{
  /* display: flex; */
  background-image: url(img/train-track-dam.jpg);
  height: 20vw;
  width: 100%;
  background-position-y: 40vw;
  background-position-x: 0px;
  background-repeat: repeat-y;
  background-size: 100%;
  margin-bottom: 2vw;
}

/* THIS IS THE TEXT AT THE TOP OF THE BODY */
.contact-header {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1vw;
}

/* THIS IS THE CONTAINER THAT HOLDS THE MAP AND TEXT */
.map-section {
  display: flex;
  padding: 3vw 3vw;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}

/* THIS IS THE MAP */
.map-placeholder {
  width: 24vw;
  height: 34;
  border: #003B31 solid 3px;
}

/* TEXT TO THE RIGHT OF THE MAP */
.contact-text {
  color: #3e555b;
  padding-bottom:2vw;
  font-size: 1.2vw;
}
.contact-text:last-child {
  padding-bottom: 0;
}

/* -------------------------------------------------ABOUT US PAGE--------------------------------------------------- */
/* BANNER AT THE TOP OF THE PAGE */
.header-subpage-about{
  /* display: flex; */
  background-image: url(img/Ione-view.jfif);
  height: 20vw;
  width: 100%;
  background-position-y: 50vw;
  background-position-x: 0px;
  background-repeat: repeat-y;
  background-size: 100%;
}

/* CONTAINER THAT HOLDS IMAGE AND TEXT */
.meet-owners-section {
  display: flex;
  padding: 50px 50px;
  justify-content: center;
  align-items: center;
  gap: 5vw;
  font-size: .9vw;
}

/* ADDS SPACE TO THE BOTTOM ON PARAGRAPHS */
.meet-owners-section p{
  margin-bottom: 5px;
}

.about-header{
  margin-bottom: 10px;
}

.dan-mere-photo {
  width: 20vw;
  height: 20vw;
  border: #003B31 solid 3px;
}

.meet-owners-text {
  width: 800px;
}

/* ---------------------------------------------------------ACTIVITIES PAGE------------------------------------------------------- */
/* This is the banner at the top of the page */
.header-subpage-activities{
  /* display: flex; */
  background-image: url(img/activities-banner.jpg);
  height: 20vw;
  width: 100%;
  background-position-y: 50vw;
  background-position-x: 0px;
  background-repeat: repeat-y;
  background-size: 100%;
  margin-bottom: 2vw;
}

.activities-text {
  color: #3e555b;
  text-transform: uppercase;
  background-color: #03c03c;
  padding: 25px 50px;
  font-weight: 700;
}


/* -----------------------------FISHING SECTION--------------------------*/
/* This is the container that contains both the fishing and "need some gear" boxes */
.fishing-large-section{
  display: flex;
  gap: 2vw;
  justify-content: center;
}
.fishing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-right: 0px;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content
}

.fishing-img {
  width: 15vw;
  height: 15vw;
}

.fishing-text {
  width: 40vw;
}

.fishing-list {
  padding-left: 25px;
}

.fishing-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-right: 0;
}

.fishing-paragraph {
  padding-bottom: 10px;
}

.fishing-locations {
  padding-bottom: 10px;
}

/* This is the "Need Some Gear" box */
.fishing-gear{
border: #003B31 solid 3px;
/* margin-left: 130px; */
width: 18vw;
height:fit-content;
background-color: #ddd;
font-size: .8vw;
padding-bottom: 1.5vw;
}

.gear-text{
  text-align: center;
  margin-bottom: 10px;
}

.gear-header{
  text-transform: uppercase;
  /* The following 3 lines allow the text to be justified within the container */
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
  margin-top: 25px;
}


.fishing-gear-image{
  width: 15vw;
  height: 11.3vw;
  /* The following three lines allow image to be justified in the container */
  margin-right: auto;
  margin-left: auto;
  display: block;
}

/* -------------------------------------HUNTING SECTION---------------------------------------- */
.hunting {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}
.hunting-img {
  width: 15vw;
  height: 15vw;
}

.hunting-text {
  width: 50vw;
}

.hunting-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-right: 0;
}

/* ----------------------------- HIKING & SNOWSHOING SECTION---------------------------- */

.hiking {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content;
}

.hiking-img {
  width: 15vw;
  height: 15vw;
}

.hiking-text {
  width: 50vw;
}

.hiking-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  width: 100%;
  margin-right: 0;
}

.hiking-paragraph {
  padding-bottom: 10px;
}

/* --------------------- SCENIC VIEWS SECTION ---------------------------- */

.scenic {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content;
}
.scenic-img {
  width: 15vw;
  height: 15vw;
}

.scenic-text {
  width: 50vw;
}

.scenic-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-right: 0;
}

/* ------------------------TOWNING AROUND SECTION-------------------------- */

.towning {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content;
}

.towning-img {
  width: 15vw;
  height: 15vw;
}

.towning-text {
  width: 50vw;
}

.towning-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  width: 100%;
  margin-right: 0;
}

.towning-paragraph {
  padding-bottom: 10px;
}

/* ---------------------------SKIING SECTION---------------------------- */
.skiing {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content;
}
.skiing-img {
  width: 15vw;
  height: 15vw;
}

.skiing-text {
  width: 50vw;
}

.skiing-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-right: 0;
}
/* -------------------------------CASINO SECTION------------------------------ */
.casino {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content;
  
}

.casino-img {
  width: 15vw;
  height: 15vw;
}

.casino-text {
  width: 50vw;
}

.casino-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  width: 100%;
  margin-right: 0;
}

.casino-paragraph {
  padding-bottom: 10px;
}
/* ---------------------------Sasquatch SECTION---------------------------- */
.squatching {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content;
}
.squatching-img {
  width: 15vw;
  height: 15vw;
}

.squatching-text {
  width: 50vw;
}

.squatching-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-right: 0;
}
/* -------------------------------ATVRIDING SECTION------------------------------ */
.atvriding {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .8vw;
  height: fit-content;
  width: fit-content;
  
}

.atvriding-img {
  width: 15vw;
  height: 15vw;
}

.atvriding-text {
  width: 50vw;
}

.atvriding-header {
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-right: 0;
}

.atvriding-paragraph {
  padding-bottom: 10px;
}

/* --------------------------------------------------RENTALS PAGE------------------------------------------------------ */

/* This is the banner at the top of the page */
.header-subpage-rentals{
  /* display: flex; */
  background-image: linear-gradient(rgba(0, 0, 0, 0.227), rgba(0, 0, 0, 0.2)),
  url(img/Rentals_banner.jpg);
  height: 20vw;
  width: 100%;
  background-position-y: 50vw;
  background-position-x: 0px;
  background-size: 100%;
  margin-bottom: 50px;
}

.nav-sub{
  display: flex;
  align-content: flex-start;
  padding: 20px;
  padding-bottom: 0;
}

.nav-links-sub{
  display: flex;
  gap: 30px;
}

.subtitle-container-sub{
  display: flex;
  justify-content: center;
  align-content: center;
  /* margin-bottom: 20px; */
  text-transform: uppercase;
}

.subtitle-text-sub{
  color: white;
  font-size: 2.5vw;
  text-transform: uppercase;
  padding: 5px 10px;
}

/* This is the container that hosts all of the body content. Does not include the pre-footer and footer */
.rentals-container{
  /* Flex display allows the cabin and rental trailer boxes to be side by side */
  display: flex;
  gap: 50px;
  margin-right: 50px;
  margin-left: 50px;
  margin-bottom: 50px;
}

/* This is the container that hosts the cabin collage and information */
.cabin-rental-container{
  /* flex display allows the collage and text to be side by side */
  display: flex;
  border: #003B31 solid 3px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  background-color: #ddd;
}

/* Calls the photo collage */
.cabin-photo-collage{
  width: 70%;
  display: grid;
  /* Two columns of equal size */
  grid-template-columns: 1fr 1fr;
  /* Automatially creates rows depending on screen size */
  grid-auto-rows: 10vw;
  gap: 5px;
  padding: 25px;
}

.cabin-photo-collage img{
  /* Makes the image the size of the cell */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rentalcell{
  height: auto;
  width: auto;
}
/* Causes the first cell to span all the way across */
.cell1{
  grid-column: 1/-1;
}

/* Causes the last cell to span all the way across */
/* POSITION PHOTO AS BACKGROUND SO THAT I CAN CHANGE ITS POSITION */
.cell6{
  grid-column: 1/-1;
  background-image: url(img/cabin-patio.JPG);
  background-size: 100%;
  background-position-y: 0vw;
  background-repeat: no-repeat;
  /* position: relative; */
}

.cabin-rental-description{
  width: 70%;
  padding: 25px;
  font-size: .9vw;
}

/* Adds spacing underneath the h2 and h3 */
.cabin-rental-description h2, h3{
  margin-bottom: 3px;
}

/* Adds spacing underneath the paragraphs */
.cabin-rental-description p{
  margin-bottom: 10px;
}

/* Adds spacing to the bottom of the list and moves it to the right */
.cabin-rental-description ul{
  margin-bottom: 10px;
  padding-left: 25px;
}

/* This is the container that hosts the cabin collage and information */
.trailer-rental-container{
  /* Allows the collage and text to be side by side */
  display: flex;
  border: #003B31 solid 3px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  background-color: #ddd;
}

/* This calls the photo collage */
.trailer-photo-collage{
  width: 70%;
  display: grid;
  /* Two columns of equal size */
  grid-template-columns: 1fr 1fr;
  /* Automatially creates rows depending on screen size */
  grid-auto-rows: 10vw;
  gap: 5px;
  padding: 25px;
}

.trailer-photo-collage img{
  /* Makes the collage images the size of their cell */
  width: 100%;
  height: 100%;
  /* Fits the whole image into the cell */
  object-fit: cover;
}

.trailer-cell1{
  /* POSITION PHOTO AS BACKGROUND SO THAT I CAN CHANGE ITS POSITION */
  background-image: url(img/rental-trailer.JPG);
  background-size: 100%;
  background-position-y: -20px;
  grid-column: 1/-1;

}


/* Causes the last cell to span all the way across */
.trailer-cell6{
  grid-column: 1/-1;
  background-image: url(img/trailer-tv-bed.JPG);
  background-size: 100%;
  background-position-y: 0vw;
  background-repeat: no-repeat;
}

.trailer-rental-description{
  width: 70%;
  padding: 25px;
  font-size: .9vw;
}

/* Adds spacing underneath the h2 and h3 */
.trailer-rental-description h2, h3{
  margin-bottom: 3px;
}

/* Adds spacing underneath the paragraphs */
.trailer-rental-description p{
  margin-bottom: 10px;
}

/* Adds spacing to the bottom of the list and moves it to the right */
.trailer-rental-description ul{
  margin-bottom: 10px;
  padding-left: 25px;
}
/* -------------------------------------------------------- REVIEWS PAGE------------------------------------------------------------ */
/* This is the banner at the top of the page */
.header-subpage-reviews{
  /* display: flex; */
  background-image: url(img/reviews_banner.JPG);
  height: 20vw;
  width: 100%;
  background-position-y: 50vw;
  background-position-x: 0px;
  background-repeat: repeat-y;
  background-size: 100%;
  margin-bottom: 2vw;
}

.content-header{
  display: flex;
  justify-content: center;
  font-size: 1vw;
}

.content-header h2{
  text-transform: uppercase;
  margin-bottom: 2vw;
}

.reviews-row1{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.reviews-row1 img{
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: #03c03c solid 3px;
  object-fit: cover;
  width: 17vw;
  height: 17vw;
}

.reviews-row1 img:hover{
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.5);
}

.review{
  width:350px;
  border: #03c03c solid 3px;
}

.external-reviews{
  display: flex;
  justify-content: center;
  font-size: 1vw;
}

.external-reviews h3{
  text-transform: uppercase;
  margin-bottom: 20px;
}

.review-logos{
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-bottom: 30px;;
}

.review-logos img{
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.review-logos img:hover{
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.15);
}

.review-logo{
  width: 5vw;
}

/* -------------------------------------------------------- STORE PAGE-------------------------------------------------------------- */

.header-subpage-store{
  /* display: flex; */
  background-image: linear-gradient(rgba(0, 0, 0, 0.227), rgba(0, 0, 0, 0.2)),
  url(img/store-front-1.jpg);
  height: 20vw;
  width: 100%;
  background-position-y: 70vw;
  background-position-x: 0px;
  background-repeat: repeat-y;
  background-size: 100%;
  margin-bottom: 30px;
}

.summer-hours-container{
  width: auto;
  display: flex;
  justify-content: center;
}

.summer-hours-container h3{
  text-transform: uppercase;
  font-size: 1.1vw;
}
.winter-hours-container{
  display: flex;
  justify-content: center;
  width: auto;
  margin-bottom: 1vw;
}

.winter-hours-container h3{
  text-transform: uppercase;
  font-size: 1.1vw;
}

.photos-row1{
  display: flex;
  justify-content: center;
  justify-items: center;
  gap: 8vw;

}

.store-sign{
  width: 29vw;
  height: fit-content;
  padding-bottom: 5px;
  justify-self: right;
  border: #003B31 solid 3px;
}

.fishing-gear1{
  width: 20vw;
  height: fit-content;
  margin-bottom: 20px;
  border: #003B31 solid 3px;
}

.store-fridge-photo{
  width: 20vw;
  height: fit-content;
  margin-bottom: 20px;;
  border: #003B31 solid 3px;
}

.items-list li{
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
  font-size: .9vw;
}

.items-list{
  margin-bottom: 20px;
  border: #003B31 solid 3px;;
  padding: 5px;
  width: fit-content;
  
}

.postcards{
  width: 20vw;
  border: #003B31 solid 3px;
}

.knives-photo{
  width: 28.6vw;
  height: 13.2vw;
  object-fit: cover;
  margin-bottom: 20px;;
  border: #003B31 solid 3px;
}

.gift-room{
  width: 20vw;
  height: fit-content;
  border: #003B31 solid 3px;
}

/* -------------------------------------------------------- BLOG PAGE -------------------------------------------------------- */
.header-subpage-blog{
  /* display: flex; */
  background-image: url(img/sullivan-lake-people.jpg);
  height: 20vw;
  width: 100%;
  background-position-y: 50vw;
  background-position-x: 0px;
  background-repeat: repeat-y;
  background-size: 100%;
  margin-bottom: 2vw;
}

.photos-header{
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  margin-bottom: 2vw;
  font-size: 1vw;
}

.photos-month-section{
  background-color: #ddd;
  margin-left: 15vw;
  margin-right: 15vw;
  padding: 20px;
  border:#ddd solid 3px;
  border-style: groove;
  margin-bottom: 3vw;
}

.photos-of-month{
  display: flex;
  justify-content: center;
  gap: 30px;
}

.photos-of-month img{
  width: 15vw;
  height: 15vw;
  object-fit: cover;
  border:#003B31 solid 3px;
}

.photos-of-month img:last-child{
  object-position: 0px 10%;
  overflow: hidden;
}

.blog-header{
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  margin-bottom: 1vw;
  font-size: 1vw;
}

.blog-posts{
  display: flex;
  justify-content: center;
  margin-bottom: 3vw;
  font-size: .8vw;
}



/* -------------------------------------------------------- MEMORIES PAGE ---------------------------------------------------------- */
.collage-container{
  display: flex;
  justify-content: center;
  
}
.memory-collage{
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 150px;
  justify-content: center;
}

.memory-collage img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-------------------------------------------RV PARK PAGE------------------------------------------*/
/* THIS IS THE CODE THAT MAKE THE SMOOTH TRANSITION WHEN YOU HOVER OVER THE IMAGES */
.rv-site-container img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* border: #003B31 solid 3px; */
  object-fit: cover;
  width: 15vw;
  height: 15vw;
}
/* THIS IS THE CODE THAT MAKES THE IMAGES LARGER WHEN YOU HOVER OVER THEM */
.rv-site-container img:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.50);
}
.header-subpage-rvpark{
  /* display: flex; */
  background-image: url(img/sullivan-lake-people.jpg);
  height: 20vw;
  width: 100%;
  background-position-y: 50vw;
  background-position-x: 0px;
  background-repeat: repeat-y;
  background-size: 100%;
  margin-bottom: 2vw;
}

.intro-text-rvpark{
  width: auto;
  display: flex;
  justify-content: center;
}

.site1 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site1-img {
  width: 15vw;
  height: 15vw;
}

.site1-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}

.site2 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site2-img {
  width: 15vw;
  height: 15vw;
}

.site2-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site3 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site3-img {
  width: 15vw;
  height: 15vw;
}

.site3-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site4 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site4-img {
  width: 15vw;
  height: 15vw;
}

.site4-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site6 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site6-img {
  width: 15vw;
  height: 15vw;
}

.site6-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site7 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site7-img {
  width: 15vw;
  height: 15vw;
}

.site7-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site8 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site8-img {
  width: 15vw;
  height: 15vw;
}

.site8-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site9 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site9-img {
  width: 15vw;
  height: 15vw;
}

.site9-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site10 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site10-img {
  width: 15vw;
  height: 15vw;
}

.site10-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site11 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site11-img {
  width: 15vw;
  height: 15vw;
}

.site11-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site12 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site12-img {
  width: 15vw;
  height: 15vw;
}

.site12-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site14 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site14-img {
  width: 15vw;
  height: 15vw;
}

.site14-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site15 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site15-img {
  width: 15vw;
  height: 15vw;
}

.site15-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site16 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site16-img {
  width: 15vw;
  height: 15vw;
}

.site16-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site17 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site17-img {
  width: 15vw;
  height: 15vw;
}

.site17-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}
.site18 {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: #003B31 solid 3px;
  margin-bottom: 25px;
  background-color: #ddd;
  font-size: .9vw;
  height: fit-content;
  width: fit-content;
}

.site18-img {
  width: 15vw;
  height: 15vw;
}

.site18-paragraph {
  width: 50vw;
  font-size: 1.2vw;
}