/* -------------------------------------------------------------
   MORAL JEWEL - Under Maintenance Stylesheet
   ------------------------------------------------------------- */

/* Design Tokens & Variables */
:root {
    --bg-primary: #070707;
    --card-bg: rgba(18, 16, 16, 0.65);
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-gold-hover: rgba(212, 175, 55, 0.4);
    
    /* Typography colors */
    --text-light: #ffffff;
    --text-muted: #a8a29e;
    
    /* Gold Gradients */
    --gold-light: #ecd599;
    --gold-mid: #d4af37;
    --gold-dark: #aa7c11;
    
    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Orbs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    left: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--gold-mid) 0%, transparent 70%);
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: -15%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-dark) 0%, transparent 75%);
    animation: floatGlow 22s ease-in-out infinite alternate-reverse;
}

/* Main Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Glassmorphism Card styling */
.maintenance-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 60px 40px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: border-color 0.5s ease;
}

.maintenance-card:hover {
    border-color: var(--border-gold-hover);
}

/* Logo and Branding */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.jewel-svg {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    animation: rotateJewel 24s linear infinite;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Divider design */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    width: 60%;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.gold-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-mid);
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: 0 0 6px var(--gold-mid);
}

/* Main Content Text styling */
.content-section {
    margin-bottom: 40px;
}

.status-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 16px;
}

.status-message {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    max-w-md: 480px;
    margin: 0 auto;
}

/* Footer and Contact Details */
.contact-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
    color: var(--text-light);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.contact-link .icon {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.contact-bullet {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateJewel {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, -20px) scale(1.1);
    }
}

.sparkle {
    animation: sparkleAnim 3s ease-in-out infinite;
}

.sparkle.delay-1 {
    animation-delay: 1s;
}

.sparkle.delay-2 {
    animation-delay: 2s;
}

@keyframes sparkleAnim {
    0%, 100% {
        opacity: 0.3;
        r: 1px;
    }
    50% {
        opacity: 1;
        r: 3px;
        fill: #fffbeb;
    }
}

/* Responsiveness adjustments */
@media (max-width: 640px) {
    .maintenance-card {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .brand-title {
        font-size: 1.8rem;
        letter-spacing: 0.2em;
    }
    
    .status-heading {
        font-size: 1.4rem;
    }
    
    .status-message {
        font-size: 0.88rem;
        line-height: 1.7;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .contact-bullet {
        display: none;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
}
