@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary: #c5a059; /* Gold */
    --bg-dark: #1a1a1a; /* Charcoal */
    --bg-light: #fdfbf7; /* Cream */
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #888888;
    --border: #e0d8c8;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Badge */
.bv-badge {
    background: var(--bg-dark);
    color: var(--primary);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 12px 0;
    letter-spacing: 3px;
    z-index: 1000;
    position: relative;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary);
}

/* Header */
header {
    background: rgba(253, 251, 247, 0.95);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.8rem;
    color: var(--bg-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 35px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--bg-dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
}

.btn-outline {
    border-color: var(--bg-dark);
    color: var(--bg-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: #cccccc;
    padding: 100px 0 40px;
    text-align: center;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    list-style: none;
}

.footer-nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav a:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #666;
    margin-top: 60px;
    border-top: 1px solid #333;
    padding-top: 40px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
}
