/* =====================================================
   STELLA — İLETİŞİM
===================================================== */


/* =========================
   GENEL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #151515;
    color: #f1eee8;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}


/* =========================
   HEADER
========================= */

.header {
    height: 86px;
    padding: 0 4.3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background: #151515;
}


/* LOGO */

.logo {
    color: #f1eee8;
    text-decoration: none;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 7px;
}

    .logo span {
        display: inline-block;
        font-size: 24px;
        margin: 0 2px;
        color: #e7e3db;
    }


/* NAVBAR */

.navbar {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 13px;
    background: rgba(95,95,95,0.16);
    backdrop-filter: blur(10px);
}

    .navbar a {
        position: relative;
        color: #ddd9d2;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: 0.25s ease;
    }

        .navbar a:hover {
            color: #ffffff;
        }

        .navbar a.active {
            color: #ffffff;
        }

            .navbar a.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -19px;
                height: 1px;
                background: #f1eee8;
            }


/* NAV AYIRICI */

.nav-line {
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,0.20);
    margin-left: 3px;
}


/* TEMA */

.theme-button {
    border: none;
    background: transparent;
    color: #f1eee8;
    font-size: 18px;
    cursor: pointer;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    min-height: calc(100vh - 145px);
    padding: 70px 4.3vw 80px;
}


/* =========================
   SECTION TITLE
========================= */

.contact-intro {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 55px;
}

.section-number {
    font-size: 12px;
    color: #aaa69f;
    letter-spacing: 1px;
}

.intro-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.35);
}

.intro-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* =========================
   CONTENT
========================= */

.contact-content {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}


/* =========================
   LEFT
========================= */

.contact-left {
    padding-top: 10px;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    color: #918d87;
    margin-bottom: 30px;
}


.contact-left h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -3px;
    max-width: 550px;
}

    .contact-left h1 span {
        color: #969c87;
    }


.description {
    margin-top: 35px;
    max-width: 440px;
    color: #aaa69f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.7;
}


.contact-note {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #85817b;
    font-size: 11px;
    letter-spacing: 1px;
}

    .contact-note span {
        width: 38px;
        height: 1px;
        background: #969c87;
    }


/* =========================
   FORM CONTAINER
========================= */

.contact-form-wrapper {
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    background: rgba(255,255,255,0.025);
}


/* =========================
   FORM
========================= */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.form-group {
    margin-bottom: 27px;
}


    .form-group label {
        display: block;
        margin-bottom: 10px;
        color: #aaa69f;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
    }

        .form-group label span {
            color: #67645f;
            font-size: 9px;
        }


    /* INPUT */

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 2px;
        background: #1b1b1b;
        color: #f1eee8;
        padding: 16px 17px;
        outline: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        transition: 0.25s ease;
    }


        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #5f5d59;
        }


        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: rgba(150,156,135,0.75);
            background: #1d1d1c;
        }


    .form-group select {
        appearance: none;
        cursor: pointer;
    }


    .form-group textarea {
        resize: vertical;
        min-height: 145px;
        line-height: 1.6;
    }


/* =========================
   BUTTON
========================= */

.submit-button {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 2px;
    background: #969c87;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: 0.3s ease;
}


    .submit-button:hover {
        background: #a4aa95;
        transform: translateY(-2px);
    }


    .submit-button .arrow {
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 0;
    }


/* =========================
   FOOTER
========================= */

.footer {
    min-height: 59px;
    padding: 0 4.3vw;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #68655f;
    font-size: 10px;
    letter-spacing: 2px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .header {
        height: auto;
        padding: 22px 25px;
        gap: 25px;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar {
        justify-content: center;
        gap: 20px;
        padding: 0 12px;
    }

    .contact-page {
        padding: 45px 25px 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-left h1 {
        font-size: 52px;
    }
}


@media (max-width: 600px) {

    .navbar {
        gap: 13px;
    }

        .navbar a {
            font-size: 9px;
        }

    .nav-line {
        display: none;
    }

    .contact-intro {
        margin-bottom: 35px;
    }

    .contact-content {
        gap: 35px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 22px;
    }

    .contact-left h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .footer {
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
        .temporary-contact {
        margin-top: 30px;
    }

    .temporary-contact p {
        font-size: 12px;
    }

    .instagram-contact {
        min-height: 50px;
        font-size: 9px;
        letter-spacing: 2px;
    }
}
/* INSTAGRAM GEÇİCİ İLETİŞİM */

.temporary-contact {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.10);
    max-width: 440px;
}

.temporary-label {
    color: #969c87;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.temporary-contact p {
    margin: 0;
    color: #8f8b84;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    line-height: 1.7;
}

.temporary-contact p strong {
    color: #c5c0b8;
    font-weight: 400;
}

.instagram-contact {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 17px;

    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 2px;
    background: rgba(255,255,255,0.035);

    color: #f1eee8 !important;
    text-decoration: none !important;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;

    transition: 0.3s ease;
}

.instagram-contact:hover {
    background: rgba(150,156,135,0.12);
    border-color: rgba(150,156,135,0.6);
    transform: translateY(-2px);
}

.instagram-arrow {
    color: #969c87;
    font-size: 18px;
    font-weight: 400;
}

.instagram-username {
    margin-top: 8px;
    color: #625f59;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
}