
/* =========================
  main
========================== */
.contact-section {
    background: #ffffff;
}

#contactForm {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, rgb(211, 219, 245), rgb(141, 191, 240), rgb(76, 153, 230));
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#contactForm h3 {
    color: #0d0d0d;
    font-weight: bold;
}

/* Inputs, Select, Textarea */
#contactForm input,
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom:10px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: #fbfeff;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: 2px solid #000000;
}

#contactForm textarea {
    height: 130px;
    resize: none;
}

#contactForm button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #0b1010d2;
    color: #ffffff;
    font-weight: bold;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#contactForm button:hover {
    background: #0303ff9f;
}

/* =========================
  FORM MESSAGE
========================== */
#formMessage {
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
}

.message.success {
    background: rgb(226, 226, 226);
    color: #050505;
    border: 1px solid #ffffff00;
}

/* =========================
  FOOTER STYLING
========================== */
footer {
    background-color: #000000;
    color: #ffffff;
}

footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

footer a {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.social-icons-wrapper {
    display: inline-block;
    text-align: right;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}

