/* ============================================
   BALMUKUND JEWELLERS - COMING SOON PAGE
   Premium Luxury Design System
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Brand Colors */
    --gold-primary: #F5A623;
    --gold-light: #FFD700;
    --gold-dark: #C4880F;
    --red-accent: #E53935;
    --red-dark: #B71C1C;

    /* Neutral Colors */
    --black: #1a1a1a;
    --light-bg: #FFFBF5;
    --cream-bg: #FFF9F0;
    --surface-light: #FFFFFF;
    --border-light: #E8E0D5;
    --text-dark: #2D2D2D;
    --text-muted: #5C5C5C;
    --text-subtle: #8A8A8A;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    --gradient-luxury: linear-gradient(135deg, var(--gold-primary) 0%, var(--red-accent) 100%);
    --gradient-light: linear-gradient(180deg, var(--light-bg) 0%, var(--cream-bg) 50%, var(--light-bg) 100%);

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-button: 0 4px 15px rgba(245, 166, 35, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-light);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    animation: floatUp linear infinite;
    filter: blur(1px);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Shimmer Overlay */
.shimmer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(245, 166, 35, 0.03) 25%,
            transparent 50%,
            rgba(229, 57, 53, 0.03) 75%,
            transparent 100%);
    background-size: 400% 400%;
    animation: shimmer 15s ease infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Logo Section */
.logo-wrapper {
    position: relative;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 1s ease forwards;
}

.logo {
    width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    transition: var(--transition-normal);
}

.logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Big Website Coming Soon Text */
.website-coming-soon {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #8B6914 0%, #C4880F 50%, #6B4E0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    animation: fadeInDown 1s ease forwards;
}

.coming-soon-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.letter {
    display: inline-block;
    animation: letterFadeIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes letterFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Decorative Line */
.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.line {
    width: 80px;
    height: 1px;
    background: var(--gradient-gold);
}

.diamond {
    color: var(--gold-primary);
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

/* Description */
.description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: var(--spacing-xl);
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
    line-height: 1.8;
}

/* Social Section */

.social-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.social-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.social-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.social-buttons.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.social-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.social-btn:hover::before {
    left: 100%;
}

/* Social Icon SVG */
.social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* WhatsApp Button */
.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.social-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Instagram Button */
.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    color: var(--white);
}

.social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

/* Facebook Button */
.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0D5DC7 100%);
    color: var(--white);
}

.social-btn.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

/* Address Section */
.address-section {
    width: 100%;
    max-width: 500px;
    margin-bottom: var(--spacing-xl);
}

.address-card {
    background: var(--surface-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
}

.address-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.address-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.5rem;
    color: var(--black);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.address-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.address-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.directions-btn:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-button);
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F5A623 0%, #E53935 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.5);
    z-index: 1000;
    transition: var(--transition-normal);
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.7);
}

.floating-call .pulse-ring {
    border-color: #F5A623;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    border: 3px solid #25D366;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Footer */
.footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--text-subtle);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .logo {
        width: 160px;
    }

    .logo-glow {
        width: 200px;
        height: 200px;
    }

    .input-wrapper {
        flex-direction: column;
        padding: var(--spacing-sm);
    }

    .email-input {
        text-align: center;
    }

    .subscribe-btn {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-sm);
    }

    .social-buttons {
        gap: var(--spacing-sm);
    }

    .social-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .line {
        width: 50px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .logo {
        width: 140px;
    }

    .logo-glow {
        width: 180px;
        height: 180px;
    }

    .coming-soon-text {
        letter-spacing: 0.08em;
    }

    .social-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }

    .floating-whatsapp,
    .floating-call {
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .floating-whatsapp {
        right: 20px;
    }

    .floating-call {
        left: 20px;
    }

    .address-card {
        padding: var(--spacing-md);
    }

    .address-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .website-coming-soon {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle {
        display: none;
    }
}