/* formatting */
/* width */
::-webkit-scrollbar {
  width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.8);;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.8);;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: solid 1px #ffcc00;
  width: 90%;
}

hr.style-smile {
  overflow: visible; /* For IE */
  padding: 0;
  border: none;
  border-top: medium double #ffcc00;
  color: #333;
  text-align: center;
}
hr.style-smile:after {
  content: "ᵔᴗᵔ";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: white;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    background-color: black;
    color: white;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}table {
	border-collapse: collapse;
	border-spacing: 0;
}section {
  margin: 1rem 0 1rem 0;
}
a {
  text-decoration: none;
}

/* font inports */
.new-rocker-regular {
    font-family: "New Rocker", system-ui;
    font-weight: 400;
    font-style: normal;
  }.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
/* this below allows the scrolling to snap into place */
/* Define snap points for scroll container */
.scroll-container {
  scroll-snap-type: y mandatory; /* Enable snapping on the y-axis */
}/* Define individual snap points for sections within the container */
.scroll-section {
  scroll-snap-align: start; /* Snap to the start of each section */
}


.open-nav-btn {

  display: none;
}.side-nav {

  display: none;
}#mySidenav {

display: none;

}



.mobile {
  display: none;

}



/* header information */

header {
  width: 100%;
  height: 50px;
  position: fixed;
  z-index: 1;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  top: 0; /* Initially visible */
  transition: top 0.3s, background-color 0.3s; /* Smooth transition */
  justify-content: flex-end;
}
header.scrolled {
  background-color: rgba(0, 0, 0, 0.8); /* Background color when scrolled */
}
header.hidden {
  top: -60px; /* Hide the header */
}
header nav {
  margin-right: 5rem;
  margin-left: 5rem;
  margin-top: 1rem;
}
header nav a {
  padding: 1rem;
  color: white;
  text-decoration: none;
  font-size: 25px;
  font-weight: 400;
  cursor: pointer;
}
header nav a:hover {
  text-decoration: underline;
}

/* basic wrapper to keep all content in tight space when needed */
.wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
}


/* welcome area for image coverage of the whole area */
/* Ensure the container takes the full viewport height */
.welcome-image {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Align vertically to the center */
  background-repeat: no-repeat;
}.welcome-main {
  background-image: url(../imgs-videos/welcome\ main\ mk2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Use cover to ensure the background image covers the container */
}
.welcome-gallery {
  background-image: url(../imgs-videos/welcome\ nt.webp);
  background-size: cover; /* Use cover to ensure the background image covers the container */

}
.welcome-info {
  background-image: url(../imgs-videos/welcome-info.webp);
}.welcome-contact {
  background-image: url(../imgs-videos/welcome\ contact.webp);
  background-size: contain; /* Use cover to ensure the background image covers the container */

}


.welcome-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  padding: 50px;
}.welcome-logo {
  width: 100%;
}.welcome-logo img {
  width: 100%;
}
.welcome-quote {
  text-align: right;
  padding: 10px;
}
.welcome-quote h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 30px;
}.welcome-quote p {
  padding-top: 10px;
  font-size: 24px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}.welcome-selection {
  display: flex;
  margin-top: 10rem;
  justify-content: flex-end;
}.quickSelect {
  display: flex;
  flex-wrap: wrap;
  outline: solid 1px white;
  border-radius: 5px;
  padding: 0.5rem;
  text-align: center;
  margin: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}.quickSelect a {
  padding: 0.5rem;
  color: white;
  font-size: 1.7em;
  font-weight: 300;
}.quickSelect:hover {
  transform: scale(1.05); 
  outline: 2px white solid;
  background-color: rgb(27, 27, 27);
}

.location-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-right: 3rem;
  text-align: right;
}.location-main h2 {
  padding-bottom: 5px;
  padding-top: 10px;
  font-size: 1.5em;
  color: #ffcc00;
  font-weight: 500;
  text-transform: uppercase;
}.location-main h3 {
  padding: 5px 0 5px 0;
  font-size: 1.2em;
  font-weight: 400;
}.location-main a {
  color: white;
  text-decoration: underline;
  font-weight: 200;
  font-size: 0.8em;
}.location-main a:hover {
  font-weight: 400;
}



/* gallery information */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 10px;
  align-items: center;
}.image-grid img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s;
}.image-grid img:hover {
  transform: scale(1.05);
}.fullscreen {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}.fullscreen-image {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 90%;
  max-height: 90%;
}

 /* Existing styles */
 .selection {
  width: 100%;
  padding-top: 5rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}.selection a {
  color: white;
}

.page-head {
  width: 100%;
  min-height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 50px;
}




.selection-box {
  max-width: 350px;
  min-height: 400px;
  background-color: rgba(31, 31, 31, 0.5);
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  border-radius: 5px;
  outline: none;
  text-align: center;
  cursor: pointer;
  color: white;
  transition: transform 0.3s; /* Smooth transition for scaling */
}

.selection-box:hover {
  outline: 2px rgb(153, 0, 255) solid;
  background-color: rgba(31, 31, 31, 0.8);
  transform: scale(1.1); /* Scale the item on hover */
}

.selection-box-icn {
  width: 50%;
  margin: 0 auto;
  padding-top: 1rem;
}

.selection-box-icn img {
  max-width: 100%;
  max-height: 100%;
}

.selection-box h2 {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 1.6em;
}

.selection-box p {
  font-size: 1.3em;
  font-weight: 400;
  padding: 1rem;
}

/* New styles for popup containers */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow-y: auto; /* Allow scrolling */
}

.popup-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  position: relative;
  color: black;
}

.popup-content h2 {
  text-align: center;
  padding: 1rem;
  font-size: 1.7em;
}

.popup-content p {
  line-height: 1.6;
  font-size: 1.3em;
  font-weight: 300;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.popup-close:hover,
.popup-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.reviews-section {
  display: flex;
  flex-direction: column;
}
.reviewGrade {
  margin-bottom: 1rem;
  min-width: 100px;
}
.reviewDate {
  font-size: 0.7em;
  margin-bottom: 1rem;
}

.reviewContainer {
  display: flex;
  flex-direction: row;
}
.reviewContent {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1rem;
}.reviewContent h3 {
  padding-bottom: 1.5rem;
}.reviewWritten {
  font-size: 0.8em;
}



/* privacy page quick css */
#privacyPolicy {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 100px;
  width: 100%;
  min-height: 100vh;
  font-size: 1.2em;
  font-weight: 300;

}
#privacyPolicy h2 {
  padding: 1rem 0 1rem 0;
}#privacyPolicy li {
 list-style:decimal;
 margin-left: 30px;
 margin-top: 10px;
}#privacyPolicy a {
  color: unset;
  text-decoration: underline;
  font-weight: 400;
}




footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; /* Align items horizontally */
  width: 100%;
  height: auto;
  min-height: 200px;
  background-color: black;
  color: white;
}
.ftr-adr {
  padding: 2rem
}.ftr-adr a {
  color: unset;
}

.ftr-adr a:hover {
  text-decoration: underline;
}
.ftr-adr h2 {
  font-size: 1.5em;
  text-align: left;
  padding-bottom: 1rem;
}

footer p {
  flex-grow: 1; /* Allow to grow */
  position: relative;
  display: flex;
}
