@charset "utf-8";

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* background-color: hsl(0, 0%, 80%); */
}

body {
    margin: 0;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-size: 36px;
    padding-top: 30px;
    padding-left: 0%;
    padding-right: 0%;
    padding-bottom: 0;
    overflow-x: hidden;
    text-align: left;
    /* color: ; */
}

a:link,
a:visited {
    text-decoration: none;
    color: black;
    cursor: crosshair;
}

/*
       ___
   ___/   \___
  /   '---'   \
  '--_______--'                     Top Area
      /   \
     /     \
    /       \
   /         \
  /           \
   \__/        \
  (oo)\_______
  (__)\       )\/\
      ||----w |
      ||     ||
*/
/* Navbar */
.cnavbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background-color: #ffffff;
    width: 100%;
}

.navbar {
    background-color: #ffffff;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-auto-rows: auto;
    align-items: top;
    z-index: 5;
    padding-bottom: 0px;
    padding-top: 0px;
    font-size: .75em;
    overflow: hidden;
    max-width: 100vw;
    /* color: hsl(0 0 50); */
    /* border-bottom: 1px solid black; */
}

.clogo {
    object-fit: cover;
    overflow: hidden;

}

.logo {
    height: 50px;
    width: auto;
    max-height: 100%;
    vertical-align: middle;
    padding-right: 5px;

}

.home {
    display: flex;
    align-items: center;
}

.shop {
    color: hsl(0, 0%, 80%);
    transition: opacity 0.3s ease;
}

.pro {
    cursor: crosshair;
}

.contact {
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    z-index: 10002;
}

/* Contact text - always visible by default */
.contact-text {
    opacity: 1;
    visibility: visible;
    display: inline-block;
    color: inherit;
}

/* Contact icons - hidden by default */
.contact-icons {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    opacity: 0;
    align-items: start;
    pointer-events: none;
}

/* Desktop ONLY (>1200px): Enable hover effect to show icons */
@media (min-width: 1201px) and (hover: hover) {
    .contact:hover .contact-text {
        opacity: 0;
    }

    .contact:hover .contact-icons {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }
}

/* Mobile (<=1200px): Force contact-text visible, disable all hover effects */
@media (max-width: 1200px) {
    .contact-text {
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-block !important;
        color: inherit !important;
    }

    /* Kill hover effect completely on mobile */
    .contact:hover .contact-text,
    .contact:active .contact-text,
    .contact:focus .contact-text {
        opacity: 1 !important;
        visibility: visible !important;
        color: inherit !important;
    }

    .contact-icons,
    .contact:hover .contact-icons,
    .contact:active .contact-icons,
    .contact:focus .contact-icons {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.ctcicon {
    display: block;
    width: auto;
    height: 19px;
    padding-top: 5px;
    margin-right: 40px;
}

/*
       ___
   ___/   \___
  /   '---'   \
  '--_______--'                       Main Content
      /   \
     /     \
    /  \O/  \
   /  |   |  \
  //          \\
   \__/        \\
  (oo)\_______
  (__)\       )\/\
      ||----w |
      ||     ||
*/
/* body */
h1 {
    font-size: 8em;
    font-weight: 500;
    margin-left: -21px;
    margin-top: -10px;
    margin-bottom: 0px;
    line-height: 1;
    padding-bottom: 18px;

    /* P5 Texture Support */
    position: relative;
    z-index: 1;
    color: #000000;
    /* Solid Black for Masking */
}

/*                                                  Responsive */
@media (max-width: 1200px) {
    h1 {
        font-size: 6em;
        margin-top: -28px;
        margin-bottom: -10px;
        padding-left: 5px;
    }

    .ctcicon {
        margin-right: 20px;
    }

    .cfooter {
        flex-direction: column;
    }

    .footer1,
    .footer2 {
        width: 100%;
    }

    .ctext2 {
        grid-column: 2 / -1 !important;
    }

    /* Hero mobile fix - remove the -10vh pull-up */
    .home-hero {
        margin-top: 0 !important;
        aspect-ratio: 4 / 3;
        width: 100%;
        max-width: 100vw;
    }

    .home-page .imgdisplay>.cimg3:first-child {
        margin-top: 0 !important;
        aspect-ratio: 4 / 3;
        width: 100%;
    }
}

@keyframes h1-scroll {
    0%, 10% {
        transform: translateX(0);
    }
    45%, 55% {
        transform: translateX(calc(-100% + 100vw));
    }
    90%, 100% {
        transform: translateX(0);
    }
}

@media (max-width: 800px) {
    h1 {
        font-size: 3em;
        margin: -12px 0 -10px -10px;
        display: inline-block;
        white-space: nowrap;
        animation: h1-scroll 8s ease-in-out infinite;
    }

    .h1-::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, and Opera */
    }

    .ctcicon {
        margin-right: 10px;
    }

    .text {
        font-size: .75em;
    }

    .h2 {
        font-size: 2em !important;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .h2::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, and Opera */
    }

    .contact-text {
        opacity: 1 !important;
        display: inline-block !important;
    }

    .cta {
        font-size: 1em !important;
        padding: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .ctext2 {
        grid-column: 1 / -1 !important;
        padding-left: 10px !important;
    }

    .cmain {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }

    .footer2 {
        display: none;
    }
}

.h2 {
    font-size: 4em;
    /* line-height: 1; */
    grid-column: 1 / -1;
    line-height: 1;
    padding-bottom: 10px;
}

.cmain {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* grid-row-gap: 1em; */
    /* grid-gap: 1em; */
}

.fly:link,
.fly:visited {
    cursor: url('assets/pointer.png'), auto;
}

.c1 {
    background: #d0ff00;
}

.cimg1 {
    width: 100%;
    margin: -10vh 0 0 0;
    /* Use viewport height for visual centering */
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    /* Optional placeholder bg */
}

.c2 {
    /* border: 1px solid black; */
    /* background: #d0ff00; */
    /* background: hsl(0, 0%, 95%); */
    outline: 1px solid hsl(0, 0%, 80%);
}

.cimg2 {
    height: 40vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.cimg2.art-card {
    aspect-ratio: 16 / 9;
    height: auto;
}

.cimg2-2 {
    height: 40vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.img1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Shift focus slightly higher to compensate for navbar */
    display: block;
}

.title {
    /* border-top: 1px solid black; */
    height: auto;
    padding-top: 8px;
    padding-left: 8px;
    padding-bottom: 3px;
    /* color: hsl(0 0 50); */
    /* font-size: 1em; */
    /* font-weight: bold; */
    /* font-family: "minion pro condensed"; */
}

.ctext {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.text {

    /* margin-bottom: -20px; */
    grid-column: 1 / -1;
    padding-top: 1em;
    padding-bottom: 1em;
    /* width: 50%; */
    /* padding-left: 25%; */
}

.ctext2 {
    grid-column: 2 / 4;
    /* padding-right: 25%; */
    padding-left: 3px;
    padding-top: 5px;
}

.text2 {
    margin-top: -1em;
    margin-bottom: .75em;
    font-size: .5em;
    /* background-color: #d0ff00; */
    /* text-align: center; */
    /* width: 50%; */
    margin-right: 3em;
}


.tags {
    /* border-top: 1px solid black; */
    font-size: .5em;
    height: auto;
    /* padding-top: 5px; */
    padding-left: 8px;
    padding-bottom: .75em;
    color: hsl(0 0 60%);
    /* border-bottom: 2px solid black; */
}

.tags2 {
    padding-top: -2em;
    padding-left: 2px;
    /* text-align: center; */
    color: hsl(0, 0%, 50%);
    /* background-color: #d0ff00; */
}

.video1 {
    width: 100%;
}

.video2 {
    max-height: 300px;
    width: auto;
}

.cig {
    display: flex;
    flex-direction: column;
}

.cig2 {
    display: grid;
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-auto-rows: auto;
    padding-top: 1em;
    gap: 0px;
}

.letters-grid,
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0px;
}

.section {
    width: 100%;
    /* Ensures each section takes full width */
}

.ig {
    aspect-ratio: 1;
    background: #f5f5f5;
    border: 1px solid #ccc;
    overflow: hidden;
    transition: all 0.3s ease;
}


.ig video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#myVideo::-webkit-media-controls {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#myVideo:hover::-webkit-media-controls {
    opacity: 1;
}


/* main content */
.imgdisplay {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    /* background-color: hsl(0, 0%, 95%); */
    /* margin-top: 50px; */
}

.cimg3 {
    display: flex;
    grid-column: 1 / -1;
}

.home-page .imgdisplay>.cimg3:first-child {
    width: 100%;
    margin: -10vh 0 0 0;
    /* Use viewport height for visual centering */
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    /* Optional placeholder bg */
}

.img3 {
    width: 100%;
}

/* Small image container - for images smaller than 1920x1080 */
.small-image-container {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1920px;
    height: 1080px;
    max-width: 100%;
}

.small-image-container .img3 {
    width: auto;
    height: auto;
    display: block;
}

.imgdisplay>.cimg3:first-child .img3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Shift focus slightly higher to compensate for navbar */
    display: block;
}

.cimg4 {
    display: flex;
    grid-column: span 2;
}

.img4 {
    width: 100%;
}

.cimg5 {
    width: auto;
    padding: 50px;
}

/*
       ___
   ___/   \___
  /   '---'   \
  '--_______--'                    Image Viewers
      /   \
     /     \
    /  \O/  \
   /  |   |  \
  //          \\
   \__/        \\
  (oo)\_______
  (__)\       )\/\
      ||----w |
      ||     ||
*/
/* imagestrip */
.imagestrip-wrapper {
    display: flex;
    align-items: center;
    grid-column: 1 / -1;
    width: 100%;
    position: relative;
    background-color: hsl(0, 0%, 90%);
}

.imagestrip-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* scroll-snap-type: x mandatory; */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar in IE/Edge */
}

.imagestrip-wrapper.centered {
    justify-content: center;
}

.imagestrip-wrapper.centered .imagestrip-container {
    flex: 0 1 auto;
    /* Don't stretch to fill */
}

.imagestrip-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in Webkit browsers (Chrome, Safari, etc.) */
}

.imagestrip-track {
    display: flex;
}

.imagestrip-track img {
    scroll-snap-align: start;
    max-width: auto;
    flex-shrink: 0;
    box-sizing: border-box;
    max-height: 300px;
}

.imagestrip-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 0 0px;
    /* Add margin between buttons */
    cursor: pointer;
}

.imagestrip-prev {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.imagestrip-next {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* image preview */
.image-preview-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

.image-preview {
    max-width: 87%;
    max-height: 87%;
}

.image-preview-container.show {
    visibility: visible;
    opacity: 1;
}

/* Previous Arrow */
.prev-arrow,
.next-arrow {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    background-color: hsl(0, 0%, 0%);
    border-radius: 50%;
    cursor: pointer;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/*
       ___
   ___/   \___
  /   '---'   \
  '--_______--'                     Lower Area
      /   \
     /     \
    /  \O/  \
   /  |   |  \
  //          \\
   \__/        \\
  (oo)\_______
  (__)\       )\/\
      ||----w |
      ||     ||
*/
/* cta */
.cta {
    display: block;
    /* background-color: hsl(0, 0%, 80%); */
    /* color: #ffffff; */
    width: auto;
    height: 100vh;
    /* padding: 25%; */
    font-size: 2em;
    align-content: center;
    justify-content: center;
    text-align: center;
}

/* Contact Overlay (Mobile Popup) */
.contact-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: hsla(0, 0%, 100%, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
}

.contact-overlay.show {
    display: flex;
}

/* Hide other navbar items when overlay is shown (keep layout, hide content) */
body.overlay-active .home,
body.overlay-active .pro,
body.overlay-active .shop {
    visibility: hidden;
}

.contact-overlay-icons {
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.contact-overlay-icons .ctcicon {
    width: auto;
    height: 56px;
    margin: 0;
    padding: 10px;
}

/* Legacy overlay (unused, kept for compatibility) */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 90%);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.overlay #ccontact {
    display: flex !important;
    gap: 20px;
    flex-direction: row;
}

/* footer */
.cfooter {
    font-size: .5em;
    display: flex;
    /* grid-template-columns: 3fr 1fr; */
    /* display: flex; */
    /* border-top: 1px solid black; */
    padding-top: 1px;
    padding-left: 5px;
    padding-bottom: 2px;
    align-items: last baseline;
}

.footer1 {
    flex: 3;
}

.footer2 {
    flex: 1;
    padding-top: 0;
}

/* Arrow Icon */
.arrow-icon {
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.33);
}

/* Hover and Active Styles */
.prev-arrow:hover,
.next-arrow:hover {
    transform: scale(1.1);
    /* Add a scale transformation to increase size on hover */
    transition: transform 0.3s ease;
    /* Add a transition for smooth animation */
}

.arrow-icon:active {
    color: hsl(0, 0%, 100%);
}

.cimg2 .img1.woi {
    display: none;
    /* Initially hide the "working on it" image */
}


/* Photography Page */
.photography {
    width: 100vw;
}

.photography2 {
    width: 33.333vw;
    height: auto;
}

/* .rowdiv {
    grid-template-columns: 33% 33% 33%;
} */

.picdiv {
    display: flex;
    align-items: center;
    /* Centers items vertically */
    justify-content: center;
    /* Centers items horizontally */
}

/* Homepage Hero Showcase */
.home-hero {
    width: 100%;
    margin: -10vh 0 0 0;
    /* Use viewport height for visual centering */
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    background-color: #f0f0f0;
    /* Optional placeholder bg */
}

.home-hero-track {
    width: 100%;
    height: 100%;
}

.home-hero-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.home-hero-slide.is-active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Shift focus slightly higher to compensate for navbar */
    display: block;
}

/* CTA Container for WebGL */
.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Cinematic ratio */
    background-color: #ffffff;
    /* White background */
    color: #ffffff;
    /* White text for difference blend mode */
    overflow: hidden;
    padding-top: 15vh;
    /* Added padding for fade breathing room */
    margin-top: 10vh;
    /* White space separator */

    /* Top Fade via Mask - Logarithmic Curve (Shortened) */
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            transparent 4%,
            rgba(0, 0, 0, 0.1) 8%,
            rgba(0, 0, 0, 0.4) 12%,
            black 20%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            transparent 4%,
            rgba(0, 0, 0, 0.1) 8%,
            rgba(0, 0, 0, 0.4) 12%,
            black 20%);
}

.cta span,
.cta div {
    mix-blend-mode: difference;
    position: relative;
    z-index: 10;
}