*{
    margin: 0;

}
        .hero {
            width: 100%;
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('img/header-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 26px;
            font-weight: bold;
        }

        .logo img {
            width: 150px;
            margin-right: 10px;
    
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-size: 18px;
            transition: 0.3s;
        }

        nav ul li a:hover {
            color: #8e7754;;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
        }

        .hero-content h4 {
            font-size: 20px;
            margin-bottom: 5px;
            font-style: normal;
            font-weight: 200;

        }

        .hero-content h1 {
            font-size: 76px;
            margin-bottom: 20px;
            font-family: 'Alegreya';
            line-height: 1.2em;
            font-weight: 500;
        }

        .hero-content p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 35px;
            line-height: 1.6;
            color: #efefef;
        }

        .btn-box {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .btn {
            text-decoration: none;
            padding: 14px 34px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            transition: 0.4s;
        }

        .btn-full {
            background-color: #8e7754;;
            color: white;
            border: 1px darkgoldenrod;
        }

        .btn-border {
            border: 1px solid white;
            color: white;
        }

        .btn:hover {
            background-color: white;
            color: black;
            border-color: white;
        }