/* ======================================================
   Harideep Shopping Mall — Coming Soon Page
   Premium Modern Design
   ====================================================== */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
    /* Brand Colors — Derived from Harideep Shopping Mall logo */
    /* Logo palette: green border, golden-yellow bg, marigold garlands, colorful butterfly */
    --color-primary: #1a3a14;
    --color-primary-light: #2a5a22;
    --color-accent: #f0b830;
    --color-accent-glow: #f5ce5a;
    --color-accent-dark: #d49a18;
    --color-brand-green: #3d7a2e;
    --color-brand-red: #cc2828;

    /* Gradients */
    --gradient-bg: linear-gradient(135deg, #0d1f0a 0%, #142e10 25%, #1a3a14 50%, #1e4418 75%, #142e10 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    --gradient-accent: linear-gradient(135deg, #e8a020, #f0b830, #f5ce5a, #f0b830);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(240, 184, 48, 0.15) 50%, transparent 100%);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-accent: #f0b830;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(61, 122, 46, 0.2);
    --shadow-accent: 0 4px 20px rgba(240, 184, 48, 0.3);
    --shadow-logo: 0 8px 40px rgba(61, 122, 46, 0.3), 0 0 60px rgba(240, 184, 48, 0.15);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ── Reset & Base ── */
*, *::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-bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ── Animated Background Particles ── */
.bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat 20s ease-in-out infinite;
}

.particle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: -5%;
    right: -5%;
    animation-duration: 25s;
}

.particle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #3d7a2e 0%, transparent 70%);
    bottom: 10%;
    left: -3%;
    animation-duration: 18s;
    animation-delay: -5s;
}

.particle-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-duration: 22s;
    animation-delay: -8s;
}

.particle-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #5aa845 0%, transparent 70%);
    top: 30%;
    left: 15%;
    animation-duration: 15s;
    animation-delay: -3s;
}

.particle-5 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #2a6e1e 0%, transparent 70%);
    bottom: -5%;
    right: 30%;
    animation-duration: 28s;
    animation-delay: -10s;
    opacity: 0.08;
}

.particle-6 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: 15%;
    left: 40%;
    animation-duration: 20s;
    animation-delay: -12s;
    opacity: 0.1;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 35px) scale(1.05); }
}


/* ── Main Container ── */
.container {
    width: 100%;
    max-width: 800px;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
    flex: 1;
}


/* ── Logo Section ── */
.logo-section {
    padding-top: var(--space-2xl);
    animation: fadeSlideDown 0.8s ease-out both;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 122, 46, 0.25) 0%, rgba(240, 184, 48, 0.1) 50%, transparent 75%);
    z-index: -1;
    animation: logoPulse 3s ease-in-out infinite;
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 4px 24px rgba(61, 122, 46, 0.35));
    box-shadow: var(--shadow-logo);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 50px rgba(61, 122, 46, 0.4), 0 0 80px rgba(240, 184, 48, 0.2);
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}


/* ── Hero Section ── */
.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

/* "Store is Open" Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Headline */
.headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.headline-brand {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
    filter: drop-shadow(0 2px 10px rgba(240, 184, 48, 0.35));
}

.headline-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    margin: var(--space-xs) 0;
    animation: shimmerBar 3s ease-in-out infinite;
}

@keyframes shimmerBar {
    0%, 100% { width: 60px; opacity: 0.7; }
    50% { width: 90px; opacity: 1; }
}

.headline-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Subtext */
.subtext {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
    font-weight: 400;
}

.subtext strong {
    color: #86efac;
    font-weight: 600;
}


/* ── Info Cards Section ── */
.cards-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    animation: fadeSlideUp 0.8s ease-out 0.4s both;
}

.info-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: transform var(--transition-smooth), 
                border-color var(--transition-smooth), 
                box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 122, 46, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* Card Icon */
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(61, 122, 46, 0.12);
    border: 1px solid rgba(61, 122, 46, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: background var(--transition-fast), transform var(--transition-bounce);
}

.info-card:hover .card-icon {
    background: rgba(61, 122, 46, 0.22);
    transform: scale(1.05);
}

/* Card Title */
.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* Card Address */
.card-address {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Map Link */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    background: rgba(240, 184, 48, 0.08);
    border: 1px solid rgba(240, 184, 48, 0.2);
    transition: all var(--transition-fast);
    margin-top: auto;
}

.map-link:hover {
    background: rgba(240, 184, 48, 0.18);
    border-color: rgba(240, 184, 48, 0.4);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border);
    color: var(--text-primary);
    transform: translateX(4px);
}


/* ── Store Open Ribbon ── */
.store-open-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px var(--space-xl);
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeSlideUp 0.8s ease-out 0.6s both;
    position: relative;
}

.store-open-ribbon svg {
    color: #22c55e;
    flex-shrink: 0;
}

.store-open-ribbon strong {
    color: #86efac;
}

.ribbon-pulse {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(34, 197, 94, 0.3);
    animation: ribbonPulse 3s ease-in-out infinite;
}

@keyframes ribbonPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}


/* ── Footer ── */
.footer {
    width: 100%;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    z-index: 1;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}


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

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ── Responsive Design ── */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-xl);
    }

    .cards-section {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .logo {
        width: 130px;
        height: 130px;
    }

    .logo-wrapper::before {
        width: 170px;
        height: 170px;
    }

    .store-open-ribbon {
        text-align: center;
        flex-wrap: wrap;
        padding: 12px var(--space-lg);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        font-size: 15px;
    }

    .container {
        padding: var(--space-md) var(--space-sm);
        gap: var(--space-lg);
    }

    .logo-section {
        padding-top: var(--space-lg);
    }

    .logo {
        width: 110px;
        height: 110px;
    }

    .logo-wrapper::before {
        width: 140px;
        height: 140px;
    }

    .headline-brand {
        font-size: 1.8rem;
    }

    .headline-tagline {
        font-size: 1.2rem;
    }

    .info-card {
        padding: var(--space-lg) var(--space-md);
    }

    .store-open-ribbon {
        font-size: 0.82rem;
        padding: 10px var(--space-md);
        border-radius: var(--radius-lg);
    }

    .map-link {
        font-size: 0.82rem;
        padding: 8px 14px;
    }

    .contact-item {
        font-size: 0.88rem;
        padding: 8px 10px;
    }

    /* Reduce particle sizes on mobile */
    .particle-1 { width: 150px; height: 150px; }
    .particle-2 { width: 100px; height: 100px; }
    .particle-3 { width: 80px; height: 80px; }
    .particle-5 { width: 120px; height: 120px; }
}

/* Very small screens */
@media (max-width: 360px) {
    .headline-brand {
        font-size: 1.5rem;
    }

    .headline-tagline {
        font-size: 1.05rem;
    }

    .badge {
        font-size: 0.78rem;
        padding: 5px 14px;
    }
}

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 880px;
    }
}

/* 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;
    }
}

/* High contrast / forced colors */
@media (forced-colors: active) {
    .info-card {
        border: 2px solid ButtonText;
    }

    .badge {
        border: 1px solid ButtonText;
    }
}
