/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 80%;
    margin: 0 auto;
}

nav .container {
    display: flex;
    align-items: center;
}

/* Header */
header {
    background: black;
    color: #B89B6E;
    padding: 1rem 0;
}

.brand {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

header h1 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    line-height: 1;
}

header h1 a {
    color: #B89B6E;
    text-decoration: none;
}
header h2 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.4rem;
    text-indent: 0.4rem; /* Offset the last letter's spacing */
}

header h2 a {
    color: #B89B6E;
    text-decoration: none;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px;
}

header a {
    color: #B89B6E;
    text-decoration: none;
}

/* Hero Section */
#hero {
    background: black;
    text-align: center;
}

#hero .container {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/lp_wm_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
}

#hero h2 {
    color: #B89B6E;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    color: black;
    background: #B89B6E;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #a3895d;
}

/* About, Services, Contact Sections */
section {
    padding: 20px 0;
    border-bottom: black 1px solid;
}

section h3 {
    text-align: center;
    margin-bottom: 20px;
}

#services ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#services li {
    margin-bottom: 10px;
}

#contact p {
    text-align: center;
}

/* Footer */
footer {
    background: black;
    color: #B89B6E;
    text-align: center;
    padding: 20px 0;
}

.logo-image {
    height: 120px;
    max-height: 100%;
    margin-right: 15px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        text-align: center;
    }

    .logo-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .brand {
        margin-bottom: 1.5rem;
    }

    header ul {
        width: 100%;
        border-top: 1px solid #B89B6E;
        padding-top: 1rem;
    }

    header li {
        display: block;
        padding: 10px 0;
    }
}
