/*
  =================================
  Style for Socials Page
  Created by: Kanibal (and Gemini)
  Date: [20.09.2025]
  =================================
*/

/* Add this new block to the top */
body {
    height: auto;           /* Allow body to grow */
    min-height: 100vh;      /* Ensure it's at least the full screen height */
    overflow-y: auto;       /* Allow vertical scrolling */
    box-sizing: border-box; /* Good practice for layout */
    align-items: flex-start;  /* Align container to the top instead of center */
}

#socials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-item {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon img {
    width: 50px;
    height: 50px;
    margin-right: 1.5rem;
}

.social-details {
    flex-grow: 1;
}

.social-details h3 {
    margin: 0 0 0.25rem 0;
    color: #E0E0E0;
    font-size: 1.2rem;
}

.social-details p {
    margin: 0;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.social-button {
    padding: 10px 20px;
    border: 1px solid #BB86FC;
    border-radius: 5px;
    color: #BB86FC;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: 0 0 8px rgba(187, 134, 252, 0.6);
    white-space: nowrap;
}

.social-button:hover {
    background-color: #BB86FC;
    color: #1E1E1E;
    box-shadow: 0 0 16px rgba(187, 134, 252, 0.8);
}