@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200;300;400;500&display=swap');
:root {
    --red: #ff1a1a;
}

* {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .5s;
    text-transform: capitalize;
    font-weight: normal;
}

*::selection {
    background: var(--red);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 1.3rem;
}

html::-webkit-scrollbar-track {
    background: #000;
}

html::-webkit-scrollbar-thumb {
    background: var(--red);
}

body {
    height: 100vh;
    /* background-image: url("img/background.jpg"); */
    /* background-image: linear-gradient(to right, rgba(9, 4, 30, 0.925), rgba(22, 3, 20, 0.1)), url("img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover; */
}

#index {
    background-image: linear-gradient(to right, rgba(9, 4, 30, 0.925),rgba(22, 3, 20, 0.1)),url("img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}


/* HEADER */

.header {
    height: 8vh;
    width: 100%;
    padding: 0 8%;
    /* background-color:rgba(238, 23, 31); */
    background-color: #d11818e3;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

#logo {
    height: 6vh;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


/* MAIN SECTION */

.main {
    height: 92vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
}

.text-box {
    color: white;
    /* color: rgb(210, 183, 253); */
    flex-basis: 45%;
    position: relative;
    margin-left: 50px;
}

.text-box h1 {
    font-size: 80px;
}

.text-box p {
    font-size: 25px;
    font-weight: 300;
    color: white;
}

#quote {
    font-size: 30px;
    font-weight: 500;
}

.text-box button {
    border: none;
    padding: 10px;
    margin-top: 15px; 
    font-size: 25px;
    background-color: #ee171f;
    color: white;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.text-box button:hover {
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    padding-left: 50px;
}


/* EXPLORE SECTION */

#explorer {
    background-image: linear-gradient( rgba(9, 4, 30, 0.925),rgba(22, 3, 20, 0.1)),url("img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.exploreHeading {
    color: white;
    font-size: 50px;
    text-align: center;
    margin: 30px 0;
}

.gallery {
    background: transparent;
    padding: 0 8%;
}

.gallery .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .box-container .box {
    /* flex:1 1 30rem; */
    flex: 0 0 30%;
    height: 70vh;
    overflow: hidden;
    background-image: url("img/da734b28921021.55d95297d71f4.gif");
    background-size: contain;
    text-align: center;
    margin: 2rem;
    border-radius: .5rem;
    position: relative;
}

.gallery .box-container .box img {
    height: 100%;
    width: 100%;
}

.gallery .box-container .box .info {
    position: absolute;
    bottom: -120%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: #fff;
    padding: 2rem;
    border: .3rem solid var(--red);
    border-radius: .5rem;
}

.gallery .box-container .box:hover .info {
    bottom: 2rem;
}

.gallery .box-container .box:hover img {
    transform: scale(1.2);
}

.gallery .box-container .box:hover {
    background: #111;
}

.gallery .box-container .box .info h3 {
    background: var(--red);
    color: #fff;
    border-radius: .5rem;
    margin: 0 5rem;
    margin-top: -3.7rem;
    padding: .5rem 2rem;
    font-size: 2.5rem;
}

.gallery .box-container .box .info p {
    font-size: 2rem;
    color: #666;
    padding: .5rem;
    padding-top: 2rem;
}
.gallery .box-container .box .info a{
    color:var(--red);
}

@media only screen and (max-width:700px){
    .main{
        justify-content: center;
        padding: 0;
    }
    .text-box{
        flex-basis: 70%;
        margin: 0;
    }
    .text-box h1{
        font-size: 70px;
    }
    #text{
        font-size: 22px;
        margin-top: 10px;
    }
    #quote{
        font-size: 25px;
    }
    .text-box button{
        opacity: 1;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }
    .text-box button:hover{
        padding: 10px;
    }
    .exploreHeading{
        font-size: 30px;
    }
    .gallery .box-container .box{
        flex:0 0 100%;           
        height: 60vh;            
    }
    #index{
        background-image: linear-gradient( rgba(9, 4, 30, 0.925),rgba(22, 3, 20, 0.85)),url("img/background_portrait.jpg");
    }
}
@media only screen and (min-width:700px) and (max-width:1000px){
    .text-box{
        flex-basis: 60%;
    }
    .text-box h1{
        font-size: 80px;
    }
    .text-box p{
        font-size: 25px;
        font-weight: 300;
    }
    #quote{
        font-size: 30px;
        font-weight: 500;
    }
    .text-box button{
        padding: 10px;
        font-size: 25px;
    }
    .gallery{
        padding: 0 2%;
    }
    .gallery .box-container .box{
        flex:0 0 40%;           
        height: 50vh;            
    }
}
@media only screen and (min-width:1000px) and (max-width:1300px){
    .gallery{
        padding: 0 2%;
    }
    .gallery .box-container .box{
        flex: 0 0 40%;
        height: 60vh;
    }
}
@media only screen and (min-width:1300px) and (max-width:1500px){
    .gallery{
        padding: 0 4%;
    }
}
