/*
todo:
- mobile and pc @media
- fix colors
- fix fonts
- fix links

to add:
- pricing
- contact info
- socials links
- booking

*/
* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    
    
}
html {
    scroll-behavior: smooth;
    background-color: #1e1e1e;
}
/* header */
.header{
    width: 100%;
}
.nav{
    display: flex;
    padding-left: 1%;
    padding-right: 6%;
    padding-top: 0%;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    
}
.nav-links{
    flex: 1;
}
.nav-links ul{
    margin-right: 50px;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 11px 30px;
    position: relative;
    text-align: right;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-family: "TharLon-Regular", Helvetica;
    font-weight: 400;
    text-align: right;
}
@media(max-width:600px){
    .nav-links ul{
        margin-right: 10px;
        text-align: right;
    }
    .nav-links ul li a{
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-family: "TharLon-Regular", Helvetica;
        font-weight: 400;
        text-align: right;
    }   
    
    
}

/* cards */
.info{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: "TharLon-Regular", Helvetica;
    height: 600px;
}

/* pricing */
.top-card{
    background-color: #3A3A3A;
    border-radius: 40px;
    padding: 30px;
    padding-right: 50px;
    margin: 20px;
    margin-right: 20px;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: white;
    height: 360px;
}
.top-card ul{
    font-family: "TharLon-Regular", Helvetica;
    font-weight: 600;
    
}

/* booking button */
.bot-card{
    background-color: #3A3A3A;
    border-radius: 30px;
    padding: 100px;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    text-align: center;
    text-decoration: none;
    align-content: center;
    color: white;
    font-size: 25px;
    font-weight: 600;
    font-family: "TharLon-Regular", Helvetica;
    position: relative;
}
.bot-card a{
    text-align: center;
}
.bot-card2{
    display: flex;
    border-radius: 40px;
    margin: 20px;
    margin-right: 20px;
    margin-top: 75px;
    color: white;
    height: 40px;
    align-items: center;
}

/* right */
.right-card{
    background-color: #3A3A3A;
    border-radius: 40px;
    padding: 60px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 20px;
    margin-right: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: white;
    padding-bottom: 100px;
    place-items: center;
    text-align: center;
}

.right-card h2{
    text-align: center;
}
@media(max-width:600px){
    .info{
        flex-direction: column;
        height: 100%;
        align-content: center;
        gap: 0px;
/*        align-items: center;*/
    }
    .top-card{
        order: 2;
        margin-top: 10px;
        margin: 20px;
        margin-bottom: 0px;
        height: 500px;
        padding: 20px;
        padding-top: 40px;
    }
    .right-card{
        order: 1;
        margin-right: 20px;
    }
    .left-card{
        order:3;
    }
    .bot-card{
        padding: 10px;
        font-size: 18px;
    }
    .bot-card2{
        padding: 10px;
        margin-top: 20px;
    }
}
/* left */
.left-card{
    flex: auto;
    
}
/* profile */
.pfp{
    height: 150px;
    width: 150px;
    align-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.insta{
    margin-top: 30px;
    height: 40px;
}