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

:root {
    --soft-pink: #ffd6e8;
    --light-pink: #ffe5f0;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --facebook: #1877F2;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--light-pink) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-top: 80px; /* Space for fixed banner */
}

.container {
    width: 100%;
    max-width: 480px;
    animation: fadeIn 0.6s ease-in-out;
}

/* Zunta Banner - Fixed Top */
.zunta-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8B1538;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
    transition: all 0.3s ease;
}

.zunta-banner:hover {
    background: rgba(10, 10, 10, 1);
    border-bottom-color: #C92952;
    box-shadow: 0 4px 25px rgba(139, 21, 56, 0.5);
}

.banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.banner-text {
    font-size: 0.9rem;
    color: #B8B8B8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.banner-logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B1538 0%, #C92952 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.banner-icon {
    font-size: 0.85rem;
    color: #8B1538;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.zunta-banner:hover .banner-icon {
    color: #C92952;
    transform: translateX(3px) translateY(-2px);
}

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

/* Profile Card */
.profile-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px var(--shadow);
    animation: slideUp 0.8s ease-out;
}

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

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-pink);
}

/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

/* Link Cards */
.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.link-card:active {
    transform: translateY(-2px);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.link-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-card .icon-wrapper {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #1ea952 100%);
}

.instagram-card .icon-wrapper {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook-card .icon-wrapper {
    background: linear-gradient(135deg, var(--facebook) 0%, #0d5dbf 100%);
}

/* Link Content */
.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.link-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Arrow */
.arrow {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.link-card:hover .arrow {
    transform: translateX(5px);
}

/* Specific Card Hover Effects */
.whatsapp-card:hover {
    border-color: var(--whatsapp);
}

.instagram-card:hover {
    border-color: var(--instagram);
}

.facebook-card:hover {
    border-color: var(--facebook);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-pink);
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    .profile-card {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .banner-wrapper {
        padding: 12px 20px;
    }

    .banner-text {
        font-size: 0.75rem;
    }

    .banner-logo {
        font-size: 1.2rem;
    }

    .banner-icon {
        font-size: 0.75rem;
    }

    .logo-placeholder {
        width: 80px;
        height: 80px;
    }

    .logo-placeholder i {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .link-card {
        padding: 18px 20px;
        gap: 15px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .link-content h3 {
        font-size: 1rem;
    }

    .link-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 1.75rem;
    }

    .link-card {
        padding: 15px 18px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
