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

body, html {
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-image: url('media/IMG_2562.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Layout Containers */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    max-width: 900px;
}

/* Profile Elements */
.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); 
}

.header-text {
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
}

.header-text h1 {
    color: #ffffff;
    font-size: clamp(36px, 6vw, 64px); 
    font-weight: 500; 
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.header-text h2 {
    color: #e2e8f0; 
    font-size: 18px; 
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Main Card */
.card {
    background-color: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px);
    padding: 30px; 
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Button & Link Styles */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes text to left and icon to far right end */
    text-decoration: none;
    color: #ffffff;
    font-size: 16px; 
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.link-btn:hover, .email-circle-btn:hover {
    background-color: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.link-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Floating Email Button */
.email-circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-top: 24px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.email-circle-btn svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.email-circle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
