:root {
    --deep-navy: #0B1C2C;
    --rich-gold: #F7B633;
    --golden-yellow: #FFC94D;
    --crisp-white: #FFFFFF;
    --warm-amber: #E68A00;
    --blue: #1E3A5F;
    --light-blue: #BDE3F6;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Outfit';
    background: linear-gradient(135deg, var(--light-blue), var(--crisp-white));
}

.contact_container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    font-weight: 600;
    color: var(--blue);
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: var(--blue);
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding: 25px;
    font-weight: 500;
    color: var(--deep-navy);
    border-radius: 50px;
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 2px solid var(--golden-yellow);
}

.contact-inputs::placeholer{
    color: var(--warm-amber);
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: var(--crisp-white);
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, var(--deep-navy), var(--deep-navy));
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-left button:hover {
    background: linear-gradient(270deg, var(--blue), var(--deep-navy));
    box-shadow: 0 0 15px rgba(30, 58, 95, 0.5);
    transform: translateY(-2px);
}

.contact-left button img{
    height: 15px;
}

.contact-right {
    position: relative;
}

.contact-right img {
    width: 500px;
    border-radius: 15px;
    display: block;
}

.contact-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.5)
    );
    pointer-events: none;
}

@media (max-width: 800px){
    .contact-inputs{
        width: 80vw;
    }
    .contact-right {
        display: none;
    }
}

.contact-header {
    text-align: center;
    padding: 60px 0;
    background-color: white;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-link {
    color: #007A8D;
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-decoration: none;
}