/* Color Variables */
:root {
  --navbar-text-color: rgba(255, 218, 126);
  --navbar-text-color-rgb: rgb(255, 218, 126);
  --body-text-color: rgb(216, 191, 147);
  --navbar-text-tonned-color: rgb(196, 173, 132);
  --navbar-tonned-color: rgba(193, 180, 156, 0.497);
}
/* Bootstrap Overwrites*/
.navbar-dark {
  --bs-navbar-color: rgb(196, 173, 132);
  --bs-navbar-hover-color: rgba(251, 216, 129);
}
.border-none{
  border: #000 0px solid;
  
}
.px-6 {
  padding-left: 10%;
  padding-right: 10%;
}
.mt-6 {
  margin-top: 4rem !important;
}
.mt-45 {
  margin-top: 2.25rem !important;
}
.mx-10P {
  margin-left: 10%;
  margin-right: 10%;
}
.position-relative {
  position: relative;
}
.w-20{
  width: 20%;
  height: auto;
}
.w-80{
  width: 85%;
  height: auto;
}
.form-control {
  background-color: rgba(37, 37, 37);
  border: 0 solid white;
  border-radius: 2px;
  outline: 0;
  color: var(--body-text-color);
}
.form-control:focus {
  background-color: rgb(105, 105, 105);
  border: 0 solid white;
  border-radius: 2px;
  box-shadow: none;
  color: var(--body-text-color);
}
.btn {
  border-radius: 2px;
  border: 0px solid;
  border-top-width: 2px;
  padding-left: 10%;
}
.btn-secondary {
  --bs-btn-color: rgb(196, 173, 132);
  --bs-btn-bg: rgba(0, 0, 0, 0);
  --bs-btn-border-color: rgba(255, 218, 126);
  --bs-btn-active-color: rgb(196, 173, 132);
  --bs-btn-active-bg: rgba(0, 0, 0, 0);
  --bs-btn-active-border-color: rgba(255, 218, 126);
  --bs-btn-hover-color: rgba(255, 218, 126);
  --bs-btn-hover-bg: rgba(37, 37, 37);
  --bs-btn-hover-border-color: rgb(255, 234, 181);
}
/* Custom Rules for this */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #000000 30%);
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-weight: 100;

  color: var(--body-text-color);

  position: relative;
}
.font-tonned {
  font-weight: 100;
}
.font-half-tonned {
  font-weight: 400;
}
.index {
  overflow: hidden;
}
body::before {
  margin: 0;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/BackAndLogo/shutterstock_2614031667.webp");
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.navTextCol {
  font-family:
    "Perpetua", "Baskerville", "Big Caslon", "Palatino Linotype", serif;
  font-weight: 100;
  line-height: 0.85;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0.325rem;
}
.underText {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-weight: 600;
  font-size: 1rem !important;
  letter-spacing: 0.35rem;
}
.inline {
  display: inline;

  text-decoration: none !important;
}

.navSocial {
  display: inline;
  vertical-align: top;
}
.navSocial span img {
  height: 1em;
  width: auto;
  vertical-align: top;

}

.navbar {
  color: var(--navbar-text-color) !important;
  background: rgba(36, 36, 36) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.navtop {
  height: 14vh !important;
  max-height: 14vh !important;
  margin-top: 1vh;
  margin-bottom: 1vh;
  border-bottom: var(--navbar-tonned-color) solid 1px;
}
.nav-tonned {
  color: var(--navbar-text-tonned-color);
}
.navcontainer {
  width: 98%;
}
.slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
  pointer-events: none;
}

.contact {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.content {
  max-width: 1100px;
  width: 100%;
  padding: 20px;
  pointer-events: auto;
}
.logoImg {
  height: auto;
  margin-bottom: 5px;
  width: 25vw;
}
@media only screen and (max-width: 500px) {
  .logoImg {
    width: 60vw;
  }
}
.logo {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  text-align: center;
  background: linear-gradient(145deg, #f8b955, #daa95d, #9f6c2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 217, 0, 0.045),
    2px 2px 4px rgba(0, 0, 0, 0.142);
}
.underLogo {
  background: linear-gradient(145deg, #f8b955, #daa95d, #9f6c2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 217, 0, 0.045),
    2px 2px 4px rgba(0, 0, 0, 0.142);
}
@media only screen and (max-width: 640px) {
  .logo {
    font-size: 2.2rem !important;
  }
  .underLogo {
    font-size: 0.8rem !important;
  }
}

.arrow-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(200, 200, 200, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 9999;
  pointer-events: auto;
}

.arrow-container:hover {
  background: rgba(200, 200, 200, 0.35);
}

.arrow {
  font-size: 1.8rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

a {
  display: block;
  position: relative;
  padding: 0.2em 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: var(--navbar-tonned-color);
  opacity: 0;
  transition:
    opacity 300ms,
    transform 300ms;
}

.nav-link::after {
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scale(1);
}
.navbar-brand {
  transform: translateX(-50%);
  left: 50%;
  height: 100%;
}
.brand {
  height: 100%;
}
.active .nav-link::after {
  content: "";

  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: var(--navbar-tonned-color);
  opacity: 1;
  transform-origin: center;
  transform: scale(1);
}
canvas {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  mix-blend-mode: difference;
}

#container {
  position: relative;
  overflow: hidden;

  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.photobanner {
  position: absolute;
  top: 3vh;
  bottom: 3vh;
  left: 0px;
  overflow: hidden;
  white-space: nowrap;
  animation: bannermove 10s linear infinite;
}

.photobanner img {
  margin: 0 0.5em;
  width: auto;
  height: 100%;
}

.photobanner img:hover {
  margin: 0 0.5em;
  width: auto;
  height: 100%;
  rotate: 1deg;
}

@keyframes bannermove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-62.5%, 0);
  }
}

#container:hover .photobanner {
  animation-play-state: paused;
}
.galEntity {
  z-index: 2;
  position: relative;
  cursor: zoom-in;
}
.galEntity:hover {
  rotate: 1deg;
}

dialog {
  border-radius: 10px;
  background: white;
}

dialog::backdrop {
  backdrop-filter: blur(2px);
}

dialog .galEntity {
  width: clamp(80%, auto, 100%);
  max-height: 80vh;
}

dialog button {
  display: block;
  margin: 10px auto;
  cursor: pointer;
}

dialog[open] {
  animation: dialog-fade-in 0.3s ease-in-out;
}

@keyframes dialog-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  background-color: rgba(0, 0, 0, 0.348);
}
.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;

  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 200px;
  height: 200px;
}

.gablotka {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px !important;
}
.underline {
  transform: translate(0.4%);

  margin-top: 6px;
  height: 1px;

  background-image: linear-gradient(
    180deg,
    rgba(251, 216, 129, 1) 20%,
    rgba(237, 221, 83, 0) 100%
  );
}
.udbotm {
  margin-top: 4px;
  margin-bottom: 4px;
}
footer {
  padding-left: 3%;
  padding-right: 3%;
  background: #000;
}

.aboutUsFiller {
  color: var(--navbar-text-tonned-color);
}
.portretSides {
  border-radius: 50%;
  height: 50%;
  min-width: 1px;
}
@keyframes portraitSide-Left {
  0% {
    transform: translateY(-100vh);
  }
  100% {
    transform: translateY(-10%);
  }
}
@keyframes portraitSide-Right {
  0% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(+110%);
  }
}
.portretSides-l {
  background-image: linear-gradient(
    0deg,
    rgba(251, 216, 129, 1) 20%,
    rgba(237, 221, 83, 0) 100%
  );
  margin-right: 5px;
  transform: translateY(-10%);
  animation: 3s
    linear(
      0,
      0.013 1%,
      0.051 2.2%,
      0.404 9.8%,
      0.51 12.6%,
      0.602 15.5%,
      0.683 18.7%,
      0.754 22.2%,
      0.813 26%,
      0.861 30.2%,
      0.9 34.8%,
      0.931 40%,
      0.972 52.7%,
      0.992 70.2%,
      1
    )
    0s 1 portraitSide-Left;
}
.portretSides-r {
  background-image: linear-gradient(
    0deg,
    rgba(237, 221, 83, 0) 20%,
    rgba(251, 216, 129, 1) 100%
  );
  margin-left: 5px;
  transform: translateY(+110%);
  animation: 3s
    linear(
      0,
      0.013 1%,
      0.051 2.2%,
      0.404 9.8%,
      0.51 12.6%,
      0.602 15.5%,
      0.683 18.7%,
      0.754 22.2%,
      0.813 26%,
      0.861 30.2%,
      0.9 34.8%,
      0.931 40%,
      0.972 52.7%,
      0.992 70.2%,
      1
    )
    0s 1 portraitSide-Right;
}
.portrait-wrapper {
  aspect-ratio: 3 / 4;
}

.cytat {
  font-style: italic;
}
.signature {
  width: 200px;
  vertical-align: top;
}

.list{
  padding-left: 2rem;
}
.clear{
  background:none !important;
  backdrop-filter:unset !important;
}

.indexBody::before{
  opacity: 0.4 !important;
}

.max-vh-100{
  max-height: 100vh;
}

.index-link{
  margin-bottom: 2rem;
  min-width: 40%;
  max-width: 40%;
  padding-top: 3%;
  padding-bottom: 3%;
  
  background-image: linear-gradient( var(--navbar-text-color-rgb),  var(--navbar-text-color-rgb));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size .5s, color .5s;

}
.index-link:hover{
  background-size: 100% 100%;
  color:black;
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.6)
}