/**
 * Page: İletişim
 *
 * Template-level layout for İletişim page.
 *
 * @package Saha
 */

/* Section'lar arası boşluk */

.saha-page--iletisim > * + * {
    margin-top: 30px;
}

/* ----------------------------------------
   Mekan Blokları — fotoğraf + koyu logo
   ---------------------------------------- */

.saha-contact-venues .saha-container {
    display: flex;
    gap: 30px;
}

.saha-contact-venue {
    flex: 1;
    display: flex;
    gap: 0;
    overflow: hidden;
}

.saha-contact-venue__photo {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.saha-contact-venue__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.saha-contact-venue__brand {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    padding: 30px;
}

.saha-contact-venue__logo {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
}

/* Studio logo is black SVG from CMS — invert to white on dark bg */
.saha-contact-venue:last-child .saha-contact-venue__logo {
    filter: brightness(0) invert(1);
}

/* ----------------------------------------
   Divider
   ---------------------------------------- */

.saha-contact-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 0;
}

/* ----------------------------------------
   İletişim Kartları — iki sütun
   ---------------------------------------- */

.saha-contact-cards__row {
    display: flex;
    gap: 30px;
}

.saha-contact-cards__col {
    flex: 1;
}

.saha-contact-cards__name {
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 17.6px;
    color: var(--saha-color-text-primary);
    margin: 0 0 20px;
}

.saha-contact-cards__address {
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: rgb(0, 0, 0);
    margin: 0 0 10px;
}

.saha-contact-cards__address a {
    color: inherit;
    text-decoration: underline;
}

.saha-contact-cards__address a:hover {
    opacity: 0.7;
}

.saha-contact-cards__phone {
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: rgb(0, 0, 0);
    margin: 0;
}

.saha-contact-cards__email {
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: rgb(0, 0, 0);
    margin: 20px 0 10px;
}

.saha-contact-cards__email a {
    color: inherit;
    text-decoration: none;
}

.saha-contact-cards__email a:hover {
    opacity: 0.7;
}

.saha-contact-cards__email-arrow {
    margin-right: 3px;
}

/* ----------------------------------------
   Haritalar — iki sütun
   ---------------------------------------- */

.saha-contact-maps__row {
    display: flex;
    gap: 30px;
}

.saha-contact-maps__col {
    flex: 1;
}

.saha-contact-maps__col iframe {
    display: block;
    width: 100%;
    height: 300px;
}

.saha-contact-maps {
    padding-bottom: 60px;
}

/* ----------------------------------------
   Newsletter Section
   ---------------------------------------- */

.saha-contact-newsletter {
    background-color: rgb(248, 248, 248);
    margin-bottom: 120px;
}

.saha-contact-newsletter__title {
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 17.6px;
    text-align: center;
    color: var(--saha-color-text-primary);
    padding: 70px 0 65px;
    margin: 0;
}

.saha-contact-newsletter__form-holder {
    max-width: 66.67%;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 30px 0;
}

.saha-contact-newsletter__fields {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.saha-contact-newsletter__input {
    flex: 1;
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--saha-color-text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 6px 12px 15px 0;
    height: 52px;
    outline: none;
}

.saha-contact-newsletter__input::placeholder {
    color: #999;
}

.saha-contact-newsletter__submit {
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--saha-color-text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    padding: 6px 0 15px;
}

.saha-contact-newsletter__submit:hover {
    opacity: 0.7;
}

.saha-contact-newsletter__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--saha-font-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--saha-color-text-primary);
    padding: 25px 0 30px;
    cursor: pointer;
}

.saha-contact-newsletter__consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.saha-contact-newsletter__consent a {
    color: var(--saha-color-text-primary);
    text-decoration: underline;
}

/* ----------------------------------------
   Responsive: Tablet
   ---------------------------------------- */

@media (max-width: 1023px) {
    .saha-contact-newsletter__form-holder {
        max-width: 80%;
    }
}

/* ----------------------------------------
   Responsive: Mobile
   ---------------------------------------- */

@media (max-width: 639px) {
    .saha-contact-venues .saha-container,
    .saha-contact-cards__row,
    .saha-contact-maps__row {
        flex-direction: column;
        gap: 0;
    }

    .saha-contact-venue {
        flex-direction: column;
    }

    .saha-contact-venue + .saha-contact-venue {
        margin-top: 20px;
    }

    .saha-contact-venue__photo {
        min-height: 200px;
    }

    .saha-contact-venue__brand {
        flex: 0 0 120px;
    }

    .saha-contact-cards__col + .saha-contact-cards__col {
        margin-top: 60px;
    }

    .saha-contact-maps__col + .saha-contact-maps__col {
        margin-top: 20px;
    }

    .saha-contact-newsletter__form-holder {
        max-width: 100%;
    }

    .saha-contact-newsletter__fields {
        flex-direction: column;
        gap: 0;
    }
}
