/* Reset & Base Styles */
:root {
    --primary-color: #a67c52; /* Logo bronze-ish color */
    --accent-gold: #c5a075;
    --bg-dark: #0f0f0f;
    --text-light: #ffffff;
    --text-muted: #d1d1d1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(166, 124, 82, 0.15) 0%, rgba(15, 15, 15, 1) 70%);
    z-index: -1;
}

/* Maintenance Card */
.maintenance-container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 10;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 1.5rem; /* Reduced padding */
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInScale 1s ease-out forwards;
    width: 100%;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 1.5rem; /* Reduced margin */
    animation: slideDown 1s ease-out forwards;
    background: white;
    padding: 1.5rem; /* Reduced padding */
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--accent-gold); /* Thinner border */
}

#main-logo {
    max-width: 180px; /* Reduced from 260px */
    height: auto;
    display: block;
}

#main-logo:hover {
    transform: scale(1.05);
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.22rem; /* Reduced from 2.8rem */
    font-weight: 700;
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    background: linear-gradient(to right, var(--text-light), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

p {
    font-size: 1rem; /* Reduced from 1.1rem */
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 550px;
    margin: 0 auto 1.5rem; /* Reduced from 2.5rem */
}

/* Decorative Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    width: 50%;
    margin: 1.5rem auto; /* Reduced from 2rem */
    opacity: 0.5;
}

/* Contact Section */
.contact-info {
    margin-top: 1rem;
    text-align: center;
}

.contact-sub {
    font-size: 0.85rem; /* Reduced */
    margin-bottom: 1rem; /* Reduced */
    opacity: 0.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Reduced gap */
    max-width: 500px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* Reduced */
    padding: 0.25rem; /* Reduced */
}

.label {
    display: block;
    color: var(--accent-gold);
    font-size: 0.75rem; /* Reduced */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-item p, .phone-links, .contact-link {
    font-size: 0.95rem; /* Reduced */
    margin: 0;
    color: var(--text-light);
}

.phone-links a, .contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-links a:hover, .contact-link:hover {
    color: var(--accent-gold);
}

.phone-links a {
    display: inline-block;
}

/* Footer */
.footer {
    padding: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-align: center;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Scaling */
@media (max-width: 600px) {
    h1 {
        font-size: 1.7rem;
    }
    
    #main-logo {
        max-width: 140px;
    }
    
    .glass-card {
        padding: 2rem 1rem;
    }

    .contact-item p, .phone-links, .contact-link {
        font-size: 0.9rem;
    }
}
