/* ===========================
   RESET
=========================== */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
}

/* ===========================
   NAVIGATION
=========================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#145A32;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo h2{
    color:white;
    font-size:30px;
}

.tagline{
    color:#D4AF37;
    font-size:14px;
    font-style:italic;
    margin-top:5px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.nav-links a:hover{
    color:#D4AF37;
}

/* ===========================
   HERO SECTION
=========================== */

.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

    padding:60px 8%;
}
.hero-content{
    max-width:850px;
}

.hero h1{
    font-size:58px;
    color:white;
    line-height:1.2;
    margin-bottom:20px;
}

.hero h3{
    color:#D4AF37;
    font-size:26px;
    margin-bottom:25px;
    font-style:italic;
}

.hero p{
    color:white;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

/* ===========================
   BUTTONS
=========================== */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#145A32;
    color:white;
    padding:16px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#0d3d22;
}

.btn-secondary{
    background:#D4AF37;
    color:#145A32;
}

.btn-secondary:hover{
    background:#c39b16;
}

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

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:18px;
    }

}
