/* Design variables */
:root {
    --color-primary: #0b2b26;        /* Deep luxury forest green */
    --color-accent: #c5a880;         /* Warm champagne gold */
    --color-accent-dark: #a88a61;    /* Accent color hover */
    --color-white: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

body, html {
    height: 100%;
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: var(--color-primary);
    overflow: hidden;
}

/* Fullscreen Centered Container */
.placeholder-container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Background Image with Zoom Animation */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slowZoom 20s ease-out forwards;
}

/* Background Overlay for Contrast */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 43, 38, 0.95) 0%, rgba(11, 43, 38, 0.8) 100%);
    z-index: 2;
}

/* Glassmorphic Card */
.glass-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Card Header */
.tagline {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 15px;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.decor-line {
    width: 80px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 0 auto 35px;
}

/* Card Body */
.status-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 12px;
}

.instruction-text {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    line-height: 1.5;
}

/* Phone Buttons */
.phone-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.phone-button i {
    font-size: 16px;
}

.phone-button:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

/* Card Footer */
.card-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.card-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

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

/* Responsive adjustments */
@media (max-width: 576px) {
    .glass-card {
        padding: 40px 24px;
    }
    
    .phone-button {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }
}
