/* ===== Base ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", serif;
    background-color: #0b0b0b;
    color: #eaeaea;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Layout ===== */

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.narrow {
    max-width: 700px;
}

/* ===== Header ===== */

header {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: #d4af37;
    letter-spacing: 1px;
}

nav a {
    margin-left: 20px;
    font-size: 0.95rem;
    color: #ccc;
}

.contact-btn {
    border: 1px solid #d4af37;
    padding: 6px 14px;
    border-radius: 2px;
    color: #d4af37;
}

.contact-btn:hover {
    background: #d4af37;
    color: #000;
}

/* ===== Hero ===== */

.hero {
    position: relative;
    height: 100vh;
    background: url('diamond-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.hero-content {
    position: relative;
    max-width: 750px;
    padding: 20px;
}

.hero h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta {
    display: inline-block;
    padding: 12px 28px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    border-radius: 2px;
}

.cta:hover {
    background: #b9972e;
}

/* ===== Sections ===== */

.section {
    padding: 100px 0;
    text-align: center;
}

.section h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.section p {
    color: #cfcfcf;
    font-size: 1.05rem;
}

.alt {
    background-color: #111;
}

/* ===== Footer ===== */

footer {
    background: #050505;
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-brand {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

footer a {
    color: #d4af37;
}

copyright {
    margin-top: 20px;
    color: #777;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    nav {
        display: none;
    }
}
