/*
Theme Name: Swastik Gallery Coming Soon
Theme URI: https://swastikgallery.com
Description: A premium, elegant coming soon page for Swastik Gallery.
Author: Antigravity
Version: 1.0
*/

:root {
    --primary-color: #720912;
    --primary-light: #a31d2a;
    --accent-gold: #C9A227;
    --accent-gold-light: #E8C154;
    --text-cream: #F8F1E5;
    --text-dark: #2D0508;
    --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 {
    font-family: 'Outfit', sans-serif;
    background-color: var(--text-dark);
    color: var(--text-cream);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Pattern & Gradients */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-light) 0%, var(--text-dark) 100%);
    z-index: -2;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48 0l-2 2h4l-2-2zm-36 0l-2 2h4l-2-2zM36 0l-2 2h4l-2-2zm-12 0l-2 2h4l-2-2zm-6 0l-2 2h4l-2-2zm-6 0l-2 2h4l-2-2zm12 0l-2 2h4l-2-2zm12 0l-2 2h4l-2-2zM0 0l2 2V0H0zm60 0v2l-2-2h2zM0 60l2-2v2H0zm60 0h-2l2-2v2zM48 60l-2-2h4l-2 2zm-36 0l-2-2h4l-2 2zm24 0l-2-2h4l-2 2zm-12 0l-2-2h4l-2 2zm-6 0l-2-2h4l-2 2zm-6 0l-2-2h4l-2 2zm12 0l-2-2h4l-2 2zm12 0l-2-2h4l-2 2zM0 30l2 2-2 2V30zm60 0v2l-2 2 2-2zm-30-4l2-2 2 2-2 2-2-2zM16 26l2-2 2 2-2 2-2-2zm28 0l2-2 2 2-2 2-2-2zm-14 14l2-2 2 2-2 2-2-2zm-14 0l2-2 2 2-2 2-2-2zm28 0l2-2 2 2-2 2-2-2z" fill="%23ffffff" fill-opacity="0.03" fill-rule="evenodd"/></svg>');
    z-index: -1;
    opacity: 0.5;
}

.glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    text-align: center;
    padding: 60px 20px;
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header & Logo */
header {
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.2;
}

h2 {
    display: none;
    /* Hidden since name is in logo */
}

.description {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.count-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-cream);
    font-variant-numeric: tabular-nums;
}

.count-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-top: 5px;
}

/* Form */
.notify-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 40px;
    gap: 10px;
}

.notify-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.notify-form button {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-form button:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: var(--text-cream);
    text-decoration: none;
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
    .countdown {
        gap: 10px;
    }

    .count-item {
        min-width: 70px;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        width: 100%;
    }
}