/* custom.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background to match the dark theme */
    color: #ffffff;
    text-align: center;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header Styles - LGBT Flag */
header.container-fluid.lgbt {
    background: linear-gradient(180deg,
        #FE0000 16.66%, 
        #FD8C00 16.66%, 33.32%, 
        #FFE500 33.32%, 49.98%, 
        #119F0B 49.98%, 66.64%, 
        #0644B3 66.64%, 83.3%, 
        #C22EDC 83.3%);
    height: 80px; /* Increased height */
    width: 100%; /* Ensure it spans the full width */
    margin-bottom: 20px;
}

/* Main Content */
main.container {
    padding: 20px;
}

/* Profile Section */
.profile {
    margin-bottom: 40px; /* Increased margin for more spacing */
}

.profile img.headshot {
    width: 250px; /* Increased size */
    height: 250px; /* Increased size */
    border-radius: 50%;
    border: 4px solid #ffffff; /* Slightly thicker border */
    margin-bottom: 20px;
}

.profile h1.maintext {
    font-size: 5em; /* Increased font size */
    margin: 0;
    color: #ff8e8e;
}

/* Link List */
.linklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Space between items */
}

.link-item {
    display: flex;
    align-items: center;
    width: 300px; /* Width of each box */
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer; /* Pointer cursor to indicate it's clickable */
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: #333; /* Default background color for cases where inline style is missing */
}

.link-item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.link-item img.icon {
    width: 60px; /* Increased size */
    height: 60px; /* Increased size */
    margin-left: 25px; /* Space between icon and text */
    position: relative; /* To offset the icon */
    margin-right: -25px; /* Offset icon to the left */
}

.link-item span {
    font-size: 2em; /* Increased text size */
    text-align: center; /* Center text */
    flex: 1; /* Allow text to take up remaining space */
}

/* Media Queries */
@media only screen and (max-width: 768px) {
    .profile h1.maintext {
        font-size: 4em; /* Adjusted for medium screens */
    }

    .profile img.headshot {
        width: 220px; /* Adjusted size */
        height: 220px; /* Adjusted size */
    }

    .link-item img.icon {
        width: 50px; /* Adjusted size */
        height: 50px; /* Adjusted size */
    }

    .link-item span {
        font-size: 1.5em; /* Adjusted text size */
    }
}

@media only screen and (max-width: 480px) {
    .profile h1.maintext {
        font-size: 3em; /* Adjusted size for very small screens */
    }

    .profile img.headshot {
        width: 200px; /* Adjusted size */
        height: 200px; /* Adjusted size */
    }

    .link-item img.icon {
        width: 45px; /* Adjusted size */
        height: 45px; /* Adjusted size */
    }

    .link-item span {
        font-size: 1.2em; /* Adjusted text size */
    }

    /* Adjusting padding to prevent scrolling on small screens */
    main.container {
        padding: 10px;
    }
}
