/* Reset and Base Styles */
:root {
    --gold: #d4af37;
    --gold-light: #f9e29c;
    --dark: #0a0a0a;
    --darker: #050505;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Overlay */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.1);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--darker) 100%);
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Main Content */
.main-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards ease-out 0.5s;
}

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

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.5)); }
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Contact Buttons */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px);
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

.btn-email:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.btn i {
    font-size: 1.4rem;
}

/* Particles/Interactivity */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .subtitle { font-size: 0.9rem; letter-spacing: 4px; }
    .contact-actions { flex-direction: column; gap: 1rem; align-items: center; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }
}
