/* Static Contact page. Extracted verbatim from the inline <style> block that
   templates/contact.html used to carry. Every selector is scoped under the
   .contact-page wrapper so the rules keep matching only this page's markup (as
   the page-local inline block did); declarations are unchanged. font-family is
   left exactly as the original had it (the global body font is Orbitron, so the
   explicit families are load-bearing). */

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-page .top-padding {
    padding-top: 80px;
}

.contact-page .contact-title {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.contact-page .content-card {
    background-color: rgba(40, 0, 40, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.contact-page .form-group label {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.contact-page .form-control {
    background-color: rgba(30, 10, 40, 0.7);
    border: 1px solid rgba(255, 0, 255, 0.5);
    color: #fff;
    border-radius: 5px;
    padding: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    box-shadow: inset 0 0 5px rgba(255, 0, 255, 0.2);
}

.contact-page .form-control:focus {
    background-color: rgba(40, 15, 50, 0.8);
    border-color: #ff00ff;
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.5), inset 0 0 5px rgba(255, 0, 255, 0.3);
    outline: none;
    color: #ffffff;
}

.contact-page .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-page textarea.form-control {
    line-height: 1.5;
}

.contact-page .btn-send-message {
    background: linear-gradient(to right, #9900ff, #ff00ff);
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    padding: 12px 30px;
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    border-radius: 5px;
}

.contact-page .btn-send-message:hover {
    background: linear-gradient(to right, #ff00ff, #9900ff);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
}

.contact-page .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ff00ff, transparent);
    border: none;
    margin: 30px 0;
}

.contact-page .section-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.contact-page .desktop-only {
    display: block;
}

.contact-page .mobile-only {
    display: none;
}

.contact-page .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-page .contact-icon {
    font-size: 1.7rem;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff00ff;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.7);
    width: 40px;
}

.contact-page .contact-text {
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #fff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding-top: 3px;
    display: flex;
    align-items: center;
    min-height: 40px;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 0 10px;
        max-width: 100%;
    }

    .contact-page .contact-title {
        font-size: 2rem;
    }

    .contact-page .section-title {
        font-size: 1.5rem;
    }

    .contact-page .content-card {
        padding: 20px 15px;
        width: 100%;
        border-radius: 10px;
    }

    .contact-page .top-padding {
        padding-top: 100px;
    }

    .contact-page .contact-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 430px) {
    .contact-page {
        padding: 0 5px;
    }

    .contact-page .content-card {
        padding: 15px 12px;
        border-radius: 8px;
    }

    .contact-page .contact-title {
        font-size: 1.8rem;
    }

    .contact-page .desktop-only {
        display: none;
    }

    .contact-page .mobile-only {
        display: block;
        font-size: 1.4rem;
    }

    .contact-page .form-control {
        padding: 10px;
        font-size: 1rem;
    }

    .contact-page .btn-send-message {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-page .contact-text {
        word-break: break-word;
        font-size: 1rem;
        line-height: 1.4;
    }

    .contact-page .contact-icon {
        font-size: 1.5rem;
        margin-right: 12px;
    }
}

@media (max-width: 360px) {
    .contact-page .contact-text {
        font-size: 0.95rem;
    }

    .contact-page .contact-icon {
        margin-right: 10px;
    }
}
