*{
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(183, 183, 183);
}

body p{
    font-size: 26px;
}

.header{
    width: 100%;

}
.container{
    padding: 40px 10%;

}
.container h1{
    font-size: 60px;
}
nav{
    display: flex;
    padding: .1% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(173, 128, 128);
}

nav img{
    width: 150px;
    margin: 0;
    padding: 0;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style:none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: linear-gradient(rgba(96, 58, 96, .1),rgba(143, 63, 63,1));
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%
}

nav .fa {
    display: none;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 4px;
    font-size: 14px;
    color: white;
}

.about-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.about-btn:hover{
    border: 1px solid purple;
    border-radius: 4px;
    color: black;
    font-weight: 700;
    background: rgb(82, 57, 82);
    
}

nav .fa{
    display: none;
}

.bgimg2{
    min-height: 400px;
    width: 100%;
    background-image: linear-gradient(rgba(60,60,60,.2), rgba(60,60,60,.2)), url(images/jumpy.jpg);
    background-position: top;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.bgimg3{
    min-height: 400px;
    width: 100%;
    background-image: linear-gradient(rgba(60,60,60,.2), rgba(60,60,60,.2)), url(images/lax3.jpg);
    background-position: top;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block; 
    }
    .nav-links{
        position: absolute;
        background: linear-gradient(rgba(96, 58, 96, .7),rgba(143, 63, 63,.9));
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 4000;
        transition: 1s;
    }

    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
}

/*------ hobbies ----*/

.hobbies{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: rgb(156, 29, 29);
    font-size: 14px;
    font-weight: 300px;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    text-align: left;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hobbie-col{
    flex-basis: 31%;
    background: rgba(136, 115, 142, 0.2);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
}

h3{
    text-align: center;
    font-weight: 500;
    margin: 10px 0;
}

.hobbie-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,.2)
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/* gallery*/

#gallery{
    width: 80%;
    margin: auto;
    border-radius: 10px;
    text-align: center;
    padding-top: 50px;
}
.album-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.albums{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.albums img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}

.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(96, 58, 96, .7),rgba(143, 63, 63,.9));
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 8px;
    text-align: center;
    transition: height 0.5s;
}
.layer h3, p{
    font-weight: 500;
    margin-bottom: 20px;
    color: black;
}
.layer a{
    margin-top: 20px;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;

}
.albums:hover img{
    transform:scale(1.1);
}
.albums:hover .layer{
    height: 100%;
}
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 2px solid purple;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    transition: all 0.5s;
}

/* ----------- drink page content --------  */

.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis: 65%;
}
.blog-left img{
    width: 100%;
}
.blog-left h2{
    justify-content: left;
    font-weight: 600;
    margin: 30px 0;
}