@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #212529;
    font-family: 'Poppins', 'sans-serif';
}

body {
    overflow-x: hidden;
    min-width: none;
}

li, a, button {
    text-decoration: none;
}
button{
    background-color: #ffffff;
    color: #212529;
}
iframe{
    filter: grayscale();
}

/* Splash Screen */
.intro {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #161616;
    transition: 0.5s;
}

.loadingLogo{
    background-color: unset;
    color: white;
    font-weight: normal;
    font-size: larger;
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
}

.loadingLogo.active{
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.loadingLogo.fade{
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s;

}

.spinner {
    border: 5px solid #444444; 
    border-top: 5px solid #ff6052; 
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    background-color: #161616; 
}



.logo-header{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: unset;
}





main{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.logo{
    margin-right: auto;
    padding-left: 20px;
    transition: all 0.2s ease 0s;
    font-weight:lighter;
}

.header{
    align-items: center;
    padding: 30px 10px;
    position:sticky;
    width: 100%;
    height: 100px;
    display: flex;
    padding-left: 2vw;
    padding-right: 35px;
    z-index: 10;
    transition: all 0.2s ease 0s;
}

.nav_links {
    position: fixed;
    width: 100%;
    transition: 0.2s;
}

.appleLogo{
    width: 9px;
    height: 12px;

}



.nav_links li{
    display: inline-block;

    transition: all 0.2s ease 0s;
    background-color: unset;

}
.nav_links a{
    padding: 1vw 2vw;
    background-color: unset;
    transition: all 0.2s ease 0s;
    font-weight: 100;
    letter-spacing: 0.05em;

    color: #212529;

}

.nav_links li a:hover{
    color: #ff6052;
}


button { 
    padding: 1.5vw 2.5vw;
    cursor: pointer;
    transition: all 0.2s ease 0s;
    font-size: medium;
    border: 1px solid #212529;
    box-shadow: 3px 3px rgba(33, 37, 41, 0.7);
    color: #212529;
}


button:hover{   
    box-shadow: 6px 6px rgba(33, 37, 41, 0.7);
    scale: 1.05;
}

.ctaMiddle{
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
  
.ctaMiddle img {
    width: 100%;
    object-fit: cover;
    overflow: hidden;  
    z-index: 0;
    display: block;
}
  
.ctaMiddle button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}


.ctaGallery{
    align-items: center;
    display: flex;
    flex-direction:column;
    padding-bottom: 5vw;
}

.ctaGallery h4{
    font-size:3vw;
    padding: 5vw;
    font-weight: lighter;
    text-decoration: none;
}


.container{
    position: relative;
    width: 100%;
    display: flex;
    gap: 7px;
    padding: 10px 1vw 20px 1vw;
    transition: opacity 1s ease-in-out;  
}


.column{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post{
    position: relative;
    overflow: hidden;
}

img{
    width: 100%;
    padding-bottom: 0px;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: darkgray;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

/*
.post:hover{
    cursor: pointer;
    opacity: 0.9;
}*/


/* Footer styles */

footer{
    display: flex;
    justify-content:space-around;
    width: 100%;
    padding: 30px;
}
footer h4{
    font-weight: normal;
    font-size: larger;
    padding-bottom: 20px;
}

.footerLeft{
    text-align: left;
}

.footerRight{
    text-align: right;
}

/* GALLERY */
.galleryMain {
    display:flex;
    flex-wrap: wrap;
    padding: 10px 0px 20px 0px;
}

.galleryMain div {
    width: 50%;
    padding-bottom: 25%;
    position: relative;
    overflow: hidden;
}

.galleryMain img {
    width: 100%;
    position: absolute;
    z-index: 0;
    transition:  0.2s ease;
}

.galleryMain p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: unset;
    color: white;
    font-size:5vmin;
    text-shadow: 1px 1px 1px black;
    pointer-events: none;
}

.galleryMain img:hover{
    opacity: 0.9;
    scale: 1.05;
}

/* GALLERY DETAIL */

.galleryDetail {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 400px;
    padding: 10px;
    margin-bottom: 20px;
}

.gdimage {
  width: 55%;
  height: auto;

}
.gdimage img{
    border-radius: 15px;
    max-height: 350px;
    object-fit: cover;
}

.gdtext {
    /*width: 40%; FOR THE OLD STYLE */
    text-align: left;
    padding-left: 5vw;
}
.gdtext h4{
    font-size: calc(8px + 0.6vw);
    color:slategrey;
    font-weight: lighter;
    padding-bottom: 0.8vh;
}
.gdtext h3{

    font-size: calc(10px + 0.6vw);
    color:#161616;
    font-weight:lighter;
    padding-bottom: 1.2vh;
}
.gdtext h1{

    font-size: calc(18px + 0.8vw);
    padding-bottom: 1.3vh;
    color:#161616;
    font-weight:normal;

}
.socialButtons a{
    margin-top: 0px;
    padding: 1vw;
}

/* WINDOW RESIZE */
@media all and (max-width: 650px){
    .header{
        height: 80px;
        padding: 0;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    .logo{
        margin-right: 0vw;
        font-size: medium;
        margin-bottom: 10px;
    }

    .nav_links a{
        padding: 0vw;
        font-size:small;
    }

    footer{
        padding-bottom: 30px;
        font-size: small;
    }
    .galleryMain div{
        width: 100%;
        height: 170px;
    }
    .galleryMain p{
        font-size: 8vw;
    }
    .ctaGallery h4{
        font-size: 9vw;
    }
    .galleryDetail h1{
        font-size: 6vw;
    }
    .contactText h1{
        font-size: 5vw;
    }
    .contactText p{
        font-size: 4vw;
    }
}

body.privacy-page .projectChildText h1 {
    font-size: 2.2vw;
}

body.privacy-page .projectChildText p {
    font-size: 1.15vw;
}
@media all and (max-width: 1100px){
    .nav_links a{
        padding: 2vw 2vw;
    }
    .logo{
        padding-left: 0px;
    }
    .header{
        padding-right: 0;
    }
}
