﻿/* Contact Card */
.contact-card {
    background-color: #EEF2ED;
    border-radius: 14px;
}

    /* Headings */
    .contact-card h2 {
        font-weight: 700;
        color: #2C3E50;
    }

/* Inputs */
.form-control,
.form-select {
    border-radius: 8px;
}

/* Button */
.btn-dark {
    /*    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);*/


    border-radius: 8px;
    display: inline-block;
    padding: 14px 36px;
/*    background: var(--accent);*/
    color: white;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

    .btn-dark:hover {
        /*        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.3);*/
        border-radius: 8px;
        transform: translateY(-3px);
        box-shadow: 0 9px 20px rgba(0,0,0,0.4);
        opacity: 0.9;
    }

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/*after sending a message, this is the success icon, see MessageSuccess.cshtml*/
/*MessageSuccess container*/

.message-success-l1 {
    min-height: 70vh;
}


.message-success-l2 {
    background-color: #EEF2ED;
    max-width: 500px;
    width: 100%;
}


.success-icon {
    width: 64px; /* same as width="64" */
    height: 64px; /* same as height="64" */
    fill: #28a745; /* green color for checkmark */
    margin-bottom: 1rem; /* same as mb-3 in Bootstrap */
}



