* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #111;
    color: white;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

nav a:hover {
    color: #c49b66;
}

.hero {
    background: url('../img/hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #000;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
}

.section {
    padding: 80px 0;
    text-align: center;
}

.section.dark {
    background: #111;
    color: white;
}

.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #c49b66;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #a87c4f;
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}
