
/* @import url(//db.onlinewebfonts.com/c/5a6a1549756149bc3bd245e1ad84575c?family=PericlesW01-Regular); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');

/* Variables */
:root {
  --font-family: 'Montserrat', sans-serif;
  --normal-font: 400;
  --bold-font: 700;
  --bolder-font: 900;
  --bg-color: #fcfcfc;
  --primary-color: #000000;
  --secondary-color: #000000; /* f3b638 */
  --primary-shadow: #8b8eaf;
  --secondary-shadow: #a17a69;
  --bottom-margin: 0.5rem;
  --bottom-margin-2: 1rem;
  --line-height: 1.7rem;
  --transition: 0.3s;
}
/* Variables end */

html {
  scroll-behavior: smooth;
}

/* CSS Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 2px solid red; */
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--secondary-color);
}

body {
  font-family: var(--font-family);
}

body, html {
  height: 100%;
}

bold {
  font-weight: bolder;
}



/* CSS Resets end */

/* Navbar */
nav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  padding: 3rem;
  justify-content: space-between;
  background-color: var(--bg-color);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: 5px;
}

nav h1 {
  color: var(--primary-color);
  font-size: 24px;
}

nav a {
  color: var(--primary-color);
  transition: var(--transition);
  font-size: 12px;
  padding-bottom: 1.6px;
}

nav a:hover {
  color: var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

nav ul {
  display: flex;
  gap: 1.9rem;
}

nav ul li {
  font-weight: var(--bold-font);
}

.burger-menu {
  color: var(--primary-color);
  font-size: 2rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
/* Navbar ends */


h2{
  text-align: center;
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1000px) {
  h2{
    margin-left: 10%;
    margin-right: 10%;
  }
}

h4{
  text-align: center;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1000px) {
  h4{
    margin-left: 10%;
    margin-right: 10%;
  }
}


h3{
  text-align: center;
  font-size: 4rem;
  font-weight: lighter;
}

h5{
  text-align: right;
  position: absolute;
  left: 0;
  right: 0;

  margin-top: 10rem;
  margin-right: 10rem;

  font-family: Sacramento;
  /* font-family: Indie Flower; */
  font-size: 7rem;
  font-weight: 100;
}

h6{
  text-align: center;
  font-size: 4rem;
  font-weight: lighter;
  color: white;
}


span {
  height: 50px;
  margin: 0rem;
}

errormsg {
  color: var(rgb(148, 20, 20));
}

sucess {
  color: var(rgb(54, 139, 20));
}


/* Set text to secondary color, mainly used for links */
links {
  font-weight: bolder;
  color: orange;
}

white{
  color: white;
}

/* Image policy styling */
.textdiv {
  padding-left: 25%;
  padding-right: 25%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: bold;
  margin: auto;
  gap: 1rem;
}

@media screen and (max-width: 1000px) {
  .textdiv {
    padding-left: 10%;
    padding-right: 10%;
  }
}

h7 {
  text-align: left;
  font-size: 1.5rem;
  font-weight: bolder;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

t1 {
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}



/* Put margin on h3*/
titles {
  margin: 100px;
  text-align: center;
}

/* Footer section */
footer {
  background-color: var(--bg-color);
  padding: 1.25rem;
  text-align: center;
}
/* Footer section ends */

/* Media queries for responsiveness */
@media screen and (max-width: 1000px) {
  nav {
    padding: 3rem;
  }
  nav ul {
    position: absolute;
    background-color: var(--bg-color);
    flex-direction: column;
    top: 3rem;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-100%);
    letter-spacing: 5px;
    padding-bottom: 3rem;
  }

  nav ul li {
    margin: 8px;
  }

  .burger-menu {
    display: block;
  }

  nav ul.show {
    transform: translateX(0);
  }

  .bio {
    margin-top: -7rem;
    width: 20.5rem;
  }

  .icon {
    width: 5.875rem;
    height: 5.25rem;
  }
}
/* Media queries for responsiveness ends*/

/* Site tab stuff */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


/* Three image containers (use 25% for four, and 50% for two, etc) 
Column used for gallery page

//Changes AMOUNT OF COULMNS ABLE TO FIT ON THE SCREEN

*/
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.album-container {
  padding-right: 10%;
  padding-left: 10%
}

@media only screen and (max-width: 500px) {
  .album-container {
    padding-right: 0%;
    padding-left: 0%
  }
}

/* Three image containers (use 25% for four, and 50% for two, etc) 
Column used for portfolio page

*/
.column2 {
  float: left;
  width: 50%;
  padding: 25px;
  height: 550px;
}

.column2 p{
  margin: 10px auto;
}


/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}
/* Site tab stuff ends*/

/* Gallery stuff */

#gallery {
  line-height:0;
  -webkit-column-count:3; /* split it into 5 columns */
  -webkit-column-gap:50px; /* give it a 5px gap between columns */
  -moz-column-count:3;
  -moz-column-gap:50px;
  column-count:3;
  column-gap:50px;
}

#gallery img {
  width: 100% !important;
  height: auto !important;
  margin-bottom:50px; /* to match column gap */
}


/* Responsive image gallery rules begin*/

.image-gallery {
  /* Mobile first */
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}

.image-gallery .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-item img {
  width: 100%;
  border-radius: 1px;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 200px) {
  .image-gallery {
    flex-direction: row;
  }

}

/* Used for hover feature below */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  border-radius: 5px;
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover 
.image-gallery li:hover .overlay {
  transform: scale(1);
}
*/

/* Gallery stuff ends*/

/* More media stuff for responsiveness */
@media (max-width: 1800px) {
  #gallery {
   -moz-column-count:    3;
   -webkit-column-count: 3;
   column-count:         3;
  }

  .column2 {
    padding: 40px;
    height: 480px;
  }
}

@media (max-width: 1600px) {
  #gallery {
   -moz-column-count:    3;
   -webkit-column-count: 3;
   column-count:         3;
  }

  .column2 {
    padding: 40px;
    height: 420px;
  }
}

@media (max-width: 1400px) {
  #gallery {
   -moz-column-count:    3;
   -webkit-column-count: 3;
   column-count:         3;
  }

  .column2 {
    padding: 40px;
    height: 380px;
  }
}

@media (max-width: 1200px) {
  #gallery {
   -moz-column-count:    3;
   -webkit-column-count: 3;
   column-count:         3;
  }

  .column2 {
    padding: 40px;
    height: 350px
  }
}

@media (max-width: 1000px) {
  #gallery {
   -moz-column-count:    2;
   -webkit-column-count: 2;
   column-count:         2;
  }

  .column2 {
    padding: 30px;
    height: 280px
  }
}

@media (max-width: 800px) {
  #gallery {
   -moz-column-count:    2;
   -webkit-column-count: 2;
   column-count:         2;
  }

  .column2 {
    padding: 15px;
    height: 250px
  }
}

@media (max-width: 300px) {
  #gallery {
   -moz-column-count:    1;
   -webkit-column-count: 1;
   column-count:         1;
  }

  .column2 {
    padding: 5px;
  }
}

/* Media stuff ends */

/* Sign up and Sign in form */
.signup-form {
  background-image: url("../images/IMG_8575 (Stor).JPG");
  background-size: cover;
  background-position: center;
}


form {
  width: 350px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  margin-bottom: -2.2rem;
}

form input {
  font-family: inherit;
  width: 100%;
  outline: none;
  background-color: var(--bg-color);
  border-radius: 4px;
  border: none;
  display: block;
  padding: 0.9rem 0.7rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  color: #000000;
  text-indent: 40px;
  margin-bottom: 1rem;
  font-weight: bold;
}

form .inputNum {
  font-family: inherit;
  width: 15%;
  outline: none;
  background-color: var(--bg-color);
  border-radius: 4px;
  border: none;
  display: block;
  padding: 0.9rem 0.7rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  color: #000000;
  text-indent: 0px;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* Buttons in general */
form .btn {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  text-align: center;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  margin-bottom: 20rem;
  margin-top: 1rem;
}

/* Button for contacts page */
form .btn2 {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  text-align: center;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  margin-bottom: 20rem;
  margin-top: 1rem;
}

/* Button for admin panel */
form .btn3 {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  text-align: center;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Invisible button for spam filter*/
form .spam {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0px;
  text-align: center;
  background-color:#ffffff00;
  color: #ffffff00;
  border-radius: 0px;
  font-size: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
}

/* Text Area for the contact form */
textarea{
  width: 350px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  border: none;
  height: 12rem;
  font: inherit;
  padding: 0.9rem 0.6rem;
  background-color: var(--bg-color);
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  color: #000000;
  text-indent: 40px;
  resize: none;
  font-weight: bold;
}

/* Background for singup form */
.signup2-form {
  background-image: url("../images/IMG_8875 (Stor).JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background for reset forgot password */
.rstpassword-form {
  background-image: url("../images/IMG_8866 (Stor).JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.imtext {
  position: relative;
  text-align: center;
  color: white;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  color: var(--bg-color);
  font-weight: lighter;
}

.centered2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5vw;
  color: var(--bg-color);
  font-weight: lighter;
}

.grow {
  padding: 0%;
  overflow: hidden;
}
.grow img {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    vertical-align: bottom;
    display: grid;
}
.grow img:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 1;
}




/* (B) GALLERY WRAPPER */
.album {
  /* (B1) GRID LAYOUT - 3 IMAGES PER ROW */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
 
  /* (B2) OPTIONAL WIDTH RESTRICT */
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;

}

/* (C) GALLERY IMAGES */
.album img {
  /* (C1) DIMENSION */
  width: 100%;
  height: 200px; /* optional */
  padding: 5px;
 
  /* (C2) COLORS */
  border: 0px solid #ddd;
  background: #fff;
 
  /* (C3) IMAGE RESIZE */
  /* cover | contain | fill | scale-down */
  object-fit: contain;
  position: relative;
}

/* (D) ON SMALL SCREENS - 3 IMAGES PER ROW */
@media only screen and (max-width: 1600px) {
  .album {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* (D) ON SMALL SCREENS - 3 IMAGES PER ROW */
@media only screen and (max-width: 1000px) {
  .album {
    grid-template-columns: repeat(3, 1fr);
    position: absolute; /* Fix jump to top, ruined footer :(, has to do with mobile lightbox*/
  }
}

/* (D) ON SMALL SCREENS - 2 IMAGES PER ROW */
@media only screen and (max-width: 600px) {
  .album {
    grid-template-columns: repeat(2, 1fr);
    position: absolute; /* Fix jump to top, ruined footer :(, has to do with mobile lightbox */
  }
}

/* Feed Page */
.feed {
  width: 50%; /* Set the width to 50% of the screen */
  margin: 0 auto; /* Center the div horizontally */
}

.post {
  width: 95%;
  background-color: #ffffff;
  margin: 10px auto; /* Adds margin around the top and bottom */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  justify-content: space-between;

  border: none;
  border-bottom: 1px dashed rgb(158, 158, 158);
}

.post h1 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 10px;
}

.post p {
  color: #000000;
  font-size: 14px;
  margin-bottom: 10px;
}

.image-group {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.image {
  width: calc(33.33% - 10px);
  height: auto;
  object-fit: cover;
}

 /* Feed cover more of screen when on smaler devices */
@media only screen and (max-width: 1000px) {
  .feed {
    width: 75%;
  }
}

@media only screen and (max-width: 600px) {
  .feed {
    width: 90%;
  }
}

/* Feed Page Ends*/


/* Slideshow */

/* Slideshow container */
.slideshow-container {
  max-width: auto;
  position: relative;
  margin: 10%;
  margin-bottom: 10px;
  margin-top: 100px;
}

.doubleSlide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.doubleSlide img {
  flex: 1; /* Distribute the available space evenly between the images */
  max-width: calc(50% - 10px); /* 50% width with a 10px gap in between */
  margin-right: 20px; /* Add a 10px gap between the images */
}

.doubleSlide img:last-child {
  margin-right: 0; /* Remove the margin from the last image to avoid extra gap */
}


@media only screen and (max-width: 900px) {
  .doubleSlide {
    flex-direction: row;
  }

  .doubleSlide img {
    flex: 1; /* Distribute the available space evenly between the images */
    margin: 0;
    margin-bottom: 10px;
    margin-top: 20px;
    max-width: calc(50% - 10px); /* 50% width with a 10px gap in between */
    margin-right: 10px; /* Add a 10px gap between the images */
  }

  .slideshow-container {
    margin: 5%;
    margin-bottom: 1px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 400px){
  .slideshow-container {
    margin-bottom: 5px;
    margin-top: 30px;
  }
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.dot1 {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot2 {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot3 {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot4 {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active, .dot:hover {
  /* background-color: #717171;  THIS IS USED TO FILL DOT INSTEAD*/ 
  border-color: orange;
  border-width: 3px;
  border-style: solid;
  background-color: var(--bg-color);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 0.3s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Slideshow Ends */

/* About page width: 50% auto; /* Set the width to 60% of the screen */
.about {
  width: 50%; /* Set the width to 60% of the screen */
  margin: 0 auto; /* Center the div horizontally */

  display: flex;
  align-items: flex-start;

  margin-top: 75px;
}

.aboutImage {
  align-items: left;
  border-radius: 50%;
  flex: 0 0 auto;
  width: 200px;
  height: auto;
}

.aboutText {
  flex: 1 1 auto;
  margin-left: 40px;
  margin-right: 40px;
}

.aboutHeader {
  color: #000000;
  font-size: 20px;
  margin-bottom: 10px;
}

.aboutTextSize {
  color: #000000;
  font-size: 14px;
  margin-bottom: 10px;
}

 /* Feed cover more of screen when on smaler devices */
@media only screen and (max-width: 1400px) {
  .about {
    width: 80%;
  }
}

@media only screen and (max-width: 800px) {
  .about {
    width: 95%;
    flex-direction: column;
    align-items: center;
  }

  .aboutImage {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .about {
    width: 95%;
    flex-direction: column;
  }

  .aboutImage {
    align-items: center;
    margin-bottom: 10px;
  }

}

/* Feed Page Ends*/



