/*
 * Global variables
 */

:root {

  --fontsize-base:            max(5px,min(0.4vh + 0.6vw,10px));
  --fontsize-tiny:            calc(1.1 * var(--fontsize-base));
  --fontsize-xxsmall:         calc(1.3 * var(--fontsize-base));
  --fontsize-xsmall:          calc(1.5 * var(--fontsize-base));
  --fontsize-small:           calc(1.6 * var(--fontsize-base));
  --fontsize-medium:          calc(2.2 * var(--fontsize-base));
  --fontsize-large:           calc(2.6 * var(--fontsize-base));
  --fontsize-xlarge:          calc(3.7 * var(--fontsize-base));
  --fontsize-xxlarge:         calc(4.6 * var(--fontsize-base));

  /*--gallery-img-height:       calc(15vh + 35vw);*/
  --gallery-img-width:        calc(80vh);

  --color: #2C3143;
  --tile-bg: #F8F9FA;
  --tile-bg-hover: #225f87;;
  --border: #70707033;
  --error: #dc3545;

  background-color: #1b2e42;

}


#root {
  overflow-x: auto;
}

* {box-sizing: border-box}

html, body {
  font-family: monaco,monospace;
  /*font-family: roboto-mono, Helvetica, Arial, sans-serif;*/
  font-size: var(--fontsize-xsmall);
  display:flex;
  justify-content: center;
}

h1 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  font-size: var(--fontsize-large);
}
h2 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  font-size: var(--fontsize-medium);
}
h3 {
  margin-top: 1em;
  font-size: var(--fontsize-medium);
  margin-bottom: 0.5em;
}
h4 {
  font-size: var(--fontsize-small);
  margin-bottom: 0.4em;
}
a {
  color: #2C3143
}
a:hover {
  color: darkred;
}

.blink {
  animation: blink 3s infinite;
}

.MainViewPort {
  background-color: black;
  align-items: center;
  width: 94vw;
  min-width: 500px;
  max-width: 1200px;
}


.GalleryAvatarTitle{
  padding: 2vw;
  width:20%;
  text-align: center;
  color: white;
  font-size: var(--fontsize-medium);
}
.MainTitle {
  color: rgb(200,200,200);
  font-size: var(--fontsize-large);
  text-decoration: none;
  text-align: left;
  width:85%;
  padding-top: 1vw;
}

.TopHeader {
  background-color: black;
  width:100%;
  display: flex;
  justify-content: space-between;
  padding-top: 0px;
  margin-top:0px;
  padding-bottom:5px;
  margin-bottom:10px;
  border-bottom: 3px solid #1b2e42;
}

.NavBar {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}

.NavBar button {
  display: inline-block;
  color: rgb(150,150,150);
  font-size: var(--fontsize-xsmall);
  text-decoration: none;
  margin: .2rem;
  padding: 0.7rem;
  /*width:1%;*/
  min-width: 60px;
  text-align: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition-duration: .4s;
  cursor: pointer;
}
.NavBar button.active {
  color: #eee;
  background: var(--tile-bg-hover);
  cursor: default;
}
.NavBar button:not(.active):hover {
  /*color: white;*/
  background:var(--tile-bg-hover);
  border: 1px solid #1b2e42;
}

.MainContent{
  width: 100%;
  padding: 2vw;
}

.HomeAboutSection{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 4vw;
  /*padding-left: 7vw;*/
}
.HomeAboutPic{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 4/4;
  width: 25%;
  border-radius: 5px;
}
.HomeAboutDesciption{
  padding: 1vw;
  padding-top: 0vw;
  font-size: var(--fontsize-small);
  color: rgb(150,150,150);
  width: 68%;
}

.HomeBoxesSection {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 2vw;
}
.HomeBox{
  padding-top:0vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-blend-mode: overlay;
  background-color: #333333;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 4/3;
  width: 28%;
  color: white;
  text-align: center;
  vertical-align: center;
  border-radius: 5px;
  border: white solid 1px;
  font-size: var(--fontsize-medium);
  font-weight: bold;
  text-decoration: none;
}
.HomeBox:hover{
  color: black;
  /*font-weight: bold;*/
  background-color: #dddddd;
  /*background-color: none;*/
  background-blend-mode: overlay;
}

.SectionTitle {
  color: rgb(200,200,200);
  font-size: var(--fontsize-medium);
  text-decoration: none;
  text-align: left;
  width:100%;
  padding: 2vw;
  padding-top: 0vw;
  padding-bottom: 0.5vw;
}
.SectionTitleText {
  color: rgb(200,200,200);
  font-size: var(--fontsize-xxsmall);
  text-decoration: none;
  text-align: left;
  width:100%;
}

.GalleriesSection {
  width:100%;
  padding-left: 1vw;
  padding-right: 1vw;
  margin-bottom: 4vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.GalleryLinkBox {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin:1%;
  padding:0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  color: #2C3143;
  text-decoration: none;
  aspect-ratio: 4/3;
  width: 23%;
  max-width: 330px;
  min-width: 210px;
  /*border: 1px solid rgb(200,200,200);*/
  border-radius: 5px;
}
.GalleryLinkBoxTitle {
  width:100%;
  background-color: white;
  color: rgb(50,50,50);
  font-size: var(--fontsize-xxsmall);
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding:1%;
}

/* ########################################################### */
/* Gallery */

.GalleryTitle {
  color: rgb(200,200,200);
  font-size: var(--fontsize-large);
  text-decoration: none;
  text-align:center;
  width:100%;
  margin: 10px;
}

.GallerySection {
  width:100%;
  margin-bottom: 4vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.Gallery-tile {
  font-size: var(--fontsize-xxsmall);
  background-color: #F8F9FA;
  width: 75%;
  min-width: 190px;
  margin-bottom: 2vw;
  border: #F8F9FA solid 3px;
  border-radius: 6px;
}

.AllPhotosLink{
  margin:0.5vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 4/3;
  width: 10%;
  border-radius: 5px;
  border: white solid 1px;
}
.AllPhotosLink:hover{
  color: black;
  /*font-weight: bold;*/
  background-color: #dddddd;
  /*background-color: none;*/
  background-blend-mode: overlay;
}

.PhotoPageSection {
  width:100%;
  padding-left:3%;
  padding-right:3%;
  margin-bottom: 4vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}


.ContactSocialMediaSectionTitle{
  color: rgb(200,200,200);
  font-size: var(--fontsize-small);
  font-weight: bold;
  text-decoration: none;
  width:100%;
  padding-left: 8vw;
}
.ContactSocialMediaSection{

}
.ContactFormSectionTitle{
  color: rgb(200,200,200);
  font-size: var(--fontsize-small);
  text-decoration: none;
  width:100%;
  padding-left: 13%;
  padding-right: 13%;
}
.ContactFormSection{
  padding: 13%;
  padding-top:1%;
  width: 100%;
  aspect-ratio: 4/3;
}




.Footer {
  padding:1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fontsize-xsmall);
  font-style: italic;
  border-top: 3px solid #1b2e42;
  color:gray;
}


