:root {
    /* Simple 3-Color Palette */
    --primary-gold: #D2B78C;
    --warm-white: #F7F3EF;
    --deep-red: #B7202E;
    /* Text colors for better readability */
    --text-dark: #2C2C2C;
    --text-medium: #555555;
    --text-light: #FFFFFF;
    --text-accent: #87202E;
    /* Simple backgrounds */
    --bg-primary: #F7F3EF;
    --bg-secondary: #FFFFFF;
    --bg-accent: rgba(196, 162, 110, 0.1);
    /* Clean gradients */
    --gradient-simple: linear-gradient(135deg, #F7F3EF 0%, #C4A26E 100%);
    --gradient-button: linear-gradient(135deg, #C4A26E 0%, #87202E 100%);
    /* Subtle shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(135, 32, 46, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


/* Background Animations */

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

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(196, 162, 110, 0.05);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(135, 32, 46, 0.03);
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 80%;
    right: 5%;
    animation-delay: 1s;
    background: rgba(196, 162, 110, 0.02);
}

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


/* Main Container */

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(135, 32, 46, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(196, 162, 110, 0.2);
    margin-top: 20px;
    margin-bottom: 20px;
}


/* Profile Section */

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.profile-image {
    width: 120px;
    height: 120px;
    /* background: var(--bg-secondary); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: var(--shadow-light); */
    position: relative;
    z-index: 2;
    /* transition: transform 0.3s ease; */
    /* border: 2px solid var(--primary-gold); */
}

.profile-image:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* border-radius: 50%; */
    padding: 8px;
}

.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(196, 162, 110, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--deep-red);
    letter-spacing: -0.02em;
}

.profile-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.4;
}

.profile-description {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.profile-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-secondary);
    border: 1px solid var(--primary-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
}

.badge.verified {
    background: var(--primary-gold);
    color: var(--text-light);
    border-color: var(--primary-gold);
}


/* Links Section */

.links-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-links {
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    /* background: var(--bg-secondary); */
    background: var(--primary-gold);
    border: 1px solid var(--deep-red);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    text-decoration: none;
    color: var(--deep-red);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-light);
}

.link-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-gold);
}

.link-button.primary {
    /* background: var(--gradient-button); */
    background: var(--primary-gold);
    /* color: var(--text-light); */
    color: var(--deep-red);
    border-color: var(--deep-red);
}

.link-button.disabled {
    /* opacity: 0.6; */
    cursor: not-allowed;
    position: relative;
}

.link-button.disabled:hover {
    transform: none;
}

.wip-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--deep-red);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    /* background: var(--bg-accent); */
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.link-button.primary .link-icon {
    background: rgba(255, 255, 255, 0.2);
}

.link-icon i {
    font-size: 20px;
    color: var(--deep-red);
}

.link-button.primary .link-icon i {
    /* color: var(--text-light); */
    color: var(--deep-red);
}

.link-content {
    flex-grow: 1;
    text-align: left;
}

.link-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.link-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
}

.link-arrow {
    margin-left: 16px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.link-button:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}


/* Social Section */

.social-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-button:active {
    animation: clickPulse 0.6s ease-out;
}

@keyframes clickPulse {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-button:hover::before {
    opacity: 1;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-button i {
    font-size: 18px;
    margin-right: 8px;
    position: relative;
    z-index: 1;
}

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

.linkedin {
    background: var(--deep-red);
}

.instagram {
    /* background: var(--primary-gold); */
    background: var(--deep-red);
}

.facebook {
    background: var(--deep-red);
}

.youtube {
    /* background: var(--primary-gold); */
    background: var(--deep-red);
}


/* Contact Section */

.contact-section {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    margin-bottom: 30px;
}

.contact-info {
    background: var(--bg-secondary);
    border: 1px solid rgba(196, 162, 110, 0.3);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-light);
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--deep-red);
    width: 20px;
    margin-right: 12px;
    text-align: center;
}


/* Footer */

.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 162, 110, 0.3);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.footer p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.7;
}


/* Animations */

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


/* Tooltip */

[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    animation: fadeInUp 0.3s ease;
}


/* Responsive Design */

@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 16px;
    }
    .profile-name {
        font-size: 2rem;
    }
    .profile-subtitle {
        font-size: 1rem;
    }
    .link-button {
        padding: 16px;
    }
    .link-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    .link-icon i {
        font-size: 16px;
    }
    .link-title {
        font-size: 1rem;
    }
    .link-subtitle {
        font-size: 0.85rem;
    }
    .social-links {
        grid-template-columns: 1fr;
    }
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .profile-image {
        width: 100px;
        height: 100px;
    }
    .pulse-ring {
        width: 120px;
        height: 120px;
        top: -10px;
        left: -10px;
    }
    .logo-placeholder i {
        font-size: 40px;
    }
    .profile-badges {
        gap: 6px;
    }
    .badge {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}


/* Print Styles */

@media print {
    .bg-animations,
    .pulse-ring {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
    .link-button,
    .contact-info {
        background: white;
        border: 1px solid #C4A26E;
        color: #2C2C2C;
    }
}