* {
    margin: 0;
    padding: 0;
    font-family: inter, sans-serif;
    font-weight: 500;
}

*::selection {
    color: #FFFCFA;
    background-color: #97633E;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFCFA;
}

.cont70 {
    width: 70%;
    position: relative;
    left: 15%;
}

@media only screen and (max-width: 1300px) {
    .cont70 {
        width: 95%;
        left: 2.5%;
    }
}

.cont60 {
    width: 60%;
    position: relative;
    left: 20%;
}

@media only screen and (max-width: 1300px) {
    .cont60 {
        width: 95%;
        left: 2.5%;
    }
}


a {
    text-decoration: none;
    color: black;
    font-size: 15px;
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500 ;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

p {
    font-size: 15px;
    color: #97633E;
}

img {
    max-width: 100%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: #CCCCCC;
    max-height: 70vh;
}

.sep350 {
    height: 350px;
}

.sep200 {
    height: 200px;
}

.sep100 {
    height: 100px;
}

.sep40 {
    height: 40px;
}

.sep20 {
    height: 20px;
}


#julescard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#julescard img {
    width: 100px;
    border-radius: 100%;
    margin: 7px;
}

#julescard h1 {
    font-size: 20px;
}

#julescard #julesbernard {
    height: auto;
    width: 150px;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

#navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 5px;
    flex-wrap: wrap;
    border-style: solid;
    border-color: #fff9f0;
    border-width: 1px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.0);

    transition: 500ms;
    transition-timing-function: cubic-bezier( 0, 0, 0.0, 1);
}
#navbar:hover {
    background-color: #FFF;
    border-color: #ECE5DC;
    box-shadow: 0 2px 7px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

#navbar a {
    padding: 10px;
    transition: 500ms cubic-bezier( 0, 0, 0.0, 1);
    
}
#navactive {
    opacity: 1;
    font-weight: 500;
    color: #4F2F00;
}
#navna {
    color: #97633E;
    opacity: 0.5;
    font-weight: 500;
}

#navbar:hover #navactive {
    color: #000;
}
#navbar:hover #navna {
    color: #97633E;
}


#navna:hover {
    opacity: 1;
}

#navbar a:active {
    transform: translateY(2px);
}

#separator {
    background-color: rgba(0, 0, 0, 0.1);
    height: 2px;
    width: 100%;
    border-radius: 10px;
}

#footer p {
    text-align: right;
    margin-top: 20px;
    margin-bottom: 20px;
}

#up {
    position: fixed;
    bottom: 12px;
    right: 17%;
    color: #434f63;
    mix-blend-mode: difference;

    transition: 500ms;
    transition-timing-function: cubic-bezier( 0, 0, 0.0, 1);
}
#up svg {
    width: 25px;
}

@media only screen and (max-width: 1300px) {
    #up {
        left: 3%;
        bottom: 12px;
    }
}

#up:active {
    transform: translateY(2px);
}



/*HOME*/

.launchwin {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.launchwin #navbar {
    margin-bottom: 30px;
}


.launchp {
    text-align: center;
    max-width: 700px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#launchimg1 {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

#stars {
    text-align: center;
    font-family: "Cormorant Garamond";
    font-style: italic;
}

#ctacont {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#cta {
    text-align: center;
    background-color: #FFFCFA;
    padding: 10px;
    border-radius: 5px;
    border-style: solid;
    border-color: #fff9f0;
    border-width: 1px;

    transition: 400ms;
    transition-timing-function: cubic-bezier( 0, 0, 0.0, 1);
}

#cta:hover {
    background-color: #FFF;
    border-style: solid;
    border-color: #ECE5DC;
    border-width: 1px;
    transform: scale(1.05) rotate(0.4deg);
}

#cta:active {
    transform: scale(0.95);
}

@media only screen and (max-width: 800px) {
    #cta {
        background-color: #FFFCF8;
    border-style: solid;
    border-color: #D3D3D3;
    border-width: 1px;
    }
}


/*GALLERY*/
.gallery {
    columns: 3;
    column-gap: 13px;
}
@media only screen and (max-width: 800px) {
    .gallery {
        columns: 2;
    }
}
@media only screen and (max-width: 600px) {
    .gallery {
        columns: 1;
    }
}

.gallery a {
    margin-bottom: 13px;
    display: block;
    cursor: zoom-in;
    border-radius: 10px;
}
.gallery img {
    position: relative;
    left: 50%;
    transform: translate(-50%,0);
    max-width: 100%;
    max-height: 90vh;
    display: block;
    width: 100%;
    height: auto;

    transition: 300ms;
    transition-timing-function: cubic-bezier( 0, 0, 0.0, 1);
    
}
.gallery img:hover {
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translate(-50%,-2px);
    
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 600px) {
    #lightbox img {
        max-width: 99%;
    }
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: #FFFCFA;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    box-shadow: 0 0 10px 10px #FFFCFA;
    color: #BCAA8D;
    transition: 500ms;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.gallery img:active {
    transform: translate(-50%, 5px);
}



/*VIDEO*/
.video-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

}
@media only screen and (max-width: 600px) {
   .video-item {
    margin-bottom: 20px;
   }
}


.video-item iframe {
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: #CCCCCC;
    min-height: 350px;
}

@media only screen and (max-width: 600px) {
    .video-item {
        grid-template-columns: 1fr;
    }
}

.video-iframe iframe {
    width: 100%;
    height: 100%;
}

.video-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*CONTACT*/
#contact-cont {
    background-image: url(./files/img/contact.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#contact-item {
    height: fit-content;
    padding: 25px 40px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-weight: 500;

    transition: 200ms;
    transition-timing-function: cubic-bezier( 0, 0, 0.0, 1);
}
#contact-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 16.5px;
}

#contact-item:active {
    transform: scale(0.95);
}

#contact-item p {
    color: black;
    font-size: inherit;
    font-weight: inherit;
}

