:root {
    --gold: #d4af37;
    --beige: #f5f5f7;
    --dark: #1a1a1a;
    --soft-text: #4a4a4a;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background-color: var(--beige);
    height: 100vh;
    overflow: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(245, 245, 247, 0.95) 30%, rgba(245, 245, 247, 0.2) 100%);
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 10%;
    max-width: 1400px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-weight: 400;
}

.brand span {
    font-weight: 800;
    color: var(--gold);
}

.main-content {
    max-width: 600px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}

h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

p {
    font-size: 1.2rem;
    color: var(--soft-text);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

.contact-info a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--soft-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .bg-overlay {
        background: linear-gradient(to bottom, rgba(245, 245, 247, 0.85) 0%, rgba(245, 245, 247, 0.95) 100%);
    }
    h1 { font-size: 3rem; }
    .container { padding: 2rem 5%; }
    .footer { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}
