*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}
/* nav */
a{
    color: white;
    text-decoration: none;
}
nav{
    width: 100%;
    background-color: #ff990f;
    display: flex;
    font-size: 24px;
    padding: 10px 0;
}
ul{
    display: flex;
    gap: 10px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
 }

.logo-image{
    margin-left: 10px;
    width: 35px;
    height: 30px;
}
.right-nav{
    margin-left: auto;
    display: flex;
    font-size: 20px;
}
.right-nav a{
    margin-right: 25px;
    
}
.right-nav button{
    margin-right: 5px;
    padding: 5px 15px;
}

    /* header */
header{
    width: 100%;
    height: 100vh;
    background-image: url(aesthetic-rest-hero.webp);
    background-position: center;
    background-size:cover ;
    background-repeat: no-repeat;

}
.name{
    font-size: 55px;
    text-align: center;
    text-decoration: underline;
    color: #ff990f;
}
.smallheading{
    text-align: center;
    font-size: 30px;
    color: #ff990f;    
}
.centerheading{
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    font-size: 50px;
    position: absolute;
    left: 375px;
    top: 400px;
    font-weight: 550;
}
.centerpara{
    font-size: 16px;
    font-weight: 100;
}
.centerheading button{
    padding: 10px 5px;
    font-size: 20px;
    background-color: #ff990f;
    box-sizing: border-box;
    border-radius: 9px;
}

/* hero section */
section{
    width: 100%;
    background-color: #0f172a;
    height: 500px;
}
section h1{
    color: white;
    text-align: center;
}

.maincard{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 15px;
}

.card{
    width: 370px;
    height: 350px;
    border-radius: 10px;
    border: 2px solid black;
    background-color: #444;
    color: white;
}

.card img{
    width: 100%;
    height: 75%;
}
.card p {
    text-align: center;
    padding-top: 5px;
}

.card h3{
    font-size: 28px;
    text-align: center;
}
.card p{
    font-size: 20;
}

/* video */

.video-div{
    width: 100%;
    height: 450px;
}

/* contact */
.contact{
    width: 100%;
    height: 400px;
    background-color: #04070d;
    color: white;
}

.contact-div{
    display: flex;
    margin: 0 100px;
    padding-top: 60px;
}
.contact h1{
    padding-top: 20px;
}
.first-column h1{
    margin-bottom: 15px;
}
.all-icon-div{
    display: flex;
    gap: 30px;
}
.icon{
    margin-top: 20px;
    padding: 10px;
    border: 1px solid white;
    border-radius: 40px;
    font-size: 25px;
}
.second-column{
    position: absolute;
    left: 850px;
    line-height: 35px;
}
.third-column{
    position: absolute;
    left: 1100px;
    line-height: 35px;
}
.forth-column{
    position: absolute;
    left: 1320px;
    line-height: 35px;
}

/* footer */

footer{
    width: 100%;
    height: 45px;
    background-color: #0f172a;
    color: white;
    display: flex;
    padding-top: 25px;
}

.second-last-para{
    margin-left: 100px;
}
.last-para{
    margin-left: 820px;
}
