/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#090909;
    color:#fff;
    overflow-x:hidden;
    overflow-y:auto;
}

/* =========================================================
   BACKGROUND
========================================================= */

.background{
    position:fixed;
    inset:0;
    background:url("assets/hero-bg.jpg") center center/cover no-repeat;
    z-index:-5;
}

.overlay{
    position:fixed;
    inset:0;
    background:
    linear-gradient(90deg,
    rgba(5,5,5,.94) 0%,
    rgba(5,5,5,.86) 34%,
    rgba(5,5,5,.58) 58%,
    rgba(5,5,5,.15) 100%);
    z-index:-4;
}

/* =========================================================
   GLOW
========================================================= */

.glow{
    position:fixed;
    width:700px;
    opacity:.25;
    pointer-events:none;
    z-index:-3;
    animation:floatGlow 12s ease-in-out infinite;
}

.glow-left{
    left:-220px;
    bottom:-220px;
}

.glow-right{
    right:-200px;
    top:-150px;
    transform:rotate(180deg);
}

/* =========================================================
   HEADER
========================================================= */

header{

    width:100%;

    position:absolute;

    top:0;
    left:0;

    padding:38px 90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:100;

}

.logo img{

    width:215px;
    display:block;

}

nav{

    display:flex;
    gap:42px;

}

nav a{

    text-decoration:none;

    color:#fff;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    transition:.35s;

}

nav a:hover{

    color:#f39b32;

}

/* =========================================================
   HERO
========================================================= */

main{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:170px 90px 120px;

    gap:40px;

}

/* =========================================================
   LEFT
========================================================= */

.content{

    width:48%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    animation:fadeUp 1s ease;

}

.subtitle{

    display:flex;
    align-items:center;
    gap:20px;

    color:#ef9631;

    text-transform:uppercase;

    letter-spacing:5px;

    font-size:14px;

    margin:38px 0 28px;

}

.subtitle::before,
.subtitle::after{

    content:"";

    width:70px;
    height:1px;

    background:#ef9631;

}

.content h1{

    font-family:"Cormorant Garamond",serif;

    font-size:118px;

    line-height:.90;

    font-weight:500;

    letter-spacing:1px;

    margin-bottom:30px;

}

.content h1 span{

    display:block;

    color:#ef9631;

}

.divider{

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:34px;

}

.divider span{

    width:140px;
    height:1px;

    background:rgba(255,255,255,.20);

}

.divider i{

    color:#ef9631;
    font-size:18px;

}

.content p{

    width:620px;
    max-width:100%;

    color:#d7d7d7;

    font-size:20px;

    line-height:1.9;

    font-weight:300;

    margin-bottom:50px;

}

/* =========================================================
   BUTTON
========================================================= */

.notify-btn{

    display:inline-flex;
    align-items:center;
    gap:15px;

    width:max-content;

    padding:18px 38px;

    border:1px solid rgba(243,155,50,.45);

    color:#fff;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:3px;

    transition:.4s;

}

.notify-btn i{

    color:#ef9631;

}

.notify-btn:hover{

    background:#ef9631;

    color:#111;

    transform:translateY(-5px);

}

.notify-btn:hover i{

    color:#111;

}

/* =========================================================
   RIGHT BUILDING
========================================================= */

.building{

    width:48%;

    display:flex;
    justify-content:flex-end;
    align-items:center;

}

.building img{

    width:760px;

    max-width:100%;

    filter:drop-shadow(0 35px 60px rgba(0,0,0,.65));

    animation:fadeRight 1.2s ease;

}

/* =========================================================
   FEATURES
========================================================= */

.features{

    width:88%;

    margin:0 auto 60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:rgba(0,0,0,.45);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    overflow:hidden;

    -webkit-backdrop-filter:blur(16px);
    backdrop-filter:blur(16px);

}

.feature{

    padding:35px 20px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:18px;

    border-right:1px solid rgba(255,255,255,.08);

}

.feature:last-child{

    border-right:none;

}

.feature i{

    font-size:32px;

    color:#ef9631;

}

.feature span{

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

}

/* =========================================================
   FOOTER
========================================================= */

footer{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    margin:30px 0 50px;

    color:#ef9631;

    letter-spacing:6px;

    font-size:13px;

    text-transform:uppercase;

}

footer span{

    width:140px;

    height:1px;

    background:#8d5c21;

}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(70px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(100px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes floatGlow{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0);

    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

header{

padding:30px 50px;

}

main{

padding:160px 50px 100px;

}

.content h1{

font-size:90px;

}

.content p{

font-size:18px;

}

}

@media(max-width:991px){

nav{

display:none;

}

main{

flex-direction:column;

text-align:center;

padding-top:150px;

}

.content{

width:100%;

align-items:center;

}

.subtitle{

justify-content:center;

}

.divider{

justify-content:center;

}

.building{

width:100%;

justify-content:center;

}

.building img{

width:500px;

}

.features{

grid-template-columns:repeat(2,1fr);

width:92%;

}

footer{

flex-wrap:wrap;

}

}

@media(max-width:650px){

header{

padding:25px;

}

.logo img{

width:170px;

}

.content h1{

font-size:60px;

}

.subtitle{

font-size:11px;

letter-spacing:2px;

}

.subtitle::before,
.subtitle::after{

width:35px;

}

.content p{

font-size:15px;

line-height:1.8;

}

.notify-btn{

padding:15px 24px;

font-size:12px;

}

.features{

grid-template-columns:1fr;

}

.feature{

border-right:none;

border-bottom:1px solid rgba(255,255,255,.08);

}

.feature:last-child{

border-bottom:none;

}

footer{

font-size:11px;

gap:15px;

}

footer span{

width:40px;

}

}

.contact-number{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:40px;
    font-size:22px;
    font-weight:500;
}

.contact-number i{
    color:#ef9631;
}

.contact-number a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-number a:hover{
    color:#ef9631;
}