/* --- CONTACT PAGE STYLES --- */

.contact-section {
    /* Uses the same container structure as other pages */
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-box {
    background: #0f0f0f;
    border: 2px solid #300;
    padding: 40px;
    margin-bottom: 60px;
    overflow: hidden;
}

.contact-box:hover { 
    border-color: #600; 
}

.contact-box h1 {
    /* Title style matching other pages */
    font-size: 2.5em;
    color: #f00;
    margin: 0 0 30px;
    letter-spacing: 3px;
}

.intro-text {
    font-size: 1.2em;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info-block {
    background: #111;
    border: 1px solid #222;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.contact-label {
    /* Highlighted text for the category */
    font-size: 1.4em;
    color: #f99;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #400;
    padding-bottom: 5px;
}

.contact-details {
    font-size: 1.1em;
    color: #888;
    line-height: 1.5;
    margin-bottom: 15px;
}

.contact-email a, .contact-links a {
    /* Style for the email/social links */
    font-size: 1.2em;
    color: #a00;
    text-decoration: none;
    border-bottom: 1px solid #600;
    padding-bottom: 2px;
    margin-right: 20px;
    display: inline-block; /* Helps link formatting */
}

.contact-email a:hover, .contact-links a:hover {
    color: #f00;
    border-bottom-color: #c00;
}

/* MOBILE ADJUSTMENTS */
@media(max-width:700px){
    .contact-box {
        padding: 20px;
    }
    .contact-info-block {
        padding: 15px;
    }
}