:root {
    --blue: #13143E;
    --white: #F3F3F1;
    --red: #600910;
    --beige: #EDD4B5;
    --black:#16171A;
    --light-blue:#C3D1E8;

    --primary: all-round-gothic, sans-serif;
    --secondary: fantabular-sans-mvb, monospace;
    --weight-regular: 400;
    --weight-bold: 700;
    
    --style-normal: normal;
    --style-italic: italic;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2 {
    font-family: var(--primary);
    font-weight: var(--weight-bold);
    font-style: var(--style-normal);

    
    margin-top: 0;
    margin-bottom: 0.5rem;
}
h1, h2{
    font-size: 3rem;
}

h3, h4, h5, h6{
    font-family: var(--primary);
    font-weight: var(--weight-bold);
    font-style: var(--style-normal);
}
p {
    font-family: var(--secondary);
    font-weight: var(--weight-regular);
    font-style: var(--style-normal);
    font-size: medium;
    color: var(--blue);
    white-space: normal;

}
body{
    background-color: var(--white)
}


a:link{
    text-decoration: none;
    font-size: medium;
    color: var(--white);
    max-width: 100%;
    white-space: normal;
}
a:visited{
    text-decoration: none;
    font-size: medium;
    color: var(--white);
    max-width: 100%;
    white-space: normal;
}
a:active{
    text-decoration: none;
    font-size: medium;
    color: var(--white);
    max-width: 100%;
    white-space: normal;
}
ul{
    list-style: none;
}


/*BACKGROUND COLORS*/
.white-theme {
    background-color: var(--white);
}
.white-theme h1 {
    color: var(--red);
}
.white-theme p {
    color: var(--blue);
}

.white-theme h2 {
    color: var(--red);
    font-size: 3.5rem;
}



.beige-theme {
    background-color: var(--beige);
}
.beige-theme h1 {
    color: var(--red);
}
.beige-theme p {
    color: var(--blue);
}



.black-theme {
    background-color: var(--black);
}
.black-theme h1 {
    color: var(--white);
}
.black-theme p {
    color: var(--white);
}



.light-blue-theme {
    background-color: var(--light-blue);
}

.light-blue-theme h1 {
    color: var(--red);
}

.light-blue-theme h2 {
    color: var(--red);
}

.light-blue-theme p {
    color: var(--blue);
}



/* HEADER */
.header{
    background-color: var(--black);
    position: relative;
    top: 0;
    width: 100%;
    min-height: 100px;
    z-index: 1000;

    
    font-family: var(--secondary);
    font-weight: var(--weight-regular);
    font-style: var(--style-normal);
    font-size: medium;
}

/* LOGO */
.logo{
    display: inline-block;
    line-height: 100px; 
    margin-left: 25px;
}

.logo-img-dark {
    height: 10vh; 
    width: auto; 
    vertical-align: middle; 
    float: left;    
}

.logo-img-light {
    height: 10vh; 
    width: auto; 
    vertical-align: middle; 
    float: left;    
}


.logo-img-light {
    display: none; 
}


@media (max-width: 768px) {

    .logo-img-dark {
        height: 10vh; 
        margin-top: 10px;
    }
}


/*Hamburger menu adapted from: https://blog.logrocket.com/create-responsive-mobile-menu-css-without-javascript/*/
/* NAV MENU */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    
}
.menu a{
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 1000;
    color: var(--white);
    transition:0.5s;
}

.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* MENU ICON */
.hamb{
    cursor: pointer;
    float: right;
    padding: 37px 20px;
    margin-top: 10px;
}/* Style label tag */

.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    width: 24px;
    position: relative;
} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;

}
.hamb-line::before{
    top: 6px;
}
.hamb-line::after{
    top: -6px;
}
/* Hide checkbox */
.side-menu {
    display: none;
} 

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}

@media (max-width: 767px) {
    .menu a{
        padding-bottom: 80px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 1.4rem;
        color: var(--white);
    }

}

@media (min-width: 768px) {
    .header {
        display: flex;
        align-items: center;
        position: relative; /* Needed for absolute positioning of nav */
      }

    .nav{
        max-height: none;
        top: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        float: none;
        width: fit-content;
        background-color: transparent;
        margin: 0 auto;
    }
    .menu li{
        float: left;
    }

    .hamb{
        display: none;
    }

    .header {
        display: flex;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px; 
    }

    .nav {
        order: 1; 
    }

    .logo-img {
        order: -2; 
    }

    .logo h2 {
        order: -1; 
    }
}


/*BUTTON 1*/
.button {
    display: inline-block;
    padding: 15px 40px;
    margin-top: 30px;
    font-size: 1rem;
    color: var(--white) !important;
    background-color: var(--red); 
    border-radius: 50px; 
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    font-family: var(--secondary);
    font-weight: var(--weight-regular);
    font-style: var(--style-normal);
    text-align: center;
}

.button:hover {
    transform: scale(1.05); 
}

.button:active {
    transform: scale(0.98); 
}



.button-beige {
    display: inline-block;
    padding: 15px 40px;
    margin-top: 30px;
    font-size: 1rem;
    color: var(--black) !important;
    background-color: var(--beige); 
    border-radius: 50px; 
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    font-family: var(--secondary);
    font-weight: var(--weight-regular);
    font-style: var(--style-normal);
    text-align: center;
}


.button-beige:hover {
    transform: scale(1.05); 
}

.button-beige:active {
    transform: scale(0.98); 
}



/*BUTTON 2 BLACK*/
.button-2-black {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 10%;
    margin-left: 30px;
    font-size: 1rem;
    color: var(--white) !important;
    cursor: pointer;
    transition: 
        background-color 0.3s ease-in-out, 
        color 0.3s ease-in-out, 
        border-color 0.3s ease-in-out,
        transform 0.2s ease-in-out;
    font-family: var(--secondary);
    font-weight: var(--weight-regular);
    font-style: var(--style-normal);
    border-bottom: 2px solid var(--white); 
    padding: 10px; 
    position: absolute;
}

.button-2-black:hover {
    background-color: var(--white); 
    color: var(--black) !important; 
}



/*HOME*/
.home-container {
    overflow: hidden;
}

.showcase {
    background-color: var(--black);
    padding: 2rem 0;
  }

.hero-section {
   display: flex;
   flex-direction: column;
   align-items: center;
   min-height: 100vh;
   padding: 2rem;
   position: relative;
}

.photo {
    display: flex;
    flex-direction: column;
  }
  
.photo1 {
    min-width: 300px;
    max-width: 40%;
    margin-top: 8%;
  }
  
.photo2 {
    min-width: 300px;
    max-width: 35%;
  }
  

.photo-pair-1 {
    display: flex;
    justify-content: center;
    gap: 10%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }


.photo3 {
    min-width: 300px;
    max-width: 37%;
  }
  
.photo4 {
    min-width: 300px;
    max-width: 45%;
    align-self: center;
  }
  

.photo-pair-2 {
    display: flex;
    justify-content: center;
    gap: 5%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }


.photo5 {
    min-width: 300px;
    max-width: 37%;
  }
  
.photo6 {
    min-width: 300px;
    max-width: 45%;
    margin-top: 10%;

  }
  
.photo-pair-3 {
    display: flex;
    justify-content: center;
    gap: 8%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .photo1,
  .photo3,
  .photo5 {
    align-self: flex-start;
  }
  
  .photo2,
  /* .photo4, */
  .photo6 {
    align-self: flex-end;
  }

  .photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .heading {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .heading h1 {
    font-family: var(--primary);
    font-weight: var(--weight-bold);
    font-size: clamp(3rem, 12vw, 9rem);
    color: var(--);
    margin: 0;
    color: var(--white);
  }


  .heading h2 {
    font-family: var(--primary);
    font-weight: var(--weight-bold);
    font-size: clamp(3rem, 12vw, 9rem);
    color: var(--white);
    margin: 0;
  }

.showcase:nth-of-type(2) .heading h2 {
    color: var(--light-blue);
  }


.showcase:nth-of-type(3) .heading h2 {
    color: var(--beige);
  }


  .photo-title, .photo-subtitle {
    color: var(--black);
    font-family: var(--secondary);
    margin: 0;
    text-align: left; 
    width: 60%;
  }
  
  .photo-title {
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .photo-subtitle {
    font-size: 0.7rem;
    font-style: italic;
    margin-top: 0.2rem;
  }


  .title-box {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    display: inline-flex; 
    justify-content: left; 
  }

  .plaque {
    width: 250px !important; 
    height: auto; 
    display: block;
    position: relative; 
    z-index: 1;
  }


  .text-on-plaque {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 1.5rem; 
    box-sizing: border-box;
  }


 .photo-link {
  display: flex;
  flex-direction: column;
  height: auto;
}

  .image-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  

  .photo1:hover .plaque,
  .photo3:hover .plaque,
  .photo5:hover .plaque {
    filter: drop-shadow(7px 7px 0px #000);
    transition: 0.3s;
  }
  
  .photo2:hover .plaque,
  .photo4:hover .plaque,
  .photo6:hover .plaque {
    filter: drop-shadow(-7px 7px 0px #000);
    transition: 0.3s;
  }



  .photo1:hover img,
  .photo3:hover img,
  .photo5:hover img {
    filter: drop-shadow(20px 20px 0px #000);
    transition: 0.3s;
  }
  
  .photo2:hover img,
  .photo4:hover img,
  .photo6:hover img {
    filter: drop-shadow(-20px 20px 0px #000);
    transition: 0.3s;
  }


  .spotlight1,
  .spotlight2,
  .spotlight3,
  .spotlight4,
  .spotlight5,
  .spotlight6 {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
  }
  
  .photo1 .spotlight1 {
    top: -115%;
    left: -115%;
    transform: rotate(225deg) scale(5.5);
  }
  
  .photo2 .spotlight2 {
    top: -70%;
    right: -160%;
    transform: rotate(315deg) scale(7.5);
  }
  
  .photo3 .spotlight3 {
    top: -45%;
    left: -120%;
    transform: rotate(225deg) scale(6);
  }
  
  .photo4 .spotlight4 {
    top: -170%;
    right: -120%;
    transform: rotate(315deg) scale(5.5);
  }
  
  .photo5 .spotlight5 {
    top: -130%;
    left: -105%;
    transform: rotate(225deg) scale(5);
  }
  
  .photo6 .spotlight6 {
    top: -140%;
    right: -115%;
    transform: rotate(315deg) scale(5.4);
  }
  
  .photo1:hover .spotlight1,
  .photo2:hover .spotlight2,
  .photo3:hover .spotlight3,
  .photo4:hover .spotlight4,
  .photo5:hover .spotlight5,
  .photo6:hover .spotlight6 {
    opacity: 0.3;
  }
  
  .photo:hover .photo-title {
    opacity: 1;
  }


  @media (max-width: 768px) {
    .photo-pair-1,
    .photo-pair-2,
    .photo-pair-3 {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .photo {
        max-width: 100% !important;
        margin-bottom: 3rem;
    }

    .photo1, .photo2, 
    .photo3, .photo4,
    .photo5, .photo6 {
        align-self: center;
    }

    .photo-title, .photo-subtitle {
        /*width: 40%;*/
        font-size: 0.8rem;
    }
  
    .plaque {
        width: 300px !important; 
    }
  }



/*DIVIDER*/
.wave-divider {
    background-size: cover;
    z-index: 1;
    margin-top: -5%;
    margin-bottom: -2%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.space {
    padding-top: 4%;
}

.more-space {
    padding-top: 8%;
}

@media (max-width: 768px) {
    .wave-divider {
        padding-top: 0;
    }
}


/*SELECTORS FOR SPECIFIC SECTIONS*/
.aki {
    flex-direction: row-reverse; 
    padding-right: 6%;
    gap: 7%; 
    height: 100vh;
    padding-top: 0;
}

.aki p:nth-child(1) { 
    margin-top: -3%;
}


.illu-1 {
    flex-direction: row; 
    padding-left: 6%;
    gap: 7%; 
    padding-bottom: 5% !important;

}

.illu-1 img {
    padding-bottom: 5% !important;
    max-width: 50% !important;
    height: 100vh!important;
    object-position: 72% 100% !important;   
}


.illu-2 {
    flex-direction: row-reverse; 
    padding-right: 6%;
    gap: 5%; 
    height: 100vh;
}


.illu-2 p {
    margin-top: -3% !important;
}

.illu-2 img {
    height: 90vh;
    max-width: 60% !important;
    gap: 5%; 
    margin-left: 3% !important;

}



/*SECTION TXT + IMG*/
.section-1 {
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 1;
}

.section-1-container {
    display: flex;
    align-items: center; 
    justify-content: right; 
    max-width: 100%;
    margin: 0;

    height: 90vh;
    overflow: hidden;
} 

 .section-1-container img {
    max-width: 50%; 
    height: auto;
    object-fit: cover;
    overflow: hidden; 
}

.section-1-box {
    width: 60%; 
    text-align: left;
    word-break: normal;
    padding-top: 2%;
}

.section-1-box p {
    margin-top: 7%;
    margin-left: 4%;
    max-width: 100%;
    line-height: 1.5;
}


.section-1-box .button{
    margin-top: 10%;
    margin-left: 5% !important;

}



@media (min-width: 1065px) {
.section-1-box .button {
    margin-bottom: 5%; 
}
}


@media (max-width: 1065px) {
    .section-1-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-left: 0; 
        max-width: 100%; 
        height: auto;   
        padding: 0;
    }


    .section-1-container h2 {
        padding-right: 4%;
    }
    .section-1-container p {
        padding-right: 4%;
    }

    .section-1-container img {
        max-width: 100%;
        width: 100%;
        object-position: 100% 40%;   
        height: 100vw;
        object-fit: cover;
        padding-right: 9%;
        padding-left: 9%;
    }

    .section-1-box {
        width: 100%;
        padding: 5%; 
    }


    .illu-1 img {
        width: 100%;
        max-width: 100% !important;
        margin-left: 0 !important;    
        height: auto !important;
        object-fit: contain;
    }


    .illu-2 p {
        padding-bottom: 3%;
    } 


    .illu-2 img {
        height: auto;
        width: 100%;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
}


@media (max-width: 768px) {
    .section-1-container img {
        max-width: 100%;
        width: 100%;
        object-position: 100% 40%;   
        height: 100vw;
    }

    .section-1-box h2 {
        margin-left: 4%;

    }


    .illu-2 img {
        height: auto;
    }

}



/*BLOG SECTION*/
.s-blog{  
    padding-bottom: 50px;
    z-index: 5 !important;
}


.blog-container {
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    max-width: 100%;
    margin: 0;
    padding-left: 6%;
    gap: 9%; 
    height: auto;
    overflow: hidden;
    z-index: 3 !important;

}


.blog-box {
    width: 60%; 
    text-align: left;
    word-wrap: break-word;
    padding-top: 2%;
    z-index: 3 !important;

}

.blog-box p {
    margin-top: 7%;
    margin-left: 4%;
    max-width: 100%;
    line-height: 1.3;
    color: var(--blue);
}


.blog-box h2 {
    color: var(--red);
    font-size: 2.5rem;
}



@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-left: 0; 
        max-width: 100%; 
        height: auto;   
    }

    .blog-container img {
        max-width: 100%;
        width: 100%;
        object-position: 100% 40%;   
        height: 80vw;

    }

    .blog-box {
        width: 100%;
        padding: 5%; 
    }
}



/*CONTACT*/
form {
    width: 100%;
    margin: 20px auto;
    padding-right: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
}

fieldset {
    border: none;
}

legend {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--primary);
    font-weight: var(--weight-bold);
    font-style: var(--style-italic);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

label {
    font-size: 1rem;
    color: var(--white);
    display: block;
    margin-top: 5%;
    font-family: var(--secondary);
    font-weight: var(--weight-regular);
    font-style: var(--style-normal);
    font-size: medium;
    max-width: 100%;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 0px;
    border-radius: 40px;
    font-size: 1rem;
    margin-top: 10px;
}




input[type="text"],
input[type="email"],
textarea {
    background-color: var(--white); 
    color: var(--blue); 
    border: 0px;
}



input:focus {
    outline: none;
    box-shadow: 0px 0px 5px rgba(19, 20, 62, 0.5);
}

input[type="submit"] {
    width: 50%;
    padding: 15px;
    margin-top: 8%;
    border: none;
    border-radius: 40px;
    background-color: var(--beige);
    color: var(--red);
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--secondary);
    font-weight: var(--weight-regular);
    font-style: var(--style-normal);
    max-width: 100%;
    display: block;
    margin-left: auto; 
    margin-right: auto; 
}


.name-container {
    display: flex;
    gap: 20px;
}

.name-container label {
    flex: 1;
    display: flex;
    flex-direction: column;

}


.contact-container {
    display: flex;
    flex-direction: row-reverse; 
    justify-content: center; 
    margin: 0;
    background-color: var(--black);
    gap: 7%; 
    padding-bottom: 5%;
}

.contact {
    font-size: 1.8rem;
    text-align: left;
    word-wrap: break-word;
    width: 750px;
}



@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        align-items: center; 
    }

    .contact-container img,
    .contact {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .name-container {
        flex-direction: column;
        gap: 0;
    }
}


@media (max-width: 700px) {
    .contact {
        width: 600px;
}
}


@media (max-width: 540px) {
    .contact {
        width: 500px;
}
}


@media (max-width: 420px) {
    .contact {
        width: 400px;
}
}

@media (max-width: 330px) {
    .contact {
        width: 300px;
}
}


textarea {
    width: 100%;
    height: 100px; 
    padding: 15px;
    border: 0px;
    border-radius: 20px;
    font-size: 1rem;
    resize: vertical;
    background-color: var(--white);
    color: var(--blue);
    min-height: 100px;
    margin-top: 10px;

}


textarea:focus {
    border-color: var(--red);
    outline: none;
    box-shadow: 0px 0px 5px rgba(19, 20, 62, 0.5);
}


section {
    position: relative;
}



/*AKIMIRKA*/
.aki-wrapper {
    height: 100vh;
    overflow-y: auto;
    width: 100%;
}


.aki-parallax__layer {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
  

.aki-parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
  
.aki-background {
    background: url('../img/exhibitions/MariusCirba-Akimirka-1.JPG') no-repeat center;
    background-size: cover;
    z-index: 1;
    top: 0;
    position: absolute;
    height: 110vh;
    background-color: var(--white);
    opacity: 0.7;
}

  
.aki-heading {
    font-size: 16rem;
    color: var(--blue);
    white-space: nowrap;
    position: fixed; 
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: overlay;
    z-index: 10; 
}





.aki-p-1 {
    position: absolute;
    z-index: 10;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding-left: 12%;
    top: 70%;
    
}

.aki-p-2 {
    position: absolute;
    z-index: 10;
    display: flex;
    width: 100%;
    justify-content: center;
    top: 70%;

}

.aki-p-3 {
    position: absolute;
    z-index: 10;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding-right: 12%;
    top: 70%;

}

.aki-p-1 p {
    font-size: 1.1rem;
}


.aki-p-2 p {
    font-size: 1.1rem;
}


.aki-p-3 p {
    font-size: 1.1rem;
}




@media (prefers-reduced-motion: no-preference) {
.aki-wrapper {
    perspective: 300px;
}

.aki-parallax {
    transform-style: preserve-3d;
}
  
.aki-background {
    transform: translateZ(60px) scale(1);
}

@media (max-width: 1200px) {
    .aki-text {
        top: clamp(40%, 70vh, 60%);
    }
}
}




@media (prefers-reduced-motion: reduce) {
.aki-heading {
    position: absolute; 
    z-index: 20;
}


  .aki-p-1,
  .aki-p-2,
  .aki-p-3 {
    position: absolute; 
    z-index: 20;
  }
  


  .aki-parallax {
    position: relative;
    height: 100vh;
    z-index: 1
  }


  .aki-background {
    height: 100vh;
    z-index: 1;
  }


  .aki-container {
    position: relative;
    height: 100vh;
    z-index: 10; 
  }
}



@media (max-width: 1200px) {
    .aki-text {
        top: clamp(40%, 70vh, 60%);
    }


    .aki-container {
        width: 100%;
        height: auto;
        min-height: 100vh;
        align-items: center;
        position: absolute;

    }

    .aki-heading {
        font-size: clamp(3rem, 20vw, 16rem);
        padding-left: 0;
    }


    .aki-heading h1 {
        padding-left: 0;
    }


    .aki-p-1 {
        top: 30%;
        padding-left: 90px;
    }

    .aki-p-2 {
        top: 60%;
    }

    .aki-p-3 {
        top: 30%;
        padding-right: 90px;
    }
}


@media (max-width: 1000px) {
    .aki-p-1 {
        top: 32%;
        padding-left: 8%;
    }

    .aki-p-2 {
        top: 58%;
    }

    .aki-p-3 {
        top: 32%;
        padding-right: 8%;
    }
}


@media (max-width: 700px) {
    .aki-p-1 {
        top: 37%;
        padding-left: 8%;
    }

    .aki-p-2 {
        top: 55%;
    }

    .aki-p-3 {
        top: 37%;
        padding-right: 8%;
    }
}


/*ILLUMINATIONS */
.illu-wrapper {
    height: 100vh;
    overflow-y: auto;
    width: 100%;
  }



  .illu-title {
    color: var(--white);
    font-size: 4.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    word-break:  normal;
    width: 100%;
    position: fixed; 
}



  .illu-content {
    text-align: center;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 45%;
    overflow: hidden;
  }


  .illu-content p {
    font-size: 1.2rem;
    color: var(--white);
    word-wrap: break-word;
    padding-top: 2%;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed; 
  }

  .illu-content p:nth-of-type(2) {
    top: 65%;
    max-width: 100%;
    width: 70%;
    height: auto;
}


  .illu-parallax__layer {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  

  .illu-parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  
  .illu-background {
    background: url('../img/exhibitions/MariusCirba-Illuminations-1.jpg') no-repeat center;
    background-size: cover;
    z-index: 1;
    top: 0;
    object-position: bottom;
    position: absolute;
    height: 110vh;
  }


@media (prefers-reduced-motion: no-preference) {
.illu-wrapper {
    perspective: 300px;
  }

.illu-parallax {
    transform-style: preserve-3d;
  }
  
.illu-background {
    transform: translateZ(60px) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
    .illu-title {
        position: relative;
    }
    
    .illu-content p {
        position: relative;
    }

    .illu-content {
        position: relative;
    }

    .illu-parallax {
            margin-top: -20%;
        }
}


@media (max-width: 1000px) {

    .illu-title {
        font-size: clamp(3.8rem, 7vw, 4.5rem);
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (max-width: 832px) {
    .illu-content p {
        padding-top: 2%;
        top: 61%;
      } 

      .illu-content p:nth-of-type(2) {
        top: 70%;
    }
}


@media (max-width: 635px) {
      .illu-content p:nth-of-type(2) {
        top: 73%;
    }
}

@media (max-width: 425px) {
    .illu-title {
        font-size: clamp(2.8rem, 8vw, 3.8rem);
    }

    .illu-content p {
        top: 63%;
      } 

    .illu-content p:nth-of-type(2) {
      top: 80%;
  }
}


.s-illu-2{  
    padding-bottom: 50px;
    background-color: var(--blue);
    z-index: 5;
    color: var(--white);
}

.s-illu-2 img {
    width: 100%;
}


.illu-2-container {
    max-width: 100%;
    margin: 0;
    color: var(--white);
}

.illu-2-container p {
    color: var(--white);
}

.s-illu-2 h2 {
    text-align: center;
    font-size: 4.5rem;
    padding-top: 10%;
}

.p-i-1 {
    padding-left: 28%;
    padding-top: 20px;
    padding-bottom: 4%;
    width: 75%;
}


.illu-box1 {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding-bottom: 6%;
}

.illu-box1 img {
    height: 100vh;
    width: auto;
}


.illu-box1 p {
    width: 40%;

}


.illu-box2 {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    justify-content: right;
    padding-bottom: 5%;
}


.i-img-1 {
    max-width: 30%; 
    height: 50vh;
    object-fit: cover;
    overflow: hidden;
    object-position: 60% 100%;   
}


.i-img-2 {
    max-width: 35%;
    height: 65vh;
    object-fit: cover;
    overflow: hidden;
    object-position: 60% 100%;   
    margin-top: -20%;
}


.p-i-2 {
    padding-top: 20px;
    padding-bottom: 4%;
    width: 25%;
}


.illu-box3 {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    justify-content: left;
    padding-bottom: 5%;
}


.p-i-3 {
    padding-left: 6%;
    width: 38%;
}


.i-img-3 {
    max-width: 38%;
    height: 100vh;
    object-fit: cover;
    overflow: hidden;
    object-position: 15% 100%;   
}


.illu-box4 {
    display: flex;
    flex-direction: row-reverse;
    gap: 100px;
    align-items: center;
    justify-content: center;
    justify-content: left;
    padding-bottom: 5%;
}

.p-i-4 {
    width: 29%;
}

.i-img-4 {
    max-width: 45%; 
    height: 60vh;
    object-fit: cover;
    overflow: hidden;
    object-position: 15% 20%;   
    margin-top: -12%;
}


.illu-box5 {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
    padding-bottom: 5%;
}

.p-i-5 {
    width: 26%;
    margin-top: -5%;
}

.i-img-5 {
    max-width: 50%; 
    height: 50vh;
    object-fit: cover;
    overflow: hidden;
    object-position: 15% 60%;   
}


.illu-box6 {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
    justify-content: center;
    padding-bottom: 5%;
}


.p-i-6 {
    width: 30%;
    margin-top: -20%;
}

.i-img-6 {
    max-width: 35%;
    height: 90vh;
    margin-top: -10%;
    margin-left: -10%;
    object-fit: cover;
    overflow: hidden;
    object-position: 15% 20%;   
}


@media (max-width: 1300px) {    
    .illu-box1 p {
        padding-right: 5%;
    }

    .i-img-1,
    .i-img-2,    
    .i-img-3,
    .i-img-4,
    .i-img-5,    
    .i-img-6 {
        object-fit: contain;
        height: auto;
    }

    .p-i-3 {
        margin-top: -6%;
      }

      .i-img-4 {
        margin-top: -6%;
      }
}


@media (max-width: 900px) {

    .p-i-1 {
        padding-left: 0%;
        width: 100%;
        padding-bottom: 10%;
    }

    .p-i-3 {
        padding-left: 0%;
      }

    .illu-2-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10%; 

    }

    .s-illu-2 h1 {
        font-size: 3rem; 
        padding-top: 5%;
    }

    .illu-box1, 
    .illu-box2, 
    .illu-box3, 
    .illu-box4, 
    .illu-box5, 
    .illu-box6 {
        display: block;
        text-align: left; 
        padding: 0;
        width: 100%; 
    }


    .illu-box1 img, 
    .illu-box2 img, 
    .illu-box3 img, 
    .illu-box4 img, 
    .illu-box5 img, 
    .illu-box6 img {
        max-width: 100%; 
        height: auto;
        margin: 0 auto; 
        display: block;
    }

    .illu-box1 p {
        padding-right: 0%;
    }

    .illu-box1 p, 
    .illu-box2 p, 
    .illu-box3 p, 
    .illu-box4 p, 
    .illu-box5 p, 
    .illu-box6 p {
        width: 100%;
        margin: 0;
        text-align: left;
        padding-top: 10%;
        padding-bottom: 10%;
    }
}




/* FROST SMOKE OVER OSLOFJORD */
.frost-wrapper {
    height: 100vh;
    overflow-y: auto;
    width: 100%;
}


.frost-parallax__group {
    position: relative;
    height: 120vh;
    width: 100vw;
    overflow: hidden;
}
  

.frost-parallax__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
  
.sea {
    background: url('../img/graphic-elements/Fjord-bakgrunn.png') no-repeat center;
    background-size: cover;
    z-index: 1;
}
  
.title {
    background: url('../img/graphic-elements/frost-smoke-title.svg') no-repeat center;
    background-size: contain;
    z-index: 2;
    margin-top: -30%;
    margin-left: 5%;
    margin-right: 5%;
}
  
.swan-1 {
    background: url('../img/graphic-elements/Fjord-svaner-høyre.png') no-repeat center;
    background-size: cover;
    z-index: 3;
    height: 100%;
}
  
.swan-2 {
    background: url('../img/graphic-elements/Fjord-svaner-venstre.png') no-repeat center;
    background-size: cover;
    z-index: 6;
    height: 100%;
}
  
                    
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}


@media (prefers-reduced-motion: no-preference) {
.frost-wrapper {
    perspective: 300px;
}

.frost-parallax__group {
    transform-style: preserve-3d;
}

.sea {
    transform: translateZ(-600px) scale(3);
}
  
.title {
    transform: translateZ(-600px) scale(3);
}
  
.swan-1 {
    transform: translateZ(-900px) scale(4);
    margin-top: 20%;
}
  
.swan-2 {
    transform: translateZ(-900px) scale(4.5);
    top: 30%;
}
}


@media (max-width: 1200px) {
    .swan-1 {
        transform: translateZ(-900px) scale(3);
        margin-top: 35%;
    }
      
    .swan-2 {
        transform: translateZ(-900px) scale(3.5);
        top: 45%;
    }
}

@media (max-width: 900px) {
    .swan-1 {
        width: 110vw;
    }
      
    .swan-2 {
        width: 110vw;
    }

    .frost-parallax__group {
        height: 100vh;
    }
}


@media (max-width: 700px) {
    .swan-1 {
        width: 130vw;
        transform: translateZ(-900px) scale(2.5);
        margin-top: 30%;
    }
      
    .swan-2 {
        width: 130vw;
        transform: translateZ(-900px) scale(3);
        top: 40%;
    }

    .frost-parallax__group {
        height: 90vh;
    }
 
    .sea {
        height: 100vh;
    }
}



@media (max-width: 570px) {
    .swan-1 {
        width: 150vw;
        transform: translateZ(-900px) scale(2);
        margin-top: 35%;
        margin-left: -10%;
    }
      
    .swan-2 {
        width: 150vw;
        transform: translateZ(-900px) scale(2.5);
        top: 35%;
        margin-left: -10%;

    }
}

@media (max-width: 470px) {
    .swan-1 {
        width: 150vw;
        margin-top: 35%;
        margin-left: -10%;
    }
      
    .swan-2 {
        width: 150vw;
        top: 35%;
        margin-left: -10%;
    }

    .frost-parallax__group {
        height: 70vh;
    }
 
    .sea {
        height: 80vh;
    }
}




/* Code to multilayered parallax adapted from: https://github.com/KiaanCastillo/Pure-CSS-Multilayer-Parallax  Orginal code below */


/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

@font-face {
  font-family: Bebas;
  src: url('../fonts/BebasKai-Regular.otf');
}

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

html,
body {
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #fff;
}

.btn {
  border: 1.5px solid #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  color: #000;
  background: #fff;
}

.wrapper {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 300px;
}

.parallax__group {
  position: relative;
  height: 100vh;
  width: 100vw;
  transform-style: preserve-3d;
}

.parallax__layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sky {
  background: url('../img/sky.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-600px) scale(3);
  z-index: 1;
}

.bushes {
  background: url('../img/bushes.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-525px) scale(2.75);
  z-index: 2;
}

.water {
  background: url('../img/water.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-400px) scale(2.33333333);
  z-index: 3;
}

.people1 {
  background: url('../img/people1.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-250px) scale(1.833333333);
  z-index: 4;
}

.people2 {
  background: url('../img/people2.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-125px) scale(1.4167);
  z-index: 5;
}

.people3 {
  background: url('../img/people3.png') no-repeat center;
  background-size: cover;
  transform: translateZ(0) scale(1);
  z-index: 6;
}

.hero-text {
  background: linear-gradient(
    rgba(105, 211, 252, 0.25) 0%,
    rgba(255, 116, 161, 0.25) 86%,
    rgba(1, 0, 0, 0.25) 100%
  );
  background-size: cover;
  transform: translateZ(0) scale(1);
  z-index: 7;
}

.hero-text h2 {
  font-size: 1.25rem;
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
}

.hero-text ul {
  font-size: 0.75rem;
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
}

.hero-text ul li {
  margin-left: 2.5rem;
  list-style-type: none;
  float: left;
  visibility: hidden;
}

.hero-text ul li:nth-of-type(3) {
  visibility: visible;
}

.year-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17rem;
  height: 25rem;
}

.year-container h1 {
  font-family: Bebas, sans-serif;
  font-weight: 400;
  position: absolute;
  font-size: 12.5rem;
}

.year-container h1:nth-of-type(1) {
  top: 10%;
}

.year-container h1:nth-of-type(2) {
  left: 30%;
  bottom: 0;
}

.year-container h1:nth-of-type(3) {
  top: 0;
  right: 30%;
}

.year-container h1:nth-of-type(4) {
  right: 0;
  bottom: 20%;
}

.social-container {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
}

.social-container i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

.info-container {
  background: #000;
  transform: translateZ(0) scale(1);
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info-container img {
  width: 75%;
  margin-bottom: 2.5rem;
  filter: saturate(0.65);
}

.info-container h2,
.info-container p {
  margin-bottom: 1rem;
}

.text-container p:nth-of-type(1) {
  font-weight: 400;
  font-size: 0.75rem;
  margin: 1rem 2.5rem;
}

.text-container p:nth-of-type(2) {
  font-size: 0.6rem;
  margin-bottom: 3rem;
}

@media (min-width: 760px) {
  .hero-text ul li {
    visibility: visible;
  }

  .info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 3rem;
    align-items: center;
    text-align: left;
  }

  .info-container img {
    justify-self: end;
    width: 75%;
  }

  .text-container p:nth-of-type(1) {
    font-size: 1rem;
    width: 75%;
    margin: 1rem 0;
  }

  .text-container p:nth-of-type(1) {
    font-size: 0.86rem;
  }
}

@media (min-width: 1126px) {
  .sky,
  .bushes,
  .water,
  .people1,
  .people2,
  .people3,
  .hero-text {
    background-size: contain;
  }
}

 */












.image-slider {
    height: 140vh;
    background-color: var(--black);
    padding-top: 20%;
    position: relative;
    overflow: hidden;

}

.slides {
    padding: 0;
    width: 100%; /* Now responsive */
    max-width: 700px; /* Maximum size (matches your original fixed width) */
    height: auto; /* Adjust height proportionally */
    aspect-ratio: 609 / 420; /* Keeps original aspect ratio (width / height) */
    display: block;
    margin: 0 auto;
    position: relative;

}

    .slides * {
      user-select: none;
      -ms-user-select: none;
      -moz-user-select: none;
      -khtml-user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }

    .slides input { display: none; }

    .slide-container { 
        display: block; 
    }



    .slide {
      top: 0;
      opacity: 0;
      width: 100%;
      height: 500px;
      display: block;
      position: absolute;
      transition: .5s;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }


    .arrows label {
      width: 200px;
      height: 100%;
      display: none;
      position: absolute;
      opacity: 1;
      z-index: 9;
      cursor: pointer;
      transition: opacity .2s;
      color: var(--white);
      font-size: 90pt;
      text-align: center;
      line-height: 380px;
      font-family: var(--secondary);
    }



.next {
  margin-right: -40%;
}

.prev {
  margin-left: -40%;
}

    .arrows .next { 
        right: 0;
    }

    input:checked ~ .slide {
      opacity: 1;
      transform: scale(1);
    }

    input:checked ~ .arrows label { 
        display: block; 
    }



.nav-dots {
  width: 100%;
  bottom: 15%;
  height: 11px;
  gap: 5px;
  display: flex; 
  flex-wrap: wrap;
  justify-content: center; 
  position: absolute;
  z-index: 15;
  left: 0; 
  right: 0; 
}

    .nav-dots .nav-dot {
      top: -5px;
      width: 15px;
      height: 15px;
      margin: 0 4px;
      position: relative;
      border-radius: 100%;
      display: inline-block;
      background-color: rgba(243, 243, 241, 1);
      border: 2px solid transparent;
      z-index: 15;
    }


    .nav-dots .nav-dot:hover {
      background-color: var(--beige);
    }



.slides:has(#img-1:checked) ~ .nav-dots [for="img-1"],
.slides:has(#img-2:checked) ~ .nav-dots [for="img-2"],
.slides:has(#img-3:checked) ~ .nav-dots [for="img-3"],
.slides:has(#img-4:checked) ~ .nav-dots [for="img-4"],
.slides:has(#img-5:checked) ~ .nav-dots [for="img-5"],
.slides:has(#img-6:checked) ~ .nav-dots [for="img-6"],
.slides:has(#img-7:checked) ~ .nav-dots [for="img-7"],
.slides:has(#img-8:checked) ~ .nav-dots [for="img-8"],
.slides:has(#img-9:checked) ~ .nav-dots [for="img-9"],
.slides:has(#img-10:checked) ~ .nav-dots [for="img-10"],
.slides:has(#img-11:checked) ~ .nav-dots [for="img-11"],
.slides:has(#img-12:checked) ~ .nav-dots [for="img-12"],
.slides:has(#img-13:checked) ~ .nav-dots [for="img-13"],
.slides:has(#img-14:checked) ~ .nav-dots [for="img-14"],
.slides:has(#img-15:checked) ~ .nav-dots [for="img-15"],
.slides:has(#img-16:checked) ~ .nav-dots [for="img-16"],
.slides:has(#img-17:checked) ~ .nav-dots [for="img-17"],
.slides:has(#img-18:checked) ~ .nav-dots [for="img-18"],
.slides:has(#img-19:checked) ~ .nav-dots [for="img-19"],
.slides:has(#img-20:checked) ~ .nav-dots [for="img-20"] {
        background: var(--red);  
        border-color: var(--white); 
}


@media (max-width: 1200px) {
.next {
  margin-right: -25%;
}

.prev {
  margin-left: -25%;
}

.arrows label {
  font-size: 70pt;

    }
}


@media (max-width: 950px) {
    .next {
    margin-right: 10%;
    top: 80%
    }

    .prev {
    margin-left: 10%;
        top: 80%
    }


    .arrows label {
    font-size: 70pt;

        }

    .nav-dots {
        bottom: 22%;
        }
}

@media (max-width: 870px) {
    .nav-dots {
        bottom: 25%;
        }
}

@media (max-width: 768px) {
    .image-slider {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .next {
        top: 90%
    }

    .prev {
        top: 90%
    }

    .nav-dots {
        bottom: 28%;
    }
}


@media (max-width: 680px) {
    .next {
    top: 90%
    }

    .prev {
        top: 90%
    }

    .nav-dots {
        bottom: 32%;
    }

    .nav-dots .nav-dot {
      width: 11px;
      height: 11px;

    }
}


@media (max-width: 630px) {
    .nav-dots {
        bottom: 36%;
    }
}

@media (max-width: 590px) {
    .next {
        top: 100%;
    }

    .prev {
        top: 100%;
    }
}


@media (max-width: 550px) {
    .next {
        top: 120%;
    }

    .prev {
        top: 120%;
    }

    .nav-dots {
        bottom: 40%;
        padding-left: 5%;
        padding-right: 5%;
    }
}


@media (max-width: 500px) {

    .nav-dots {
        bottom: 43%;
    }
}



@media (max-width: 430px) {
    .next {
        top: 140%;
    }

    .prev {
        top: 140%;
    }

    .nav-dots {
        bottom: 35%;
    }

    .image-slider {
        height: 120vh;
    }

    .arrows label {
        width: 150px;    
        height: 150px;  
        font-size: 50pt;

    }
}


@media (max-width: 400px) {
    .nav-dots {
        bottom: 40%;
    }
}




/*Code for image slider adapted from: https://codepen.io/precyx/pen/DLGKWp  Orginal code below*/

/* @import url(https://fonts.googleapis.com/css?family=Varela+Round);

html, body { background: #333 url("https://codepen.io/images/classy_fabric.png"); }

ul, li { display: block; }

#body {
    left: 50%;
    width: 609px;
    height: 405px;
    display: block;
    position: absolute;
    margin-left: -305px;
}

#body * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

#body input { display: none; }

#img-inner {
    top: 0;
    opacity: 0;
    width: 609px;
    height: 405px;
    display: block;
    position: absolute;
    
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    
    transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
}

#img-inner img {
    width: 100%;
    height: 100%;
}

#img-inner:nth-of-type(1) {
    background-image:
        url("http://farm9.staticflickr.com/8504/8365873811_d32571df3d_z.jpg"),
        url("http://farm9.staticflickr.com/8068/8250438572_d1a5917072_z.jpg"),
        url("http://farm9.staticflickr.com/8061/8237246833_54d8fa37f0_z.jpg"),
        url("http://farm9.staticflickr.com/8055/8098750623_66292a35c0_z.jpg"),
        url("http://farm9.staticflickr.com/8195/8098750703_797e102da2_z.jpg");
}

#img-inner:hover ~ label.sb-bignav { opacity: 0.5; }

label.sb-bignav:hover { opacity: 1; }


.sb-bignav {
    width: 200px;
    height: 100%;
    display: none;
    position: absolute;
    
    opacity: 0;
    z-index: 9;
    cursor: pointer;
    
    transition: opacity .2s;
    -moz-transition: opacity .2s;
    -webkit-transition: opacity .2s;
	
    color: white;
    font-size: 156pt;
    text-align: center;
    line-height: 380px;
    font-family: "Varela Round", sans-serif;
    background-color: rgba(255, 255, 255, .3);
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

label[title="Next"] { right: 0; }

input:checked + li > #img-inner {
    opacity: 1;
        
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    
    transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
}

input:checked + li > label { display: block; }*/














/* POLAR STRATOSPHERIC CLOUDS */
.psc-wrapper {
    height: 100vh;
    overflow-y: auto; 
    width: 100%;
    position: relative; 
}

.psc-parallax {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.psc-background {
    background: url('../img/psc/MariusCirba-clouds-4.jpg') no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 110vh;
}

@media (prefers-reduced-motion: no-preference) {
    .psc-wrapper {
        perspective: 300px;
    }
    
    .psc-parallax {
        transform-style: preserve-3d;
    }
    
    .psc-background {
        transform: translateZ(60px) scale(1);
    }
}

.psc-heading {
    text-align: center;
    width: 100%; 
    position: absolute;
    z-index: 10;
    top: 20%;
}
  
.psc-heading h1 {
    color: var(--white);
    white-space: nowrap;
}

.psc-heading h1:nth-child(1) { 
    font-size: 16rem; 
}

.psc-heading h1:nth-child(2) { 
    font-size: 5.8rem; 
    margin-top: -5%;
}
  
.psc-heading h1:nth-child(3) { 
    font-size: 12rem; 
    margin-top: -3%;
}


.s-psc-2{  
    padding-bottom: 50px;
    background-color: var(--light-blue);
    z-index: 5;
    color: var(--white);
}

.s-psc-2 img {
    width: 100%;
}


.psc-2-container {
    max-width: 100%;
    margin: 0;
}


.psc-box1 {
    height: 100vh;
}

.psc-img-1 {
    max-width: 100%;
    height: 65vh;
    object-fit: contain;
    object-position: 20% 100%;   
}


.psc-img-2 {
    max-width: 100%;
    height: 33vh;
    object-fit: contain;
    object-position: 90% 100%;   
    margin-top: -10%;
}


.psc-box2 {
    height: 100vh;
    position: relative;
    margin-bottom: 8%;


}

.psc-img-3 {
    max-width: 100%;
    height: 50vh;
    object-fit: contain;
    object-position: 15% 0%;
    position: absolute;
    z-index: 10;
    margin-top: -5%;

}

.psc-img-4 {
    max-width: 100%;
    height: 65vh;
    object-fit: contain;
    object-position: 80% 50%;   
    margin-top: 15%;
    position: absolute;
    z-index: 1;
}


.psc-box3 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.psc-img-5 {
    max-width: 80%; 
    object-fit: contain;
}
    
.psc-box4 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.psc-box4-1 {
    display: flex;
    flex-direction: row; 
    align-items: center; 
}

.psc-img-6, 
.psc-img-7, 
.psc-img-8, 
.psc-img-9, 
.psc-img-10, 
.psc-img-11, 
.psc-img-12 {
    max-width: 100%; 
    object-fit: contain;
}

.psc-img-6 {
    height: 65vh;
    margin-left: -5%;
}

.psc-img-7 {
    height: 30vh;
    margin-top: -7%;
    margin-right: -7%;

}

.psc-box5 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.psc-box5-1 {
    display: flex;
    flex-direction: row; 
    padding-left: 35%;
    gap: 120px;
}


.psc-img-8 {
    height: 30vh;
    margin-top: 30%;
    
}

.psc-img-9 {
    height: 30vh;
}

.psc-box6 {
    height: 100vh;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    position: relative;
}

.psc-box6-1 {
    display: flex;
    flex-direction: column; 
    width: 50%;
    gap: 40px;
}

.psc-img-10 {
    height: 20vh;
    padding-left: 50%;
}

.psc-img-11 {
    height: 20vh;
}


.psc-img-12 {
    height: 60vh;
}

.psc-box7 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.psc-img-13 {
    object-fit: contain;
    max-width: 80%; 
}

@media (max-width: 1200px) {
    .psc-img-2 {
        margin-top: 9%;       
    }

    .psc-img-3 {
        margin-top: -14%;
    }

    .psc-img-4 {
        object-position: 90% 50%;   
        margin-top: 20%;
    }
}


@media (max-width: 1100px) {
    .psc-img-3 {
        margin-top: -17%;
    }

    .psc-img-4 {
        object-position: 90% 50%;   
        margin-top: 25%;
    }
}


@media (max-width: 900px) {
  .s-psc-2 {
    padding-bottom: 30px; 
  }
  
  .psc-2-container {
    display: flex;
    flex-direction: column;
    gap: 60px; 
    align-items: center;
  }
  
  .psc-box1,
  .psc-box2,
  .psc-box3,
  .psc-box4,
  .psc-box5,
  .psc-box6,
  .psc-box7,
  .psc-box4-1,
  .psc-box5-1,
  .psc-box6-1 {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    gap: 60px; 
    align-items: center;
  }
  
  .s-psc-2 img {
    width: 90% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-position: center !important;
    position: static !important;
  }
  
  .psc-img-1,
  .psc-img-2,
  .psc-img-3,
  .psc-img-4,
  .psc-img-5,
  .psc-img-6,
  .psc-img-7,
  .psc-img-8,
  .psc-img-9,
  .psc-img-10,
  .psc-img-11,
  .psc-img-12,
  .psc-img-13 {
    margin: 0 !important;
    padding: 0 !important;
  }

  .psc-img-5, .psc-img-13 {
    max-width: 100%; 
}

}


@media (max-width: 730px) {
.psc-heading h1:nth-child(1) { 
    font-size: 10rem; 
}

.psc-heading h1:nth-child(2) { 
    font-size: 3.6rem; 
}
  
.psc-heading h1:nth-child(3) { 
    font-size: 8rem; 
}

.psc-wrapper {
    height: 100vh;

}

.psc-parallax {
    height: 70vh;
}
}


@media (max-width: 460px) {
.psc-heading h1:nth-child(1) { 
    font-size: 8rem; 
}

.psc-heading h1:nth-child(2) { 
    font-size: 2.9rem; 
}
  
.psc-heading h1:nth-child(3) { 
    font-size: 6rem; 
}

.psc-wrapper {
    height: 100vh;

}

.psc-parallax {
    height: 70vh;
}
}





/*ABOUT ME*/
.aboutme-section, .aboutme-section-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  background-color: var(--black);
  color: var(--white);
}

.aboutme-section {
  padding: 4rem;
  padding-bottom: 8rem;
}

.aboutme-section-2 {
  padding: 4rem;
}

.aboutme-section p, .aboutme-section-2 p {
  color: var(--white);
}

.aboutme-section h1 {
  color: var(--beige);
}

.aboutme-wrapper {
  width: 100%;
  max-width: 1200px;
}

.aboutme-content {
  width: 100%;
}

.content-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.text-content {
  flex: 1;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.profile {
  flex-shrink: 0;
  width: 55%;
}

.profile img {
  width: 100%;
  height: auto;
}




@media (max-width: 1100px) {
  .content-container {
    flex-direction: column-reverse;
    gap: 1rem; 
  }

  .profile {
    width: 65%; 
    margin: 0 auto;
    order: 1; 
  }
}

@media (max-width: 768px) {

  .profile {
    width: 100%; 
  }
}



.icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; 
    width: 80px;
}

.icons img {
    width: 80px;
    height:80px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.icon-item span {
    font-family: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}


@media (max-width: 768px) {
    .icons {
        gap: 1.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .icon-item {
        width: 70px;
    }
    .icon-item span {
        font-size: 0.7rem;
    }
}



@media (max-width: 321px) {
    .icons {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}




.tools-description-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.tools-description {
  max-width: 600px;
  width: 80%; 
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 auto;
  padding: 0 1rem;
}


.tools-description p {
    margin-left: 0 !important;
}






.cameras {
  background-color: var(--black);
  color: var(--white);
  padding: 2rem;
  padding-top: 0;
  margin: 0 auto;
}

.cameras-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

}

.cameras-row.reverse {
    margin-top: -10%;
}

.text-left {
    padding-left: 5%;
}

.cameras-row img {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
}

.cameras-row p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  max-width: 400px;
}

@media (max-width: 768px) {
.cameras {
    margin-top: -20%;
}

  .cameras-row,
  .cameras-row.reverse {
    flex-direction: column;
    text-align: left;
  }

  .cameras-row img {
    max-width: 100%;
  }

 .cameras-row p {
    max-width: 80%;
  }


  .cameras-row.reverse {
    flex-direction: column-reverse;
}

.text-left {
    padding-left: 0%;
}

.text-left,
.text-right {
  display: flex;
  justify-content: center;
}

}


@media (min-width: 1200px) {
    .cameras {
        padding-left: 12rem;
        padding-right: 12rem;
    }
}



/*CONCERTS*/
.concerts-top {
    height: 30vh;
}

.concerts {
    background-color: var(--black);
}

.concerts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
}

.concerts-title.first {
    margin-left: -50%;
}


.concerts-title.second {
    margin-right: -50%;
}


.photo-title.con-t {
    width: 100%;
    font-size: 1rem;
  }
  
.photo-subtitle.con-s {
    width: 100%;
    font-size: 1rem;
  }

.plaque.con-p {
    width: 400px !important; 
  }

.concerts-container img:nth-child(2) { 
    margin-right: -20%;
    width: 70%;
}

.concerts-container img:nth-child(3) { 
    margin-left: -40%;
    width: 50%;
}

.concerts-container img:nth-child(4) { 
    margin-right: -30%;
    width: 60%;
}

.concerts-container img:nth-child(5) { 
    margin-left: -30%;
    width: 60%;
}

.concerts-container img:nth-child(7) { 
    margin-left: -40%;
    width: 50%;
}

.concerts-container img:nth-child(8) { 
    margin-top: -20%;
    margin-right: -55%;
    width: 30%;
}

.concerts-container img:nth-child(9) { 
    margin-top: -20%;
    margin-left: -40%;
    width: 50%;
}

.concerts-container img:nth-child(10) { 
    width: 70%;
    padding-bottom: 8rem;
}


/*THEATER*/
.theater-top {
    height: 30vh;
}

.theater-title {
    margin-left: -50%;
}

.theater {
    background-color: var(--black);
}

.theater-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
}


.theater-container img:nth-child(2) { 
    margin-right: -30%;
    width: 60%;
}

.theater-container img:nth-child(3) { 
    margin-left: -50%;
    width: 40%;
}

.theater-container img:nth-child(4) { 
    margin-right: -50%;
    margin-top: -60%;       
    width: 40%;
}

.theater-container img:nth-child(5) { 
    margin-top: 25%;
    margin-right: -20%;
    width: 70%;
}

.theater-container img:nth-child(6) { 
    margin-left: -40%;
    width: 50%;
}

.theater-container img:nth-child(7) { 
    width: 70%;
}

.theater-container img:nth-child(8) { 
    margin-left: -40%;
    width: 50%;
}

.theater-container img:nth-child(9) { 
    width: 60%;
    padding-bottom: 8rem;
    margin-right: -20%;
}


@media (max-width: 1000px) {
    .concerts-title.first {
        margin-left: -30%;
    }

    .concerts-title.second {
        margin-right: -30%;
    }

    .theater-title {
        margin-left: -30%;
    }

    .concerts-container img:nth-child(2) { 
        padding-top: 1rem;
    }
}


@media (max-width: 768px) {
    .theater-container img:nth-child(2),
    .theater-container img:nth-child(3),
    .theater-container img:nth-child(4),
    .theater-container img:nth-child(5),
    .theater-container img:nth-child(6),
    .theater-container img:nth-child(7),
    .theater-container img:nth-child(8),
    .theater-container img:nth-child(9) {
        margin: 0;
        width: 90%;
    }


    .concerts-container img:nth-child(2),
    .concerts-container img:nth-child(3),
    .concerts-container img:nth-child(4),
    .concerts-container img:nth-child(5),
    .concerts-container img:nth-child(6),
    .concerts-container img:nth-child(7),
    .concerts-container img:nth-child(8),
    .concerts-container img:nth-child(9),
    .concerts-container img:nth-child(10) {
        margin: 0;
        width: 90%;
    }

    .concerts-container > .concerts-title:nth-child(5) {
        margin: 0;
        padding-top: 0 !important;
}

    .photo-title.con-t {
        font-size: 0.9rem;
    }
    
    .photo-subtitle.con-s { 
        font-size: 0.9rem;
    }

    .plaque.con-p {
        width: 350px !important; 
    }
}



@media (max-width: 600px) {
    .concerts-title.first {
        margin-left: 0;
    }

    .concerts-title.second {
        margin-right: 0;
    }

    .theater-title {
        margin-left: 0;
    }
}




@media (max-width: 400px) {
    .concerts-top {
        height: 20vh;
    }

    .theater-top {
        height: 20vh;
    }

    .photo-title.con-t {
        font-size: 0.7rem;
    }
    
    .photo-subtitle.con-s { 
        font-size: 0.7rem;
    }

    .plaque.con-p {
        width: 300px !important; 
    }

}





/*FOOTER*/
.footer-container {
    position: relative;
    width: 100%;
    height: 85vh; 
    max-height: none; 
    overflow: visible;
    background-color: var(--black);
}

.footer-image {
    position: absolute;
    bottom: 0; 
    right: 0;  
    max-width: 60%; 
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}



.footer-text {
    position: absolute;
    top: 65%;  
    transform: translateY(-70%); 
    text-align: left;
    border-radius: 10px;
    width: 400px; 
    z-index: 5;
}


.footer-text h2 {
    color: var(--white);
    white-space: normal;
    overflow: visible;
    word-wrap: break-word;
}

.footer-text p {
    color: var(--white);
    font-size: 1rem;
    padding-top: 20px;
    padding-bottom: 20px;;
    word-wrap: break-word;
}

.footer-text a {
    font-family: var(--secondary);
    text-decoration: underline;
    white-space: nowrap;
}

.social-media-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.social-media-icons svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
  transition: transform 0.2s ease;
}

.social-media-icons a:hover svg {
  transform: scale(1.1);
  fill: var(--beige); /* Optional hover color */
}






@media (min-width: 768px) {
    .footer-text {
    padding-left: 9%;
    width: 40%; 
    }
}


@media (max-width: 768px) {
    .footer-text {
        padding-left: 9%;
        width: 83%; 
        text-align: left; 
    }

    .footer-text h2 {
        font-size: 2.5rem;
        white-space: normal; 
        padding-top: 50px;
    }
    
    .footer-text p {
        font-size: 1rem;
    }

    .footer-image {
        max-width: 80%; 
        height: auto;
        object-fit: contain;
    }

    .footer-text a {
        white-space: nowrap;
    }

    .social-media-icons svg {
        width: 40px;
        height: 40px;
    }



}
