/* Reset */

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#020617;
    color:white;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:25px 80px;
    background:rgba(2,6,23,.85);
    backdrop-filter:blur(10px);
    z-index:1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
}
.hero{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 80px 40px;
}

.hero-content{
    width:100%;
    max-width:1300px;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.hero-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-text .welcome{
    font-size:18px;
    color:#38bdf8;
    letter-spacing:4px;
}

.hero-text h2{
    font-size:80px;
    margin:15px 0;
    line-height:1;
}

.subtitle{
    font-size:24px;
    color:#94a3b8;
}

.hero-door{
    display:flex;
    justify-content:center;
    align-items:center;
}

.door{
    width:280px;
    height:450px;

    background:linear-gradient(to right,#59341f,#7c5234,#59341f);

    border:8px solid #a6764d;
    border-radius:10px;

    position:relative;

    box-shadow:
        0 0 30px rgba(0,0,0,.5),
        inset 0 0 20px rgba(255,255,255,.08);
}

.door-handle{
    width:20px;
    height:20px;

    background:gold;

    border-radius:50%;

    position:absolute;

    top:50%;
    right:25px;

    transform:translateY(-50%);
}
