/* ============================================
   YUNBLOOM - Under Construction Page Styles
   MOBILE-FIRST APPROACH ✨
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Color Palette - Mystical & Calming */
    --color-primary: hsl(270, 45%, 25%);
    --color-secondary: hsl(280, 60%, 45%);
    --color-accent: hsl(45, 85%, 65%);
    --color-accent-light: hsl(45, 90%, 75%);
    --color-bg-dark: hsl(260, 30%, 12%);
    --color-bg-overlay: hsla(270, 40%, 15%, 0.85);
    --color-text-light: hsl(0, 0%, 95%);
    --color-text-muted: hsl(0, 0%, 75%);
    --color-glow: hsla(280, 80%, 60%, 0.6);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing - Mobile First */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== Animated Background ===== */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--color-bg-dark) 0%,
            var(--color-primary) 50%,
            var(--color-bg-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===== Floating Particles (Mobile: Less visible) ===== */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-accent-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent-light);
    opacity: 0.4;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation: float 10s ease-in-out infinite 1s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation: float 12s ease-in-out infinite 2s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation: float 9s ease-in-out infinite 1.5s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation: float 11s ease-in-out infinite 0.5s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 40%;
    animation: float 13s ease-in-out infinite 3s;
}

.particle:nth-child(7) {
    top: 50%;
    left: 90%;
    animation: float 10s ease-in-out infinite 2.5s;
}

.particle:nth-child(8) {
    top: 15%;
    left: 60%;
    animation: float 14s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(15px);
    }

    50% {
        transform: translateY(-40px) translateX(-15px);
    }

    75% {
        transform: translateY(-20px) translateX(15px);
    }
}

/* ===== Main Container - MOBILE FIRST ===== */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-sm);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===== Logo - MOBILE FIRST ===== */
.logo-container {
    margin-bottom: var(--spacing-md);
    opacity: 0;
}

.logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 12px var(--color-glow)) drop-shadow(0 0 24px var(--color-glow));
    transition: var(--transition-smooth);
}

.logo:hover {
    filter: drop-shadow(0 0 18px var(--color-accent)) drop-shadow(0 0 36px var(--color-accent));
    transform: scale(1.05);
}

/* ===== Typography - MOBILE FIRST ===== */
.main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg,
            var(--color-accent-light),
            var(--color-accent),
            var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-accent),
            transparent);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.05em;
    opacity: 0;
    padding: 0 var(--spacing-xs);
}

/* ===== Description - MOBILE FIRST ===== */
.description {
    max-width: 100%;
    margin: var(--spacing-md) auto;
    padding: 0 var(--spacing-xs);
    opacity: 0;
}

.desc-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

/* ===== Decorative Divider ===== */
.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-lg) 0;
    opacity: 0;
}

.divider-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-accent),
            transparent);
}

.divider-dot {
    width: 5px;
    height: 5px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* ===== Coming Soon - MOBILE FIRST ===== */
.coming-soon {
    margin: var(--spacing-md) 0;
    opacity: 0;
    padding: 0 var(--spacing-sm);
}

.coming-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-accent-light);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ===== Features - MOBILE FIRST ===== */
.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    max-width: 320px;
    opacity: 0;
}

.feature-item {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--color-bg-overlay);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid hsla(280, 60%, 45%, 0.2);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:active {
    transform: scale(0.98);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    filter: grayscale(0.3);
    transition: var(--transition-smooth);
}

.feature-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

/* ===== WhatsApp Floating Button - MOBILE FIRST ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4),
        0 8px 32px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    animation: bounceIn 1s ease-out;
}

.whatsapp-button:active {
    transform: scale(0.9);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    color: white;
    transition: var(--transition-smooth);
}

@keyframes bounceIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    z-index: -1;
    animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ========================================
   TABLET - Min 600px
   ======================================== */
@media (min-width: 600px) {
    :root {
        --spacing-md: 2rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }

    .container {
        padding: var(--spacing-md);
    }

    .logo {
        max-width: 160px;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .main-title::after {
        width: 80px;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .description {
        max-width: 600px;
        padding: 0;
    }

    .desc-text {
        font-size: 1.05rem;
    }

    .divider-line {
        width: 60px;
    }

    .coming-text {
        font-size: 1.5rem;
    }

    .features {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
        gap: var(--spacing-md);
    }

    .feature-item {
        flex: 0 1 calc(50% - var(--spacing-md));
        max-width: 280px;
    }

    .feature-item:hover {
        transform: translateY(-8px);
        border-color: var(--color-accent);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
            0 0 25px var(--color-glow);
    }

    .feature-item:hover .feature-icon {
        filter: grayscale(0);
        transform: scale(1.1) rotate(5deg);
    }

    .particle {
        width: 4px;
        height: 4px;
        opacity: 0.5;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 24px;
        right: 24px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .whatsapp-button:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5),
            0 12px 56px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-button:hover .whatsapp-icon {
        transform: scale(1.1);
    }
}

/* ========================================
   DESKTOP - Min 900px
   ======================================== */
@media (min-width: 900px) {
    :root {
        --spacing-md: 2rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }

    .container {
        max-width: 1200px;
        padding: var(--spacing-md);
    }

    .logo {
        max-width: 200px;
    }

    .main-title {
        font-size: 4.5rem;
    }

    .main-title::after {
        width: 100px;
    }

    .subtitle {
        font-size: 1.6rem;
    }

    .description {
        max-width: 700px;
    }

    .desc-text {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .coming-text {
        font-size: 1.8rem;
    }

    .features {
        gap: var(--spacing-lg);
    }

    .feature-item {
        flex: 0 1 calc(33.333% - var(--spacing-lg));
        padding: var(--spacing-lg);
    }

    .feature-icon {
        font-size: 2.8rem;
    }

    .feature-text {
        font-size: 1.05rem;
    }

    .particle {
        box-shadow: 0 0 10px var(--color-accent-light),
            0 0 20px var(--color-accent-light);
        opacity: 0.6;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) translateX(0);
        }

        25% {
            transform: translateY(-30px) translateX(20px);
        }

        50% {
            transform: translateY(-60px) translateX(-20px);
        }

        75% {
            transform: translateY(-30px) translateX(20px);
        }
    }

    .whatsapp-button {
        width: 64px;
        height: 64px;
        bottom: 30px;
        right: 30px;
    }

    .whatsapp-icon {
        width: 34px;
        height: 34px;
    }

    .main-title:hover {
        text-shadow: 0 0 20px rgba(255, 215, 95, 0.5);
    }
}

/* ========================================
   LARGE DESKTOP - Min 1400px
   ======================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .main-title {
        font-size: 5.5rem;
    }

    .subtitle {
        font-size: 1.8rem;
    }

    .description {
        max-width: 800px;
    }

    .coming-text {
        font-size: 2rem;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Touch target optimization for mobile */
@media (hover: none) and (pointer: coarse) {
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }

    .feature-item {
        min-height: 44px;
    }
}