* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #B46A55;
    --color-secondary: #9C6B75;
    --color-tertiary: #FAF6F3;
    --color-accent: #C77F6B;
    --color-dark: #2A1F1F;
    --color-light: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('attached_assets/stock_images/eyelash_extensions_l_d1789213.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px) brightness(1.4) saturate(1.2);
    opacity: 0.85;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(180, 106, 85, 0.5) 0%, 
        rgba(156, 107, 117, 0.45) 25%, 
        rgba(199, 127, 107, 0.5) 50%, 
        rgba(180, 106, 85, 0.55) 75%, 
        rgba(156, 107, 117, 0.5) 100%);
    z-index: -1;
}


.background-decoration {
    display: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 280px;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(180, 106, 85, 0.6),
        0 0 80px rgba(199, 127, 107, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    animation: floatLogoAnimated 2s ease-in-out infinite;
    transition: all 0.4s ease;
}

.logo:hover {
    transform: scale(1.15) translateY(-15px) rotate(5deg) !important;
    filter: brightness(1.2);
    box-shadow: 
        0 30px 90px rgba(180, 106, 85, 1),
        0 0 150px rgba(199, 127, 107, 1),
        0 0 200px rgba(156, 107, 117, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.5) !important;
}

@keyframes floatLogoAnimated {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-30px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blossom-text {
    background: rgba(250, 246, 243, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 
        0 15px 50px rgba(180, 106, 85, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.blossom-text::before {
    display: none;
}

.blossom-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFEBCD;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 1),
        0 0 50px rgba(255, 165, 0, 1),
        2px 2px 8px rgba(0, 0, 0, 0.9);
}

@keyframes floatLogoAnimated {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-20px);
    }
}

.blossom-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-tertiary);
    text-align: center;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 15px;
    text-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(199, 127, 107, 0.5);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--color-tertiary);
    font-weight: 400;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(180, 106, 85, 0.4);
    position: relative;
}

.links-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.link-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 22px 35px;
    background: linear-gradient(135deg, rgba(250, 246, 243, 0.98), rgba(255, 255, 255, 0.95));
    border-radius: 60px;
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(180, 106, 85, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(180, 106, 85, 0.3);
}


.icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.link-button i {
    font-size: 2rem;
}

.whatsapp .icon-wrapper {
    background: linear-gradient(135deg, #25D366, #128C7E, #075E54);
}

.whatsapp i {
    color: white;
}


.instagram .icon-wrapper {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #5851DB);
}

.instagram i {
    color: white;
}


.location .icon-wrapper {
    background: linear-gradient(135deg, #EA4335, #FBBC04, #34A853, #4285F4);
}

.location i {
    color: white;
}


.button-text {
    position: relative;
    z-index: 1;
}

.footer {
    text-align: center;
    padding: 20px;
}

.footer p {
    color: var(--color-tertiary);
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(180, 106, 85, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .logo {
        width: 220px;
        animation: floatLogoAnimated 4s ease-in-out infinite;
    }

    .name {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .blossom-title {
        font-size: 1.8rem;
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)) 
                drop-shadow(0 0 60px rgba(255, 165, 0, 1));
        animation: titleGlowPulse 1.5s ease-in-out infinite;
    }

    .blossom-description {
        font-size: 0.9rem;
    }

    .blossom-text {
        padding: 25px;
        animation: fadeInUp 1.2s ease-out 0.3s backwards, floatBlossomCard 2.5s ease-in-out infinite;
    }

    .link-button {
        padding: 18px 25px;
        font-size: 1rem;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .link-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
        animation: floatLogoAnimated 4s ease-in-out infinite;
    }

    .name {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .blossom-title {
        font-size: 1.6rem;
        filter: drop-shadow(0 0 35px rgba(255, 215, 0, 1)) 
                drop-shadow(0 0 70px rgba(255, 165, 0, 1));
        animation: titleGlowPulse 1.5s ease-in-out infinite;
    }

    .blossom-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .blossom-text {
        padding: 22px;
        animation: fadeInUp 1.2s ease-out 0.3s backwards, floatBlossomCard 2.5s ease-in-out infinite;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
