/*main styles*/
@font-face {
    font-family: 'Gordita';
    src: url('../fonts/Gordita-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gordita';
    src: url('../fonts/Gordita-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gordita';
    src: url('../fonts/Gordita-Light.otf') format('opentype');
    font-weight: light;
    font-style: normal;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'TenezTest';
    src: url('../fonts/TenezTest-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --Gordita: 'Gordita', sans-serif;
    --TenezTest: 'TenezTest', serif;
}

body {
    background-color: black;
    background-image: url('../images/home-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: var(--Gordita);
    font-size: 16px;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 9;
  transform: translateX(-50%);
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.align-center {
    align-items: center;
}

.lyrics { gap: 5rem; }

.header-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    /*    background-color: black;*/
}

.header {
    display: flex;
    align-items: center;
/*    justify-content: center;*/
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 0.25rem 1rem;
    color: white;
}

.logo {
/*    margin-inline: auto;*/
}
.menu-right { gap: 2rem; }
/*.hamburger { display:none; }
.mobile-menu {}*/

.header a,
.header a:hover {
    text-decoration: none;
}

.header a {
    color: #fff;
    font-size: 16px;
}
.header a:hover,
.header a:focus {
    color: antiquewhite;
}
.sound {
    color: white;
    gap: 0.25rem;
}

.sound input {
    appearance: none;
    background-color: transparent;
    border: 0 none;
    color: white;
    /*    font-size: 18px;*/
}

.sound label {
    display: inline-block;
    width: 48px;
    height: 22px;
    border: 1px solid whitesmoke;
    border-radius: 22px;
    cursor: pointer;
}

.sound label span {
    width: 16px;
    height: 16px;
    display: block;
    background: whitesmoke;
    border-radius: 50%;
    margin: 2px;
    transition: transform 300ms ease-out;
}

.sound input:checked+label span {
    transform: translateX(26px);
}

.homepage-bg {
    min-height: 100vh;
    padding: 6rem 4rem 0;
    /*background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;*/
}

.fold-one {
    max-width: 1150px;
    margin: auto;
}

.fold-one .title {
    color: white;
    font-size: 60px;
    font-family: var(--TenezTest);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    text-shadow: 4px 4px 0 rgba(100, 100, 90, 0.5);
}

.fold-one .subtitle {
    font-family: var(--Gordita);
    font-size: 36px;
    line-height: 42px;
    color: white;
}

.fold-two {
    position: absolute;
    bottom: 0;
    left: 5rem;
    right: 5rem;
}

.fold-two .title {
    font-family: var(--TenezTest);
    font-size: 112px;
    color: white;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    z-index: 2;
}

#c {
    max-width: 550px;
    max-height: 650px;
    height: 50vh;
    margin: auto;
    display: block;
/*    outline: whitesmoke 1px dashed;*/
    /*background: rgba(25, 50, 100, 0.25);*/
    position: relative;
    z-index: 5;
}

.fold-two .click { position: absolute; width: 128px; top: 25%; left: 30%; z-index: 5; }
.fold-two .click img { transform: scale(1.0); transition: transform 200ms ease-in; }
.fold-two .click:hover img { transform: scale(1.1); }

.gallery-bg {
    background-image: url('../images/gallery-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4rem 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gallery-wrapper {
    width: 100%;
    /*    padding-top: 3rem;*/
    padding-block: 7vh;
    padding-inline: 2rem;
    /*    padding-bottom: 3rem;*/
    font-family: var(--Gordita);
    background: url('../images/reel-new.png') no-repeat center;
    background-size: cover;
}

.camera-frame {
    background: url('../images/Camera.png') no-repeat center;
    background-size: cover;
    /*width: 100vw; height: 100vh;*/
    position: fixed;
    inset: 0;
    /*    user-select: none;*/
    pointer-events: none;
}

.gallery-wrapper figure {
    padding: 0 0.5rem;
    margin: 0;
    text-align: center;
}

.gallery-wrapper figure a,
.gallery-wrapper figure img {
    max-height: 360px;
    display: block;
    margin: auto;
}

.modal-container {
    background: white;
    background-size: cover;
    position: relative;
    font-family: var(--Gordita);
    border-radius: 1rem;
    padding-inline: 0.4rem;
}

.modal-header,
.modal-body {
    /*color: #fff;*/
}

.modal-header {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.modal-close { font-size: 24px; }

.modal-body {
    /*margin: 0 0 0;
    padding: 0.8rem 0.4rem;*/
}

.modal-image { margin: 0; }
.modal-text { padding: 1.5rem 1rem; color: black; }

.modal-body h1 { font-family: var(--TenezTest); font-size: 60px; line-height: 72px; font-weight:900; }
.modal-body h2 { font-family: var(--Gordita); font-size: 2.5rem; line-height: 1.2; margin-bottom: 0.25rem;}
.modal-body h3 { font-family: var(--Gordita); font-size: 36px; line-height:42px; }

.loader { position: fixed; inset:0; background-color: rgba(101, 21, 16, 0.99); z-index: 91; }
.loader svg { position: absolute; inset:50%; z-index: 92; transform: translate(-50%, -50%); }
.modal-body p { font-size: 16px; }

@media screen and (orientation: landscape) {

    @media (max-width: 1440px) {
        .gallery-bg {
            padding-left: 4rem;
            padding-right: 4rem;
        }
    }

    @media (max-width: 1140px) {
        .homepage-bg { padding-inline:2rem; }
        #c { height:45vh; }
    }
    @media (max-width:940px) {
        .header-wrapper { position: relative; }
        .menu-right { gap: 1rem; }
        .menu-right a,
        .header a { font-size: 14px; }
        .homepage-bg { padding-top:1rem; padding-bottom: 0.5rem; }
        .fold-one, .modal-text { font-size: 2vw; }
        .fold-one .title, .modal-body h1 { font-size: 2.25em; line-height:1.2; }
        .fold-one .subtitle, .modal-body h3 { font-size: 1.25em; line-height: 1.2; margin-bottom: 0.25rem; }
        .modal-body p { font-size: 1em; }
        .fold-one figure { max-width: 30em; margin-inline: auto; }
        .fold-two { position: relative; left: initial; right: initial; }
        #c { height:60vh; }
    }
}


@media screen and (orientation: portrait) {
    .gallery-bg { padding-inline: 3rem; background-image: url('../images/mobile-gallery-bg.jpg'); }
    .camera-frame { background-image: url('../images/camera-mobile.png'); }
    .modal-container { padding-block: 1rem; }
    .modal-image { width:100%; }
    @media (max-width: 920px) {
        .homepage-bg { padding-inline:2rem; }
        #c { max-width: 100%; height:45vh; }
        .gallery-bg { padding-inline: 2rem; }
    }
    @media (max-width: 600px) {
        .header { padding-inline: 0.5rem; }
        .header a, .menu-right { font-size: 10px; }
        .logo { max-width:25vw; }
        .menu-right { gap: 10px; flex: 0 1 60vw; }
        .menu-right a { text-align:center; }
        .sound { gap:0; text-align: center; }
/*        .sound label { width: 36px; }*/
.sound input:checked + label span { transform: translateX(100%); }
        .homepage-bg { padding: 5rem 1rem 1rem; }
        .fold-one .title { font-size: 44px; line-height:1.2; }
        .fold-one .subtitle { font-size: 16px; line-height:22px; }
        .fold-one figure { margin-inline:0; }
        .fold-two { left: 1rem; right: 1rem; }
        .fold-two .click { left: 0; }
        .gallery-bg { padding-inline: 0; }
        .gallery-wrapper { padding-inline: 0.25rem; }
        .modal-container { padding-block: 0.4rem; }
        .modal-container .modal-header { top: -1.4rem; padding: 0.25rem; color:whitesmoke; }
        .modal-close { float:right; margin-top: -5px; }
        .modal-container .modal-body { padding: 2px; }
        .modal-text { padding-inline: 0; padding-block: 1rem; }
        .modal-body h1 { font-size: 40px; line-height: 1.1; text-align:center; }
        .modal-body h2 { font-size: 1.5rem; line-height:1.1; text-align: center; }
        .modal-body h3 { font-size: 16px; line-height:1.2; text-align: center; }
        .modal-body p { font-size: 14px; }
        .lyrics { gap: 0.5rem; justify-content:space-between; }
    }
}