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

.hero{

    position:relative;
    width:100%;
    height:100vh;

    background:url("../images/index_image.jpg") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

}

.navbar{

    position:absolute;

    top:40px;
    left:70px;
    right:70px;

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

    z-index:2;

}

.logo img{

    width:70px;
    background:white;
    border-radius:50%;

}

.nav-links{

    display:flex;
    list-style:none;
    gap:50px;

}

.nav-links a{

    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#d8b36b;

}

.hero-content{

    position:relative;
    z-index:2;

    text-align:center;

    color:#fff;

    width:900px;

}

.hero-content h1{

    font-size:90px;
    font-family:"Playfair Display",serif;
    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1 span{

    color:#d8b36b;

}

.hero-content p{

    font-size:23px;

    line-height:1.7;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}

.btn-primary{

    padding:16px 40px;

    background:#b8744a;

    color:white;

    border-radius:6px;

    text-decoration:none;

    font-size:20px;

    font-weight:600;

}

.btn-primary:hover{

    background:#935635;

}

.btn-secondary{

    padding:16px 40px;

    border:2px solid white;

    color:white;

    text-decoration:none;

    border-radius:6px;

}

.btn-secondary:hover{

    background:white;

    color:black;

}

.hero-footer{

    position:absolute;

    bottom:30px;

    left:60px;
    right:60px;

    display:flex;
    justify-content:space-between;

    color:white;

    border-top:1px solid rgba(255,255,255,.5);

    padding-top:20px;

    z-index:2;

    font-size:18px;

}


/* ================================
   ANDROID / MOBILE
================================ */

@media (max-width: 768px) {

    .hero {
        min-height: 100svh;
        height: auto;
        background-position: center center;
    }

    .navbar {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .logo img {
        width: 52px;
    }

    /* Hide desktop navigation */
    .nav-links {
        display: none;
    }

    .hero-content {
        width: 90%;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 11vw, 58px);
        line-height: 1.05;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 190px;
        padding: 13px 20px;
        font-size: 16px;
        text-align: center;
    }

    .hero-footer {
        position: absolute;

        left: 20px;
        right: 20px;
        bottom: 20px;

        flex-direction: column;
        align-items: center;

        gap: 8px;

        padding-top: 15px;

        font-size: 13px;

        text-align: center;
    }

}