/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #121212; /* Dark fall-back */
}

/* Luxury Background */
body {
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80&w=1920') no-repeat center center fixed;
    background-size: cover;
}

/* Dark Overlay for Readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8));
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

/* Header & Logo */
header {
    margin-bottom: 50px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 8px;
    color: #D4AF37; /* Royal Gold */
    margin-bottom: 10px;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e0e0e0;
}

/* Hero Section */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 span {
    font-style: italic;
    font-weight: 400;
    color: #D4AF37;
}

p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 300;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    border: 1px solid #D4AF37;
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #D4AF37;
}

/* Contact Box */
.contact-box {
    margin-top: 20px;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 5px;
    transition: 0.3s;
}

.email-link:hover {
    color: #D4AF37;
}

/* Footer */
footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.location {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Simple Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo { font-size: 1.8rem; letter-spacing: 4px; }
    h2 { font-size: 2.2rem; }
    p { font-size: 1rem; }
}