body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
}

header {
    background: #111;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 20px;
    letter-spacing: 2px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #ffb400;
}

.logo img {
    height: 70px;
    width: auto;
}

.hero {
    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),
        url('images/hero-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: transparent;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #c47b39;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #9b5f2d;
}
