/* --- Contact Page Styling --- */
.contact-container {
    max-width: 99%;
    margin-top: 70px;
	background-color: rgba(255, 255, 255, 0.97); 
    padding: 35px; 
    border-radius: 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    margin-left: 10px;
    margin-right: 10px;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Container for the three icons */
.icon-row {
    display: flex;
    justify-content: center;
    gap: 40px; 
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Styling for the LinkedIn */
.icon-link {
    color: #0077b5;
    font-size: 3rem;
}

/* Styling for Github */
.gicon-link {
    color: #000000;
    font-size: 3rem; 
}

/* Styling for the Email Button */
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #e74c3c;
    font-size: 3rem;
}

/* The Hidden Email Text */
.hidden-text {
    display: none; 
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    padding: 15px;
    background-color: #f0f0f0;
    transition: opacity 0.25s ease-in; 
}

/* Hidden Span that Indicates to Click to Copy*/
.hidden-btn{
    display: none;
    border: none;
    color: #000000;
    cursor: pointer;
    border-radius: 75px;
    padding: 7px;
    margin-left: 5px;
    float: right;
    font-size: .7rem;
}

/*Transition and Transform for assumed non-mobile Only*/
@media (min-width: 600px) {
    /* Styling for the LinkedIn */
    .icon-link {
        color: #333;
        font-size: 3rem; /* Makes icons big */
        transition: transform 0.2s, color 0.2s;
        text-decoration: none; /* Removes underline from icons */
    }
    
    .icon-link:hover {
        color: #0077b5; /* LinkedIn Blue */
        transform: translateY(-5px); /* Floats up slightly */
    }
    
    /* Styling for Github */
    .gicon-link {
        color: #333;
        font-size: 3rem; /* Makes icons big */
        transition: transform 0.2s, color 0.2s;
        text-decoration: none; /* Removes underline from icons */
    }
    
    .gicon-link:hover {
        color: #000000; 
        transform: translateY(-5px); /* Floats up slightly */
    }
    
    /* Styling for the Email Button */
    .icon-btn {
        background: none;
        border: none;
        color: #333;
        font-size: 3rem;
        transition: transform 0.2s, color 0.2s;
    }
    
    .icon-btn:hover {
        color: #e74c3c; /* Red envelope color */
        transform: translateY(-5px);
        transition: transform 0.2s, color 0.2s;
    }
    }