/* ===================================
   LINKS HUB PAGE STYLES
   Add this to the end of your style.css file
   =================================== */

/* Remove default body styling for this page */
.links-page-body {
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-teal) 50%, var(--deep-teal) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Main Container */
.links-hub {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Profile Section */
.links-profile {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.6);
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.profile-tagline {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Link Buttons Container */
.links-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual Link Button - Oblong Shape */
.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(26, 58, 74, 0.6);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px; /* Makes it oblong/pill-shaped */
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.link-button:hover {
    background: rgba(201, 169, 97, 0.9);
    color: var(--rich-black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.link-button:active {
    transform: translateY(-1px);
}

.button-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Social Media Icons */
.links-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    width: 100%;
}

.links-social a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.links-social a:hover {
    transform: translateY(-5px) scale(1.1);
    opacity: 0.8;
}

.links-social .social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Footer */
.links-footer {
    margin-top: 2rem;
    text-align: center;
}

.links-footer p {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .links-hub {
        max-width: 500px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-tagline {
        font-size: 0.9rem;
    }
    
    .link-button {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
    
    .links-social .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .links-page-body {
        padding: 1.5rem;
    }
    
    .links-hub {
        max-width: 100%;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .link-button {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }
    
    .links-social {
        gap: 1.2rem;
    }
    
    .links-social .social-icon {
        width: 32px;
        height: 32px;
    }
}
