/* CSS Variables for elegant "Peacock" and classical Indian theme */
:root {
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa7c11;
    --peacock-teal: #004d40;
    --peacock-dark: #002229;
    --peacock-blue: #01579b;
    --text-light: #f5f5f5;
    --text-muted: #cccccc;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--peacock-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Background aesthetic with rich gradient */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, var(--peacock-teal), var(--peacock-dark) 70%, #000 100%);
    /* A subtle motif or texture can be added with CSS patterns */
    background-size: cover;
    background-position: center;
}

/* Animated subtle overlay to give a premium feel */
.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 34, 41, 0.8) 0%, rgba(0, 77, 64, 0.6) 50%, rgba(1, 87, 155, 0.5) 100%);
}

.content-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    z-index: 10;
}

/* Frosted glass effect for the central card */
.glass-panel {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

/* Decorative shine effect on the glass */
.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    transform: rotate(45deg);
    pointer-events: none;
}

.decorative-top {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    height: 1px;
    width: 30%;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.motif {
    font-size: 1.8rem;
    margin: 0 15px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.coming-soon {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 85%;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--gold-primary);
    color: var(--peacock-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .motif {
        font-size: 1.4rem;
    }
}