body {
    margin: 0;
    font-family: serif;
    background: #0b0b0b;
    color: #e8d8a8;
    overflow-x: hidden;
}

/* TEXTURE OVERLAY */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("images/texture.jpg");
    opacity: 0.08;
    pointer-events: none;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.logo {
    color: #d4a85a;
    font-size: 24px;
    letter-spacing: 3px;
}

nav a {
    margin-left: 20px;
    color: #d4a85a;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 80px;
    color: #d4a85a;
}

.hero-content button {
    background: transparent;
    border: 1px solid #d4a85a;
    padding: 10px 20px;
    color: #d4a85a;
    cursor: pointer;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    padding: 40px;
}

.card {
    flex: 1;
    height: 300px;
    background-size: cover;
    position: relative;
    border: 1px solid rgba(212,168,90,0.3);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(transparent, black);
}

/* QUOTE */
.quote {
    text-align: center;
    padding: 60px;
    font-style: italic;
    color: #d4a85a;
}
