@charset "utf-8";

/* =========================
   BASE (0–560px / MOBILE)
   ========================= */

body {
    background: url(../img/background.png) repeat;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 62.5%;
    font-weight: 300;
}

#body-wrap {
    width: 97.5%;
    margin-left: 2%;
}

h1 {
    font-weight: 300;
    font-size: 4.2em;
    margin-top: 40px;
    margin-bottom: 150px;
    width: 90%;
    line-height: 140%;
}

h2 {
    font-size: 3em;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 10px;
    margin-top: 0;
    clear: left;
}

h3 {
    font-size: 2.4em;
}

h6 {
    font-size: 1.6em;
    margin: 5px;
}

p {
    font-size: 1.5em;
    margin-top: 0;
    font-weight: 400;
}

nav {
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    position: fixed;
    bottom: 15px;
    z-index: 3;
}

nav li {
    float: left;
    margin-right: 40px;
    text-shadow: 1px 1px #ccc;
}

.nav-indent {
    display: block;
    margin-top: 15px;
}

nav img {
    margin-top: 15px;
    margin-left: 10px;
    margin-right: -20px;
}

#nav-contact {
    margin-top: 100px;
}

#nav-about {
    margin-top: 400px;
}

.h2-body {
    margin-bottom: 180px;
    padding-top: 30px;
}

.work-image {
    width: 49%;
    float: left;
}

.work-image img {
    width: 100%;
    max-width: 315px;
    display: block;
}

.work-image a {
    opacity: .9;
}

.work-image a:hover {
    opacity: 1;
}

article {
    width: 100%;
    float: left;
}

article img {
    width: 100%;
}

article p a {
    text-decoration: underline;
}

.about-body {
    width: 96%;
    margin: 0 2%;
    letter-spacing: .5px;
    font-weight: 600;
    line-height: 140%;
}

.about-body a {
    text-decoration: underline;
}

.about-photo {
    display: none;
}

.contacticons {
    margin-right: 10px;
    margin-bottom: 20px;
}

.bottomspace {
    margin-bottom: 130px;
}

.contact-body {
    font-size: 1.6em;
}

.work-main-div {
    width: 100%;
    z-index: 1;
}

.work-main-div img {
    width: 100%;
}

.work-bottom-div {
    width: 100%;
    z-index: 1;
    clear: both;
}

.work-bottom-div img {
    width: 100%;
}

img.work-main-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.work-sub {
    width: 100%;
    max-width: 1000px;
    float: right;
}

.work-head {
    margin-left: 2%;
    margin-bottom: 0;
}

#work-body,
#work-body-top {
    width: 98%;
    margin-left: 2%;
    margin-right: 2%;
    float: left;
    display: block;
}

.padding-bottom,
.hidden-small-padding-bottom {
    padding-bottom: 200px;
}

.display-small-mobile {
    display: block;
}

/* image / theme backgrounds (ALL SIZES) */

.bcloser-main {
    background: url(../img/bcloser-1-back.png) repeat;
}

.bcloser-sub {
    background-color: #00b5a7;
    display: block;
    z-index: -1;
}

.crane-main {
    background: url(../img/crane-4.jpg);
}

.snow-main {
    background: url(../img/snow-1.jpg);
}

.soogar-main {
    background: url(../img/soogar-1-back.jpg) repeat;
}

.soogar-sub {
    background: url(../img/soogar-4-back.png);
}

.curio-main {
    background: url(../img/curio-1.jpg) repeat;
}

.threshold-main {
    background: url(../img/threshold-1.jpg) repeat;
}

.black-sub {
    background: #000;
}

.tonik-main {
    background: url(../img/tonik-1.jpg);
}

.tonik-sub {
    background: url(../img/tonik-5.jpg);
    background-size: cover;
}

.work-main {
    width: 100%;
    max-height: 780px;
    background-size: cover;
}

/* header defaults (mobile) */
.header-unit-logo,
.header-unit-mobile,
.header-unit,
video {
    display: none;
}

/* art requirement */
.art-main {
    background: url(../img/art-texture.jpg) repeat;
    background-size: cover;
    padding-top: 300px;
}

.art-main-div {
    margin-left: 7%;
    /*background: rgba(255,255,255,.5)*/;
    display: inline-block;
    padding: 2%;
    max-width: 60%;
    color:white;
}

.art-main-div h1 {
    margin: 0; 
    line-height: 100%;
}

.art-main-div h2 {
    font-size: 3em;
    margin: 0;
}

.art-about {
    display: flex; 
    width:100%
}

.art-about-body {
    flex: 1 1 50%; 
    padding: 40px 20px 40px 20px;
}

.art-about-body p {
    font-size: 2.2em;
}

.art-about-image {
    flex: 1 1 50%; 
    background: url(../img/about-portrait-art.jpg) no-repeat center/100%;
}


/* ===== Responsive Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* ===== Lightbox (Modal) ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 6px;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* Navigation buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  padding: 10px;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover, .close:hover {
  color: #ccc;
}



/* =========================
   SMALL (561px+)
   ========================= */

@media (min-width: 561px) {

    h1 {
        font-size: 6.3em;
        margin-bottom: 300px;
    }

    h2 {
        font-size: 5.5em;
        margin-bottom: 30px;
    }

    nav {
        font-size: 2.1em;
    }

    nav li {
        margin-right: 33px;
    }

    .work-image {
        width: 30%;
        margin-right: 2%;
        margin-bottom: 20px;
    }

    .about-body {
        width: 55%;
        margin-right: 2%;
    }

    .about-photo {
        display: block;
        width: 40%;
        height: 400px;
        float: right;
        background: url(../img/about-portrait.jpg) no-repeat;
        background-position: center;
        background-size: auto 100%;
    }

    article {
        width: 48%;
        margin-right: 2%;
    }

    .contact-body {
        font-size: 2.2em;
    }

    .work-main-div,
    .work-bottom-div {
        width: 100%;
        background-size: cover;
    }

    /* hidden-small ONLY hides in small range */
    .hidden-small {
        display: none;
    }
}

/* =========================
   MEDIUM (846px+)
   ========================= */

@media (min-width: 846px) {

    h1 {
        font-size: 7.5em;
    }

    h2 {
        font-size: 6.8em;
    }

    nav {
        font-size: 2.7em;
    }

    .work-image {
        width: 22.5%;
    }

    .about-body {
        font-size: 1.5em;
        font-weight: 500;
        letter-spacing: .5px;
    }

    article {
        width: 31%;
    }

    .work-sub {
        width: 65%;
    }

    #work-body,
    #work-body-top {
        width: 31%;
        position: fixed;
        top: 120px;
    }

    #work-body-top {
        top: 40px;
    }

    .work-main-div,
    .work-bottom-div {
        height: 600px;
        background-size: cover;
    }
}

/* =========================
   LARGE (1100px+)
   ========================= */

@media (min-width: 1100px) {

    #body-wrap {
        width: 95%;
        margin-left: 5%;
    }

    h1 {
        font-size: 9.6em;
    }

    h2 {
        font-size: 8.6em;
    }

    section {
        height: 100vh;
        width: 100%;
        clear: both;
        overflow: auto;
    }

    section:before {
        content: '';
        display: inline-block;
        height: 100%;
        margin-left: -.35em;
        vertical-align: middle;
    }

    .content-wrap {
        display: inline-block;
        margin-left: 2.5%;
        width: 95%;
        vertical-align: middle;
    }

    .work-sub {
        margin-left: 400px;
    }

    .work-main-div,
    .work-bottom-div {
        height: 680px;
    }

    header {
        background-color: #ffdc78;
        background-image: url(../img/sunset.png);
        background-position: center bottom;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 100vh;
    }

    /* large-only video system */
    #video-container {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
        z-index: 600;
    }

    video {
        position: absolute;
        z-index: 600;
        display: block;
    }

    video.fillWidth {
        width: 100%;
    }
}