
:root {

    --bg: #ffffff;
    --muted: #6b6b6b;
    --black: #000000;
    --white: #ffffff;
    --container: 1200px;
    --btn-border-width: 4px;
    --btn-height: 56px;
    --btn-min-width: 220px;

    --art-pink: #f2619f;
    --art-yellow: #ffd166;
    --pro-blue: #6c97a2;
    --pro-green: #83c56e;
    --box-shadow-offset: 6px;
}


.theme-artistic {
    --bg: var(--art-pink);
}

.theme-professional {
    --bg: var(--pro-blue);
}


body::before,
body::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--art-yellow);
    opacity: 1;
    z-index: -1;
    
}
body::before {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}
body::after {
    width: 600px;
    height: 600px;
    bottom: -25px;
    right: -300px;
}


body {
    line-height: 1.4;
    background: #000;
    transition: background 240ms ease;
    position: relative;
    overflow-x: hidden;
}


.pink-layer {
    background: var(--bg);
    border-radius: 2rem;
    margin: 1rem;
    padding-bottom: 2rem;
    position: relative;

    z-index: auto;
    transition: background 240ms ease;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    width: 95%;
}

.site-header .brand {
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
}


.hero {
    padding: 6rem 0 3rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 20px 20px;
    border: 4px solid var(--black);
}

.hero-title {
    font-family: Oswald, Inter, sans-serif;
    font-weight: 700;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--black);
    font-size: clamp(48px, 12vw, 160px);
}

.hero-intro {
    max-width: 70ch;
    margin: 0;
    font-size: 1rem;
    color: var(--muted);
}

.cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.btn {
    border: var(--btn-border-width) solid var(--black);
    padding: 0 1.4rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-width: var(--btn-min-width);
    height: var(--btn-height);
    position: relative;
    box-shadow: var(--box-shadow-offset) var(--box-shadow-offset) 0 var(--black);
    transition: transform 180ms cubic-bezier(.2,.9,.2,1), box-shadow 180ms cubic-bezier(.2,.9,.2,1);
    will-change: transform, box-shadow;
    z-index: 1;
}

.btn--artistic {
    background: var(--art-yellow);
    color: inherit;
    border-radius: 0;
}

.btn--professional {
    background: var(--pro-blue);
    color: inherit;
    border-radius: 0;
}


.btn--artistic:hover,
.btn--artistic:focus {
    transform: translate(2px, 2px);

    box-shadow: var(--box-shadow-offset) var(--box-shadow-offset) 0 var(--black);
    background-color: var(--art-yellow);
    border-color: var(--black);
}

.btn--professional:hover,
.btn--professional:focus {
    transform: translate(2px, 2px);
    box-shadow: var(--box-shadow-offset) var(--box-shadow-offset) 0 var(--black);
    background-color: var(--pro-blue);
    border-color: var(--black);
}


.btn--artistic,
.btn--artistic:hover,
.btn--artistic:focus,
.btn--artistic:active,
.btn--artistic:visited,
.btn--artistic:focus-visible {
    background-color: var(--art-yellow) !important;
    background-image: none !important;
    color: inherit !important;
    border-color: var(--black) !important;
    font-size: 20px;
}

.btn--professional,
.btn--professional:hover,
.btn--professional:focus,
.btn--professional:active,
.btn--professional:visited,
.btn--professional:focus-visible {
    background-color: var(--pro-blue) !important;
    background-image: none !important;
    color: inherit !important;
    border-color: var(--black) !important;
    font-size: 20px;
}


.btn:active {
    transform: translate(0, 0);
    box-shadow: var(--box-shadow-offset) var(--box-shadow-offset) 0 var(--black);
}


.btn.active {
    transform: translate(-2px, -2px);
    box-shadow: 2px 2px 0 var(--black);
}


.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: calc(1rem - 1px);

}
.gallery-item img:not(.overlay-icon) {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
    border-radius: calc(0rem - 0px);
}

.gallery-item .overlay-icon {
    display: block;
    width: 64px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 200ms ease;
    font-size: 1.2rem;
    text-align: center;
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-item .overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}


.overlay-icon {
    width: 16px;
    height: auto;
    opacity: 0.8;
    margin: 0 auto;
}
.overlay-icon:hover {
    opacity: 0.8;
    transition: transform 200ms ease;
}


.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 4px solid var(--black);
    box-shadow: var(--box-shadow-offset) var(--box-shadow-offset) 0 var(--black);
    border-radius: calc(1rem - 1px);
    aspect-ratio: 1 / 1;
}
.gallery-item .label {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 0.3rem 0;
    text-align: center;
    font-weight: 900;
    z-index: 2;
}


.modal .modal-content {
    background-color: #000;
    color: #fff;
}
.modal .modal-body {
    position: relative;
    padding: 1rem;
    border: 4px solid var(--black);
    background: #000;
}


.modal-close-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    cursor: pointer;
    z-index: 10;
}


.carousel-control-prev,
.carousel-control-next {
    background: none;
    border: none;

    z-index: 2;
    pointer-events: auto;
}
.carousel-playpause {

    z-index: 3;
    pointer-events: auto;
}


.carousel.slide {

    max-height: 80vh;

}
.carousel-inner {
    height: 60vh;
    width: 100%;
}
.carousel-inner .carousel-item {

    text-align: center;
}
.carousel-control-prev img,
.carousel-control-next img {
    width: 40px;
    opacity: 0.7;
}
.carousel-control-prev:hover img,
.carousel-control-next:hover img {
    opacity: 1;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}


.carousel-playpause {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 32px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}
.carousel-playpause:hover {
    opacity: 1;
}


.carousel-inner {
    background-color: #000;
}

/* unscaled images for the special MITSUKI slideshow */
.no-scale {
    width: auto !important;
    max-width: none !important;
    height: auto !important;
}


.carousel-inner .carousel-item img {
    margin: 0 auto;
    max-height: 60vh;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
}


.carousel-counter {
    font-size: 0.9rem;
    bottom: 0.5rem;
    left: 0.5rem;
    right: auto;
}


h2,
.hero-title {
    font-weight: 900;
}


.about-section {
    background: rgba(255,255,255,0.25);
    margin-top: 3rem;
    padding: 2rem 0;
}
.about-heading {
    text-transform: lowercase;
    margin-bottom: 1rem;
}
.about-text {
    max-width: 70ch;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
}


#toggle-container {
    display: grid;
    position: relative;
    overflow: hidden;
}

#artistic-content,
#professional-content {
    grid-area: 1/1;
    transition: transform 0.6s ease, opacity 0.6s ease;
}


#professional-content {
    transform: translateX(100%);
    opacity: 0;
}


#toggle-container.show-professional #artistic-content {
    transform: translateX(-100%);
    opacity: 0;
}

#toggle-container.show-professional #professional-content {
    transform: translateX(0);
    opacity: 1;
}


.vertical-line {
    width: 2px;
    height: 60vh;
    background: var(--black);
    margin: 3rem auto;
}

/* footer styling */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 2rem 0;
}
.site-footer a {
    color: var(--white) !important;
    text-decoration: underline;
}