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

body {
    font-family: 'source-sans-pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        ),
        linear-gradient(135deg, #000000 0%, #4c1d95 50%, #d946ef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInUp 1s ease-out;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

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

.profile-section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(126, 58, 242, 0.2);
    transition: all 0.4s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
    border-color: #7e3af2;
    box-shadow: 0 12px 24px rgba(126, 58, 242, 0.3);
}

.profile-info h1 {
    font-family: 'lavigne-display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.tagline {
    font-family: 'lavigne-display', Georgia, serif;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 400;
}

.contact-item:hover {
    color: #8b5cf6;
}

.contact-item strong {
    min-width: 60px;
    color: #555;
    font-weight: 500;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

.business-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(217, 70, 239, 0.1));
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.business-section:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(217, 70, 239, 0.15));
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.business-name {
    font-family: 'lavigne-display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.business-name:hover {
    color: #d946ef;
}

.business-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.4);
}

.social-link img {
    width: 22px;
    height: 22px;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}

.social-link:hover img {
    filter: grayscale(0) opacity(1) brightness(0) invert(1);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .card {
        padding: 2rem;
        margin: 1rem;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .profile-image img {
        width: 140px;
        height: 140px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 1.5rem;
    }

    .profile-info h1 {
        font-size: 1.8rem;
    }

    .business-section {
        padding: 1.5rem;
    }
}