:root {
    --text-color: #ccb;
    --link-underline-color: #972;
    --link-hover-color: #fff;
    --link-hover-underline-color: #eda;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16pt;
    line-height: 1.3;
    background-color: #333;
    color: var(--text-color);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

footer {
    padding: 2rem;
    font-size: 0.8rem;
    color: #888;
    background-color: #222;
    border-top: solid 1px #444;
    text-align: center;

    & a,
    & a:visited {
        color: #888;
        font-weight: normal;
        text-decoration-thickness: 2px;
        text-decoration-color: #444;
    }
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.image-caption {
    text-align: center;
}

a,
a:visited {
    color: var(--text-color);
    font-weight: bold;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--link-underline-color);
}

a.social-link > span {
    color: var(--text-color);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--link-underline-color);
}
a:hover {
    color: #fff;
    text-decoration-color: var(--link-hover-underline-color);
}

a.social-link:hover > span {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #eda;
}

/* Social media links styling */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--link-underline-color);
}

.social-link:hover .social-icon {
    color: var(--link-hover-underline-color);
}

/* Contact form styling */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #e0e0e0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6ab7ff;
    background-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #5a9fd4;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6ab7ff;
}

.submit-btn:active {
    background-color: #4a90e2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        margin: 1rem 0;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.not-implemented {
    background-color: #533;
    border: solid 1px #755;
    border-radius: 0.5rem;
    color: #e99;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}
