@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600;800&display=swap');

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

body, html {
    background-color: #1d1d1d;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Nav ────────────────────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(29, 29, 29, 0.65);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: linear-gradient(to right, #d4af37, #b0c4de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    padding: 10px 20px;
    background-color: #d4af37;
    color: #1d1d1d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #b0c4de;
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ── Hero ───────────────────────────────────────────────────────── */

main {
    padding-top: 16vh;
    position: relative;
    z-index: 10;
}

.hero {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1.15;
}

.hero p {
    color: #b3b3b3;
    max-width: 680px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* ── Cards ──────────────────────────────────────────────────────── */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 0 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.card {
    background-color: rgba(29, 29, 29, 0.75);
    padding: 35px;
    border: 1px solid #b3b3b3;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #d4af37;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.card p {
    color: #b3b3b3;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .cards {
        padding: 0 10px;
    }
}

/* ── CTA / Signal ───────────────────────────────────────────────── */

.cta {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.signal-status {
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 20px;
}

.signal-cta {
    display: inline-block;
    padding: 14px 36px;
    background-color: #d4af37;
    color: #1d1d1d;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.signal-cta:hover {
    background-color: #b0c4de;
    transform: translateY(-3px);
}

.signal-sub {
    margin-top: 16px;
    color: #b3b3b3;
    font-size: 0.9rem;
}
