

/*** lukowastudio.css ***/



/*** boxmodel.css ***/

html {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

*, ::after, ::before {
	box-sizing: inherit;
	-webkit-box-sizing: inherit;
}
/*** end of boxmodel.css ***/



/*** header.css ***/

header {
  background-color: #f7f7f7;
  background: linear-gradient(30deg, white, #eee);
  border-radius: 6px;
  box-shadow: 2px 2px 3px #ddd;
  margin: 0px 2px 5px;
  transition: 0.3s;
}

header img {
  width: 100%;
  border-radius: 4px;
  transition: 0.8s;
  filter: url(../img/shadow.svg#element-id);
}

header a {
  opacity: 65%;
  transition: 0.8s;
}

header a:hover {
  opacity: 100%;
}

header img:hover {
  box-shadow: 0px 0px 0px #ddd;
  transform: scale(110%);
}

header:hover {
  box-shadow: 0px 0px 0px #ddd;
}/*** end of header.css ***/



/*** nav.css ***/

nav ul {
  display: flex;
  flex-flow: row wrap;
  padding-left: 0;
  margin: 2px 0px 0px 0px;
}

nav ul li {
  list-style-type: none;
  margin: 2px;
  padding: 10px 0px;
  background-color: #fdfdfd;
  /* background: linear-gradient(160deg, #f0f0f0, #d7d7d7); */
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.5s;
  flex-grow: 1;
  text-shadow: 2px 2px 5px white;
  box-shadow: 2px 2px 3px #ddd;
}

nav ul li:hover {
  background: #f2f2f2;
}

nav ul li div {
  padding: 0px 20px;
}

nav a {
  text-decoration: none;
}
/*** end of nav.css ***/



/*** contact.css ***/

.addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style-type: none;
  padding: 0px;
}

@media (max-width: 600px) {
  .addresses {
    grid-template-columns: 1fr;
  }
}

.person {
  list-style-type: none;
  padding: 20px 20px 20px 20px;
  background: rgba(255, 255, 255, 0.3);
  background: linear-gradient(225deg, #f0f0f0, #ffffff);
  margin: 2px;
  border-radius: 4px;
  box-shadow: 2px 2px 3px #ddd;
}

.person:hover {
  transition: 0.8s;
  background: rgba(255, 255, 255, 0.7);
}

.person img {
  width: 100%;
  transition: 0.4s;
  opacity: 100%;
  filter: none;
  border-radius: 4px;
}

.person:hover img {
  opacity: 85%;
  filter: grayscale(70%);
}

.person li ~ li {
  margin-left: 20px;
}

.person strong {
  font-size: 120%;
}

.person a {
  text-decoration: none;
}
/*** end of contact.css ***/



/*** gallery.css ***/

.gallery ul,
.gallery li {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  display: inline;
}

.gallery img {
  width: calc(100% / 3);
  padding: calc(100% / 50) calc(100% / 50);
  opacity: 100%;
  filter: none;
  transition: 0.4s;
  border-radius: 4px;
  box-shadow: 2px 2px 3px #ccc;
  border: 1px solid white;
}

.gallery img:hover {
  opacity: 85%;
  filter: grayscale(70%);
}

#galleryImage {
  display: none;
  opacity: 0%;
}

#galleryImage.active {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 100%;
  transition: 1s;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 7;
}
/*** end of gallery.css ***/



/*** social.css ***/

.social ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  background-color: black;
  background: linear-gradient(90deg, black, #444);
  line-height: 100%;
  z-index: 5;
  position: relative;
}

.social li {
  margin: 2px 5px;
  padding: 0px;
}

.social img {
  width: 30px;
  height: 30px;
  filter: invert(90%);
  border-radius: 6px;
  padding: 5px;
}

.social {
  grid-area: social;
}
/*** end of social.css ***/



/*** footer.css ***/

footer {
  grid-area: footer;
  color: #ddd;
  text-align: left;
  position: relative;
  z-index: 6;
  margin: 0px;
  padding: 0px;
  display: flex;
  background-color: black;
  background: linear-gradient(90deg, black, #444);
  line-height: 100%;
}

footer ul {
  margin: 8px;
  padding: 0px;
}

footer li {
  display: inline;
  margin: 0px 0px 0px 0px;
  padding: 0px;
}

footer li::before {
  content: "• ";
}

footer li:first-child:before {
  content: "";
}

footer a:link,
footer a:visited {
  color: inherit;
  text-decoration: none;
}
/*** end of footer.css ***/

/* @import "background.css"; */

.motto {
  font-style: oblique;
  font-family: "Lato", sans-serif;
  font-size: 200%;
  padding-left: 30px;
  margin: 40px 0px;
  line-height: 100%;
  color: #888;
}

h1 {
  margin: 5px 0px 0px;
}

p {
  hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  text-align: justify;
  margin-bottom: 30px;
}

body {
  background-color: white;
  font-family: "Lato", sans-serif;
  line-height: 175%;
  display: grid;
  grid-template-areas:
    "social social social"
    "blankleft container blankright"
    "footer  footer  footer";
  grid-gap: 0px;
  grid-template-columns: 1fr auto 1fr;
}

body::before {
  transform: rotate(-20deg);
  background-image: url(../img/lukowastudio-logo.svg);
  background-size: 130px;
  width: 300%;
  height: 300%;
  position: fixed;
  top: -50%;
  left: -50%;
  opacity: 20%;
  content: "";
  z-index: -1;
  background-repeat: repeat;
}

.blankleft {
  grid-area: blankleft;
  box-shadow: inset #ccc -10px 20px 15px -10px, inset #ddd 0px -30px 15px -20px;
  display: grid;
}

.blankright {
  grid-area: blankright;
  box-shadow: inset #ccc 15px 20px 15px -10px, inset #ddd 0px -30px 15px -20px;
  display: grid;
}

.container {
  grid-area: container;
  max-width: 1100px;
  min-width: 354px;
  padding: 5px 25px;
  background-color: #f6f6f6;
  background: linear-gradient(225deg, #f0f0f0e0, #ffffffe0);
  border: 2px solid #ddd;
  z-index: 5;
  position: relative;
}

h2::before {
  content: "";
}

h2 {
  color: #a4a4a4;
  text-shadow: 4px 4px 4px white, 0px 0px 60px #888;
  margin: 60px 0px;
  font-weight: 900;
  text-align: center;
  font-size: 250%;
  transition: 0.4s;
}

h2:hover {
  transform: scale(125%);
}

a:link,
a:visited {
  color: black;
}

.collapsibleContent {
  padding: 0 18px;
  overflow: hidden;
  background-color: #f1f1f1;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.collapsible span {
  border-bottom: 1px dashed;
  cursor: pointer;
}
/*** end of lukowastudio.css ***/

