:root{
    --header-font: 32px;
    --sub-header-font: 24px;
    --paragraph-font: 16px;
    --button-font: 16px;

    --primary-color: #fff;
    --secondary-color1: #fff;
    --secondary-color2: #5C5C5C;
    --secondary-color3: #000;
    --accent-color: #26003F;

    --basic-inline-padding: 20px;
}

i{
    color: var(--secondary-color1);
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

button{
    cursor: pointer;
    transition: .15s;
}

button:hover{
    scale: 105%;
    opacity: .8;
}

button:active{
    opacity: .5;
}

.nav{
    position: sticky;
    background-color: black;
    color: white;
    height: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 80px 1fr;
    vertical-align: middle;
    z-index: 1;
}

.pc-nav{
    display: none;
}

#side-panel{
    position: fixed;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    background-color: black;
    font-size: 20px;
    width: 0;
    height: 100vh;
    top: 0;
    left: 0;
    overflow-x: hidden;
    justify-content: center;
    z-index: 1;
    transition: .5s;
}

#side-panel a{
    color: rgb(146, 146, 146);
    text-decoration: none;
    padding-bottom: 20px;
    transition: .3s;
    display: block;
    white-space: nowrap;
    cursor: pointer;
}

#side-panel a:hover{
    color: white;
}

#side-panel button{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 10px;
    background-color: transparent;
    color: rgb(146, 146, 146);
    font-size: 24px;
    font-weight: bold;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: .7s;
    cursor: pointer;
}

#side-panel button:hover{
    color: white;
}

#menu{
    font-size: 40px;
    padding: 10px var(--basic-inline-padding);
    cursor: pointer;
    transition: .7s;
}

#logo{
    animation-name: navLoadIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    margin-left: -25px;
    opacity: 0;
}

@keyframes navLoadIn {
    to{
        margin-left: 0;
        opacity: 1;
    }
}

#logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
    padding: 10px var(--basic-inline-padding);
}

.hero{
    position: relative;
    height: 80vh;
}

.bg-texture{
    display: none;
}

.hero::after{
    position: absolute;
    content: '';
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.155), rgba(0, 0, 0, 0.703));
    z-index: -1;
}

#hero-bg{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero{
    display: grid;
    grid-template-rows: 2fr 3fr;
    color: var(--secondary-color1);
    padding: var(--basic-inline-padding);
}

.hero-right{
    animation-name: heroLoadIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-timing-function: ease-out;
    scale: .95;
    opacity: 0;
}

@keyframes heroLoadIn {
    to{
        scale: 1;
        opacity: 1;
    }
}

.hero-right-big{
    font-size: var(--header-font);
    font-weight: bold;
    margin-bottom: 0;
    border-bottom: white solid 1px;
}

.hero-right-big span{
    font-size: var(--paragraph-font);
    font-family: 'Bonheur Royale','Dancing Script', 'Poppins', sans-serif;
}

.hero-right-small{
    font-size: var(--paragraph-font);
    margin-top: 20px;
}

#book-now{
    font-size: var(--button-font);
    background-color: var(--secondary-color1);
    color: var(--secondary-color3);
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
}

#magazine{
    position: relative;
    padding: var(--basic-inline-padding);
    color: var(--secondary-color1);
    min-height: 350px;
}

#magazine::after{
    position: absolute;
    content: '';
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.397), black);
    z-index: -1;
}

#mag-bg{
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.mag-header{
    text-align: center;
    font-size: var(--header-font);
    font-weight: bold;
    margin-bottom: 0;
}

.photobooth{
    text-align: center;
    font-size: var(--paragraph-font);
    letter-spacing: 6px;
    margin-top: 0;
}

.mag-paragraph{
    margin-top: 120px;
}

.selfie{
    position: relative;
    padding: var(--basic-inline-padding);
    color: var(--secondary-color1);
    min-height: 350px;
}

.selfie::after{
    position: absolute;
    content: '';
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.397), black);
    z-index: -1;
}

#selfie-bg{
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.selfie-header{
    text-align: center;
    font-size: var(--header-font);
    font-weight: bold;
    margin-bottom: 0;
}

.photobooth{
    text-align: center;
    font-size: var(--paragraph-font);
    letter-spacing: 6px;
    margin-top: 0;
}

.selfie-paragraph{
    margin-top: 120px;
}

.threesixty{
    position: relative;
    padding: var(--basic-inline-padding);
    color: var(--secondary-color1);
    min-height: 350px;
}

.threesixty::after{
    position: absolute;
    content: '';
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.566), black);
    z-index: -1;
}

#threesixty-bg{
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.threesixty-header{
    text-align: center;
    font-size: var(--header-font);
    font-weight: bold;
    margin-bottom: 0;
}

.photobooth{
    text-align: center;
    font-size: var(--paragraph-font);
    letter-spacing: 6px;
    margin-top: 0;
}

.threesixty-paragraph{
    margin-top: 120px;
}

#form-div{
    padding: 60px var(--basic-inline-padding) 40px;
    background-image: linear-gradient(to bottom right,#FFFF60,#C20383,#26003F);
    color: var(--secondary-color1);
}

.form-header{
    font-size: var(--header-font);
    font-weight: bold;
    text-align: center;
}

.form-sub{
    font-size: var(--sub-header-font);
    font-weight: bold;
    text-align: center;
    color: var(--secondary-color3);
}

form{
    display: grid;
    gap: 10px;
    margin-top: 60px;
}

input, textarea{
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: var(--secondary-color1);
    color: var(--secondary-color3);
    font-family: 'Poppins', sans-serif;
}

textarea{
    min-height: 80px;
    border-radius: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]{
    -moz-appearance: textfield;
}

#form-submit{
    font-size: var(--button-font);
    background-color: var(--accent-color);
    color: var(--secondary-color1);
    border: none;
    border-radius: 20px;
    margin-inline: auto;
    margin-top: 20px;
    padding: 10px 20px;
    width: 100px;
}

#about-us{
    margin: 0;
    padding: 40px var(--basic-inline-padding);
}

.about-us-header{
    text-align: center;
    font-size: var(--header-font);
    font-weight: bold;
}

.about-us-paragraph{
    text-align: justify;
}

#gallery{
    padding: 40px 20px;
}

.gallery-header{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

.swiper{

    margin-bottom: 30px;
    max-width: 480px;
    border-radius: 10px;
}

.card{
    position: relative;
    border-radius: 10px;
}

.card-images{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: inherit;
    z-index: -2;
}

.swiper-navBtn{
    background-color: #fff;
    color: #000 !important;
    padding: 10px;
    border-radius: 10px;
    scale: 80%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: .18s;
}

.swiper-navBtn:hover{
    background-color: rgb(255, 255, 255);
}

#footer{
    background-color: #161616;
    color: #848484;
    padding: var(--basic-inline-padding);
    text-align: center;
    line-height: 30px;
    word-wrap: break-word;
}

#tiktok{
    font-size: var(--sub-header-font);
    cursor: pointer;
    transition: .1s;
}

#tiktok:hover{
    opacity: .7;
}

#google{
    text-decoration: none;
    color: #848484;
}

.tag{
    color: var(--secondary-color1);
    font-weight: bold;
}

#myLink{
    color: #a8a8a8
}

@media (min-width: 769px){

    :root{
        --basic-inline-padding: 40px;

        --header-font: 48px;
        --sub-header-font: 32px;
        --paragraph-font: 24px;
        --button-font: 16px;

    }

    .nav{
        align-items: center;
        grid-template-columns: 120px 1fr;
    }   

    .left-nav{
        display: none;
    }

    .right-nav{
        grid-column: 1/2;
        position: relative;
    }

    .pc-nav{
        padding-inline: 100px;
        display: flex;
        grid-column: 2/3;
        align-items: center;
        justify-content: space-between;
        max-width: 630px;
    }

    .pc-nav a{
        text-decoration: none;
        color: var(--secondary-color1);
    }

    .hero{
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
    }

    .hero::after{
        background-image: radial-gradient(rgba(0, 0, 0, 0.25), rgb(0, 0, 0));
    }

    #hero-bg{
        object-position: right;
    }

    .hero-right{
        margin: auto;
        max-width: 568px;
    }

    #book-now{
        padding: 15px 30px;
    }

    #magazine{
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
        gap: var(--basic-inline-padding);
    }

    #magazine::after{
        background-image: none;
    }

    .bg-texture{
        display: block;
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
        z-index: -2;
    }

    .texture1{
        opacity: .4;
    }

    .mag-header{
        text-align: right;
        color: var(--secondary-color3);
    }

    #magazine .photobooth{
        text-align: right;
        letter-spacing: 9.5px;
        color: var(--secondary-color3);
        margin-right: -9px;
    }

    .mag-left{
        justify-self: right;
    }

    .mag-paragraph{
        font-size: var(--paragraph-font);
        margin-top: 100px;
        max-width: 400px;
        font-weight: bold;
        color: var(--secondary-color2);
        text-align: justify;
    }

    .mag-right{
        position: relative;
    }

    #mag-bg{
        z-index: 0;
    }

    .selfie{
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
        gap: var(--basic-inline-padding);
    }

    .texture2{
        filter: contrast(.7);
        -webkit-filter: contrast(.7);
    }

   .selfie::after{
        background-image: none;
    }

    .selfie-left{
        justify-self: right;
    }

    .selfie-header{
        text-align: right;
        color: var(--secondary-color3);
    }

    .selfie .photobooth{
        text-align: right;
        color: var(--secondary-color3);
        letter-spacing: 23.5px;
        margin-right: -22px;
    }

    .selfie-paragraph{
        font-size: var(--paragraph-font);
        margin-top: 100px;
        max-width: 400px;
        text-align: justify;
        font-weight: bold;
        color: #494949;
    }

    .selfie-right{
        position: relative;
    }

    #selfie-bg{
        z-index: 0;
        border: #fff solid 8px;
    }

    .threesixty{
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
        gap: var(--basic-inline-padding);
    }

    .texture3{
        filter: brightness(.4);
        -webkit-filter: brightness(.4);
    }

   .threesixty::after{
        background-image: none;
    }

    .threesixty-left{
        justify-self: right;
    }

    .threesixty-header{
        text-align: right;
        color: var(--secondary-color1);
    }

    .threesixty .photobooth{
        text-align: right;
        color: var(--secondary-color1);
    }

    .threesixty-paragraph{
        font-size: var(--paragraph-font);
        text-align: justify;
        margin-top: 100px;
        max-width: 400px;
        font-weight: bold;
        color: #B9B9B9;
    }

    .threesixty-right{
        position: relative;
    }

    #threesixty-bg{
        z-index: 0;
        filter: brightness(.5);
        -webkit-filter: brightness(.7);
        border-radius: 20px;
    }

    form{
        display: grid;
        grid-template-columns: 1fr 1fr;
        background-color: #ffffff4d;
        margin-inline: var(--basic-inline-padding);
        padding: var(--basic-inline-padding);
        border-radius: 20px;
    }

    input, textarea{
        border-radius: 10px;
    }

    textarea, #form-submit{
        grid-column: 1/3;
    }

    #about-us{
        padding-bottom: 80px;
    }

    .about-us-paragraph{
        max-width: 700px;
        margin-inline: auto;
    }

    .gallery-header{
        font-size: 48px;
    }

    .swiper-navBtn{
        background-color: white;
    }

    .swiper-navBtn:hover{
        scale: 101%;
    }

    .swiper-navBtn:active{
        opacity: .6;
    }


}

@media (min-width: 867px){
    form{
        max-width: 716px;
        margin-inline: auto;
    }
}