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

:root {
    --card-bg: #ffffff;
    --text-primary: #2c2c2c;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --icon-border: #d0d0d0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 0;
}

/* Profile Card Styles */
profile-card {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.profile-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow-color);
    padding: 60px 40px 40px;
    text-align: center;
}

.profile-image-container {
    margin-bottom: 30px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 25px 0;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.profile-title {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.profile-company {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--icon-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-text {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */

/* Large Desktop Screens (1920px and above) */
@media (min-width: 1920px) {
    profile-card {
        max-width: 550px;
        padding: 25px;
    }

    .profile-card {
        padding: 80px 50px 50px;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .profile-name {
        font-size: 1.8rem;
        letter-spacing: 5px;
        margin-bottom: 18px;
    }

    .profile-title {
        font-size: 1rem;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

    .profile-company {
        font-size: 0.95rem;
    }

    .social-link {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .footer-text {
        font-size: 0.85rem;
        bottom: 25px;
    }
}

/* Desktop and Laptop Screens (1200px to 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    profile-card {
        max-width: 500px;
        padding: 22px;
    }

    .profile-card {
        padding: 70px 45px 45px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .profile-name {
        font-size: 1.6rem;
        letter-spacing: 4.5px;
    }

    .profile-title {
        font-size: 0.95rem;
    }

    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    profile-card {
        max-width: 380px;
        padding: 15px;
    }

    .profile-card {
        padding: 50px 30px 35px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .profile-title {
        font-size: 0.85rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    profile-card {
        max-width: 340px;
        padding: 10px;
    }

    .profile-card {
        padding: 40px 25px 30px;
    }

    .profile-image {
        width: 130px;
        height: 130px;
    }

    .profile-name {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .profile-title {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .profile-company {
        font-size: 0.75rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.7rem;
        bottom: 15px;
    }
}
