@font-face {
    font-family: 'Oreon';
    src: url('./fonts/Oreon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manic';
    src: url('./fonts/MANIC.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ManicSketches';
    src: url('./fonts/MANIC-Sketches.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    
    --primary-color: #f0ba0f;
    --secondary-color: #c11700;
    --accent-color: #f0ba0f;
    --contrast-color: #509fac;
    --background-color: #FEF9E7;
    --text-color: #2C3E50;
    --footer-text-color: #c11700;
}


.screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}


.palette-2 {
    --primary-color: #5DADE2;
    --secondary-color: #C0392B;
    --accent-color: #2980B9;
    --contrast-color: #F39C12;
    --background-color: #EBF5FB;
    --text-color: #1B4F72;
    --footer-text-color: #C0392B;
}


.palette-3 {
    --primary-color: #F1948A;
    --secondary-color: #1B4F72;
    --accent-color: #C0392B;
    --contrast-color: #27AE60;
    --background-color: #FDEDEC;
    --text-color: #922B21;
    --footer-text-color: #1B4F72;
}


.palette-4 {
    --primary-color: #82E0AA;
    --secondary-color: #922B21;
    --accent-color: #229954;
    --contrast-color: #C0392B;
    --background-color: #EAFAF1;
    --text-color: #145A32;
    --footer-text-color: #922B21;
}


.palette-5 {
    --primary-color: #BB8FCE;
    --secondary-color: #D35400;
    --accent-color: #8E44AD;
    --contrast-color: #F39C12;
    --background-color: #F4ECF7;
    --text-color: #6C3483;
    --footer-text-color: #D35400;
}


.palette-6 {
    --primary-color: #F8C471;
    --secondary-color: #1B4F72;
    --accent-color: #D68910;
    --contrast-color: #2980B9;
    --background-color: #FEF5E7;
    --text-color: #935116;
    --footer-text-color: #1B4F72;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}


html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: aquavit, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    background: var(--background-color);
}


body::-webkit-scrollbar {
    display: none;
}


.vintage-deco {
    font-family: "new-astro-soft", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.text-outline {
    -webkit-text-stroke: 2px solid #010101;
    
    text-shadow: 
        -2px -2px 0 #010101,
         2px -2px 0 #010101,
        -2px  2px 0 #010101,
         2px  2px 0 #010101;
}
.thicker {
    font-weight: 700;
}
.oversized {
    font-size: 2em;
}

.BigLetter {
    font-weight: 700;
    -webkit-text-stroke: 2px solid #010101;
    
    text-shadow: 
        -2px -2px 0 #010101,
         2px -2px 0 #010101,
        -2px  2px 0 #010101,
         2px  2px 0 #010101;
}


.halftone-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('./images/overlay-halftone.jpg');
    background-repeat: repeat;
    background-size: auto;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
    mix-blend-mode: multiply;
}


.top-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    pointer-events: none;
}

.nav-left,
.nav-right {
    pointer-events: auto;
    font-size: 1.2rem;
    color: var(--text-color);
}

.nav-left {
    text-align: left;
}

.nav-right {
    text-align: right;
}


.placed-sticker {
    will-change: transform;
    user-select: none;
}

.placed-sticker img {
    user-select: none;
    -webkit-user-drag: none;
}

.manic-sketches.arrow-insta-left {
    position: absolute;
    font-size: 1.75em;
    margin-left: -1em;
    transform: rotate(84deg);
    margin-top: -1em;
    animation: bounce-diagonal-left 1.5s ease-in-out infinite;
}
.manic-sketches.arrow-insta-right {
    position: absolute;
    font-size: 1.75em;
    margin-left: 2.5em;
    transform: rotate(184deg);
    margin-top: -1.25em;
    animation: bounce-diagonal-right 1.5s ease-in-out infinite;
}
.insta_svg_link_wrapper {
      margin-left: 4em;
      position: relative;
}

.insta_svg_link_wrapper svg path {
    transition: fill 0.3s ease;
}

.insta_svg_link_wrapper:hover .manic-sketches,
.insta_svg_link_wrapper:hover .arrow-insta-right {
    color: var(--secondary-color);
}

.insta_svg_link_wrapper:hover svg path {
    fill: var(--secondary-color) !important;
}
.footer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--footer-text-color);
    padding: 4rem 10rem;
font-size: 5em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.manic-sketches.underline {
    font-size: 1.6em;
    margin-top: -.7em;
}

.loading_div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--background-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.loading_div.hidden {
    opacity: 0;
    pointer-events: none;
}
.comment-text {
    font-size: 2em;
}

#infinite-container {
    position: relative;
    width: 100%;
}

.cloned-section {
    position: relative;
}


.section {
    min-height: 80vh;
    display: flex;
    margin: 1.5em;
    border-bottom: 0px;
    padding: 0;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}


.landing-section {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    background-color: var(--background-color);
    transition: background-color 0.3s ease;
    margin: 0;
    border-bottom: 0px;
    padding: 0;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 0;
}
.landing-cat-wrapper {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    height: 100svh;
    z-index: 10;
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing-cat-wrapper.sticker-applied {
    opacity: 1;
    transform: scale(1);
}
.landing-cat-wrapper img {
    max-width: 25vw;
    max-width: 25svw;
}
.content-container {
    display: flex;
    flex-direction: column;    
    flex: 1;
    height: 100%;
    width: 100%;
    position: relative;
}
.landing-svg-wrapper {
    position: absolute;
    top: 0;
    flex: 1;
    opacity: .5;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
}

.landing-svg {
    z-index: 0;
    pointer-events: none;
}
.scroll-indicator {
    width: 7vw;
    width: 7svw;
    position: absolute;
    bottom: 5em;
    left: 15em;
}
.landing-svg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    
    object-fit: cover;
    transition: all 0.3s ease;
    
    border: none;
    outline: none;
}
.nav-center {
    display: none;
}
.feature-header {
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--text-color);
    background: var(--secondary-color);
    color: var(--background-color);
    flex-direction: column;
    font-size: 1.5rem;
    line-height: .8;
}

.landing-svg .dynamic-fill {
    transition: fill 0.3s ease;
}

.main-title {
    display: flex;
    flex-direction: column;
    font-size: 5em;
    line-height: .8;
    color: var(--accent-color);
    letter-spacing: 1ch;
    align-items: center;
}

.text-inside-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .4em;
}
.small_letter {
    position: absolute;
    z-index: 5;
    color: var(--secondary-color);
    transform: scale(1.1, 0.9);
}
.text_inside_letter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.special_inside_text {
  position: relative;
  color: var(--secondary-color);
  letter-spacing: 1ch;
}


.special_inside_text::before,
.special_inside_text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;         
}
.special_inside_text.last-text-margin {
    margin-right: -1ch;
}

.special_inside_text::before {
    -webkit-text-stroke: 18px #010101;
}


.special_inside_text::after {
    -webkit-text-stroke: 12px var(--accent-color);
}

.subtitle {
    font-size: 3rem;
    text-align: center;
    line-height: .8;
}

.description {
    font-size: 1.75rem;
    line-height: 0.9;
    letter-spacing: .5ch;
}

.grid_title {
    padding: .5em;
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.5em;
    line-height: .9;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--text-color);
}
.grid_image {
    padding-bottom: 0;
    margin-bottom: -8px;
}

.grid_text {
     font-family: "new-astro-soft", sans-serif;
    flex-grow: 1;
    padding: 1em;
    text-align: center;
    position: relative;
}

.grid_text p {
    transition: opacity 0.4s ease;
    opacity: 1;
}

.grid_text .show_on_hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1em;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.grid-item:hover .grid_text p {
    opacity: 0;
}

.grid-item:hover .grid_text .show_on_hover {
    opacity: 1;
}

.about-section {
    background-color: var(--background-color);
    margin: 0;
    border-top: 0;
    padding: 3em;
    min-height: 100vh;
    min-height: 100svh;
    min-width: 100vw;
    min-width: 100svw;
}
a.insta-link svg {
    max-width: 4em;
}
.main-text-block {
    color: var(--secondary-color);
    font-size: 7em;
    line-height: .8;
    display: flex;
    flex-direction: column ;
    align-items: center;
    gap: 0;
    text-transform: uppercase;
}

.main-text-block .text-line {
    display: inline-block;
    line-height: 1;
    position: relative;
}

.main-text-block .image-container {
    display: inline-block;
    height: .8em;
    line-height: .8;
    border: 2px solid var(--accent-color);
    border-radius: .15em;
    overflow: hidden;
    box-shadow: 4px 4px 0 0 var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-text-block .image-container:hover {
    transform: scale(1.15);
    box-shadow: 2px 2px 0;
}

.main-text-block .image-container img {
    height: 100%;
    width: auto;
    object-fit: contain;
    vertical-align: baseline;
}


body.image-expanded > *:not(.image-overlay):not(.expanded-image-container) {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

body:not(.image-expanded) > * {
    filter: none;
    transition: filter 0.3s ease;
}

.image-overlay,
.expanded-image-container {
    filter: none !important;
}

.content-container.text-inline-images {
    align-items: center;
    justify-content: center;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.four-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background-color: var(--text-color);
    gap: 2px;
}

.grid-item {
    background: var(--background-color);
    gap: 2px;
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
    justify-content: space-between;
}
.footer-special {
    font-size: 1.5rem;
    position: absolute;
    color: var(--accent-color);
    letter-spacing: normal;
    text-transform: none;
    bottom: 3em;
    right: 6.5em;
    transform: rotate(16deg);
}
.cello_main_titles {
    margin-top: 5rem;
    margin-bottom: 3em;
    width: 100%;
}
.events-section {
    background: var(--background-color);
    padding: 10em 0;
    align-items: center;
    max-width: 100vw;
}
.cello_titles_wrapper {

    display: flex;
    justify-content: center;
}

.events-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2rem;
    align-items: center;
}

.events-image {
    height: 65vh;
    width: 30vw;
    border: 2px solid var(--secondary-color);
    border-radius: 1em;
    box-shadow: 5px 5px 0 var(--secondary-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--background-color);
}
.candy-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--secondary-color),
        var(--secondary-color) 20px,
        transparent 20px,
        transparent 40px
    );
    pointer-events: none;
    z-index: 0;
}

.events-image .main-image {
    height: 75vh;
    margin-top: -5vh;
    position: relative;
    z-index: 1;
}
img.cello-decorative {
    position: absolute;
    max-width: 25vw;
}
.cello-decorative.presents {
    right: -7vw;
    bottom: -10vh;
    transform: rotate(-15deg);
    max-width: 18vw;
}
.cello-decorative.santa-1{
    left: -12vw;
    top: -2vh;
}
.cello-decorative.santa-2{
    right: -3vw;
    bottom: 0;
    max-width: 15vw;
}
.cello-decorative.ornament{
    left: -4vw;
    top: 5vh;
    transform: rotate(-25deg);
    max-width: 10vw;
}
img.cello-option-logo {
    height: 40vh;
    margin-top: -5vh;
    margin-left: 15%;
}
.cello_main_titles {
    margin-top: 5rem;
    margin-bottom: -10%;
    width: 110vw;
    transform: rotate(-3deg);
    background: var(--primary-color);
    color: var(--background-color);
    overflow: visible;
    height: 30vh
}
.left-tilt {
    transform: rotate(4deg);
}   
.events-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 10px;
    z-index: 100;
}
.cello-layout {
    display: flex;
    align-items: center;
    padding-bottom: 5em;
   gap: 10vw;
    position: relative;
    z-index: 1;
}
.cello-text {
    display: flex;
    flex-direction: column;
    gap: .5em;
    max-width: 40vw;
}
.events-title {
    font-size: 10vw;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    mix-blend-mode: difference;
}

.events-description {
    
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.events-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 0.5em;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
}

.events-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.gallery-section {
    background: var(--background-color);
    padding: 0;
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr 1fr 1fr .75fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 125vw;
    display: grid;
    position: relative;
    overflow: hidden;
    width: 100vw;
    width: 100svw;
}
.gallery-grid-abosolute {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding-left: 6rem;
    padding-right: 6rem;
    display: grid;
    position: absolute;
    inset: 0%;
    z-index: 10;
}
.back-around-message {
    width: 100%;
    margin-top: 5rem;
    text-align: center;
    font-size: 1.5rem;
}
.col-div{
    border-top: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    width: 100%;
    height: 100%;
}

.gallery-card {
    padding: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    will-change: transform;
    border: 1px solid var(--primary-color);
    background: var(--background-color);
}
.feature-call-out {
    font-size: 1.25rem;
    display: flex;
    position: absolute;
    color: var(--text-color);
}

.feature-call-out.about-call-out {
    top: -.6em;
    right: 10em;
}

.manic-sketches.about-arrow {
    transform: rotate(-25deg);
    margin-top: 10px;
}

.feature-call-out.handwritten.gallery-top-call-out {
    right: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}
.feature-call-out.handwritten.gallery-call-out {
    top: 90vh;
    top: 90svh;
    transform: rotate(-90deg);
    left: 4rem;
    font-size: 1.5em;
    gap: .5em;
}
.feature-call-out.handwritten.gallery-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    -webkit-text-stroke: 0px;
    text-stroke: 0px;
    top: 50%;
    text-shadow: initial;
    right: 5em;
    flex-direction: column;
    font-size: 1.5em;
    transform: rotate(17deg);
}
.manic-sketches.gallery-bottom-arrow {
    transform: rotate(45deg);
}
.manic-sketches.gallery-top-arrow {
    transform: rotate(-170deg);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card-1 {
    grid-column: 1;
    grid-row: 1;
}

.gallery-card-2 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-card-3 {
    grid-column: 3;
    grid-row: 1;
}

.gallery-card-4 {
    grid-column: 4;
    grid-row: 1;
}

.gallery-card-5 {
    grid-column: 1;
    grid-row: 2;
}

.gallery-card-6 {
    grid-column: 4;
    grid-row: 2;
}.gallery-title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.gallery-title {
    font-size: 20rem;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--background-color);
    text-align: center;
    -webkit-text-stroke: 3px var(--accent-color);
    text-stroke: 3px var(--accent-color);
    text-shadow: 4px 4px 0 var(--accent-color) ;
    letter-spacing: -0.02em;
}


.cta-section {
    background-color: var(--background-color);
    position: relative;
    margin: 0;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.grid_image img {
    width: 100%;
    border-top: 1px solid var(--text-color)
}


.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-links-grid a {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--secondary-color);
    color: var(--background-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: "new-astro-soft", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    position: relative;
    overflow: visible;
}

.contact-links-grid a::after {
    content: attr(data-display);
    position: absolute;
    font-family: 'Manic';
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: var(--background-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
    border: 2px solid var(--accent-color);
    box-shadow: 3px 3px 0 0 var(--accent-color);
}

.contact-links-grid a:hover::after {
    opacity: 1;
}


#infinite-container {
    position: relative;
    width: 100%;
}

.scroll-set {
    position: relative;
    width: 100%;
}


.dime-font {
    font-family: 'Oreon';
    font-weight: 700;
    font-style: normal;
}

.handwritten {
    font-family: 'Manic', 'Arial', sans-serif !important;
    font-weight: normal;
}

.manic-sketches {
    font-family: 'ManicSketches', 'Manic', 'Arial', sans-serif !important;
    font-weight: normal;
}


@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}


@keyframes bounce-diagonal-left {
    0%, 100% {
        transform: rotate(84deg) translate(0, 0);
    }
    50% {
        transform: rotate(84deg) translate(-8px, 8px);
    }
}

@keyframes bounce-diagonal-right {
    0%, 100% {
        transform: rotate(184deg) translate(0, 0);
    }
    50% {
        transform: rotate(184deg) translate(-8px, 8px);
    }
}

.flicker-dots {
    animation: flicker 2s linear infinite;
}

.flicker-dots:nth-child(1) {
    animation-delay: 0s;
}

.flicker-dots:nth-child(2) {
    animation-delay: 0.3s;
}

.flicker-dots:nth-child(3) {
    animation-delay: 0.6s;
}



.social-links-landing {
    position: absolute;
    bottom: 2em;
    right: 2em;
    z-index: 10;
}

.social-links-landing a {
    display: block;
}

.social-links-landing svg {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links-landing svg:hover {
    transform: scale(1.1);
}
