/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:'Outfit', sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 30px;

    z-index:1000;
}
.mobile-menu{
    position:relative;
}
/* LOGO */
.logo img{
    height:150px;
}

/* NAV LINKS */
.navbar ul{
    display:flex;
    gap:20px;
    list-style:none;
}

.navbar ul li a{
    text-decoration:none;
    color:#b23a3a;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

.navbar ul li a:hover{
    color:#5f7742;
}

/* HERO */
.hero{
    position:relative;
    width:100%;
    height:100vh;
}

/* IMAGE */
.bg-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CENTER TEXT */
.hero-title{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

/* BRAND */
.brand{
    text-align:center;
}

/* MAIN TITLE */
.brand h1{
    font-size:70px;     /* smaller than previous */
    font-weight:900;
    color:white;
    letter-spacing:3px;
    text-transform:uppercase;
    text-shadow:0 4px 20px rgba(0,0,0,0.4);
}

/* SUB TITLE */
.brand p{
    margin-top:8px;
    text-align:right;
    font-size:16px;
    font-weight:400;
    color:white;
    letter-spacing:2px;
    text-shadow:0 4px 20px rgba(0,0,0,0.4);
}

/* Hide hamburger on desktop */
.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#b23a3a;
}

/* Mobile */
@media screen and (max-width:768px){

   .logo img{
    margin-left:-30px;
}
    
    .menu-toggle{
        display:block;
    }

    .navbar ul{
    display:none;
    flex-direction:column;

    position:absolute;

    top:100%;
    right:0;

    margin-top:3px;

    background:white;

    padding:10px 7px;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);

    min-width:180px;
}

    .menu-toggle{
    display:block;
    position:relative;
}
    .navbar ul.active{
        display:flex;
    }

    .brand h1{
        font-size:45px;
    }

    .brand p{
        font-size:15px;
    }
}


/* for maruqee */
.marquee{
    position:absolute;
    top:150px;
    width:100%;
    overflow:hidden;
    white-space:nowrap;
    color:white;
    /* color:#d4af37; */
}

.marquee span{
    display:inline-block;
    padding-left:100%;

    font-size:60px;
    font-weight:900;

    color:rgba(255,255,255,0.15);

    text-transform:uppercase;

    animation:scroll 20s linear infinite;
}

.portfolio-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:12px 28px;
    border:none;
    border-radius:50px;
    color:white;
    text-decoration:none;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    position:relative;
    top:100px;
}

/* .portfolio-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 28px;
    border-radius:50px;
    background:rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
    color:white;
    text-decoration:none;
    font-weight:500;
    position:relative;
    top:30px;
} */

@keyframes scroll{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-100%);
    }
}
