/* 
   Jules - Personal Portfolio
   Premium Dark Theme with Glassmorphism
*/

:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #7c3aed;
    /* Violet */
    --accent-glow: #4c1d95;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-bg: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    overflow-y: hidden;
}

/* Background Animation */
.background-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7c3aed, #2563eb);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #db2777, #9333ea);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }

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

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    /* Mobile focused width */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}


/* Brand Name Animation */
.brand-name {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;

    /* Gradient Text */
    background: linear-gradient(to right,
            #ffffff 20%,
            #7c3aed 40%,
            #2563eb 60%,
            #ffffff 80%);
    background-size: 200% auto;

    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 5s linear infinite;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


.profile-bio {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.link-card:hover::before {
    transform: translateX(100%);
}

.link-card:hover {
    background-color: var(--card-hover-bg);
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px -10px rgba(124, 58, 237, 0.15);
}

.link-card.featured {
    border-color: rgba(124, 58, 237, 0.5);
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.1), transparent);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    opacity: 0.8;
}

.link-icon i {
    font-size: 24px;
}

.link-text {
    flex-grow: 1;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.link-arrow i {
    font-size: 18px;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
footer {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 13px;
    opacity: 0.6;
    animation: fadeIn 1.2s ease-out 0.5s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 400px) {

    .orb-1,
    .orb-2 {
        opacity: 0.4;
    }

    .profile-name {
        font-size: 20px;
    }
}

/* Promo Text Styles */
.rotale-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.promo-text {
    font-size: 13px;
    text-align: center;
    color: #eeddee;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(236, 72, 153, 0.6), 0 0 10px rgba(168, 85, 247, 0.6);
    animation: promoSparkle 2s ease-in-out infinite;
    margin-bottom: 4px;
    /* Slight adjustment */
}

@keyframes promoSparkle {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
        text-shadow: 0 0 5px rgba(236, 72, 153, 0.6), 0 0 10px rgba(168, 85, 247, 0.6);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
        color: #fff;
        text-shadow: 0 0 10px rgba(236, 72, 153, 1), 0 0 20px rgba(168, 85, 247, 0.8), 0 0 30px rgba(255, 255, 255, 0.8);
    }
}
