/* ==========================
   MYMASAR WEBSITE
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

/* Navigation */

header{
    width:100%;
    background:white;
    border-bottom:1px solid #eee;
    position:fixed;
    top:0;
    z-index:1000;
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo img{
    height:32px;
    width:auto;
    display:block;
}

.logo{
    display:flex;
    align-items:center;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#C89B3C;
}

/* Hero Section */

.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    background:linear-gradient(135deg,#0B2E59,#123F73);
    color:white;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
    max-width:900px;
}

.hero p{
    font-size:24px;
    color:#ddd;
    margin-bottom:40px;
}

.hero a{
    background:#C89B3C;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.hero a:hover{
    background:#d8ab49;
    transform:translateY(-3px);
}

/* Mobile */

@media (max-width:768px){

    nav{
        flex-direction:column;
        padding:15px 20px;
    }

    .logo img{
    height:42px;
    width:auto;
    display:block;
}

    nav ul{
        margin-top:10px;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:20px;
    }

}