/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* ================= COLORS ================= */

:root {

    --bg-main: #04140f;
    --bg-section: #0b2e23;

    --gold: #d4af37;
    --green: #10B981;

    --text: #f5f5f5;
    --muted: #cfcfcf;

    --border: rgba(255, 255, 255, .08);
}

/* ================= BODY ================= */

body {
    background: var(--bg-main);
    color: var(--text);
}

/* ================= HERO ================= */

.contact-hero {

    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(8, 28, 21, .85)),
        url("pictures/contact-bg.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {

    font-size: 3.5rem;
    color: var(--gold);

    margin-bottom: 15px;
}

.hero-content p {

    color: var(--muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ================= CONTACT ================= */

.contact-section {

    padding: 100px 10%;
    background: var(--bg-section);
}

.contact-container {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

/* LEFT */

.section-tag {

    color: var(--gold);
    letter-spacing: 2px;
    font-size: .85rem;
}

.contact-info h2 {

    margin: 15px 0 30px;
    font-size: 2.5rem;
}

.info-box {

    background: rgba(255, 255, 255, .03);

    border: 1px solid var(--border);

    padding: 20px;
    margin-bottom: 15px;

    border-radius: 12px;
}

.info-box h3 {

    color: var(--gold);
    margin-bottom: 8px;
}

.info-box p {
    color: var(--muted);
}

/* RIGHT */

.contact-form {

    background: rgba(255, 255, 255, .03);

    border: 1px solid var(--border);

    padding: 40px;

    border-radius: 16px;
}

.contact-form h3 {

    margin-bottom: 25px;
    color: var(--gold);
}

.contact-form form {

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {

    padding: 15px;

    border-radius: 10px;
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, .04);

    color: white;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--green);
}

.contact-form button {

    background: var(--gold);
    color: black;

    border: none;

    padding: 15px;

    border-radius: 10px;

    font-weight: 700;
    cursor: pointer;

    transition: .3s;
}

.contact-form button:hover {

    background: white;
    transform: translateY(-3px);
}

/* ================= FOOTER ================= */

footer {

    text-align: center;

    padding: 25px;

    background: #06120e;

    border-top: 1px solid var(--border);
}

/* ================= MOBILE ================= */

@media(max-width:768px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }
}