/* =========================================================
   SEMA ÖZCAN MODA EVİ
   ANA SAYFA CSS
========================================================= */

:root {
    --bg: #f6f2ec;
    --text: #171615;
    --muted: #8a8178;
    --line: #d8d0c6;
    --card: #e9e1d6;
    --max: 1400px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--bg);
    color: var(--text);

    font-family: "Manrope", Arial, sans-serif;
    font-weight: 400;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    height: 100px;

    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--bg);

    position: relative;
    z-index: 10;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    flex-direction: column;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    line-height: 1;

    letter-spacing: -0.5px;
}


.logo span {
    margin-top: 6px;

    font-family: "Manrope", Arial, sans-serif;

    font-size: 7px;
    letter-spacing: 3px;

    color: var(--muted);
}


/* =========================================================
   ANA MENÜ
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}


.main-nav a {
    font-size: 9px;

    letter-spacing: 1.2px;

    white-space: nowrap;
}


/* =========================================================
   RANDEVU AL
   TÜM ANA SAYFALARDA ORTAK
========================================================= */

.header-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 116px;
    height: 42px;

    padding: 0;

    margin-left: 8px;

    box-sizing: border-box;

    background: var(--bg);

    border: 1px solid var(--text);

    color: var(--text);

    font-family: "Manrope", Arial, sans-serif;

    font-size: 9px !important;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 1.3px !important;

    text-transform: uppercase;

    white-space: nowrap;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.header-button:hover {
    background: var(--text);

    color: var(--bg);

    border-color: var(--text);
}


/* =========================================================
   GENEL
========================================================= */

main {
    width: 100%;
}


.eyebrow {
    margin: 0 0 25px;

    font-size: 9px;

    letter-spacing: 3px;

    color: var(--muted);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: min(1440px, 100%);
    min-height: 660px;
    margin: 0 auto;
    padding: 65px 5vw 55px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: clamp(55px, 7vw, 120px);
}

.hero-video {
    width: 100%;
    min-width: 0;
    height: min(72vh, 760px);
    overflow: hidden;
    background: #ded8d1;
}

.hero-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-content {
    min-width: 0;
    max-width: 560px;
}


.hero h1 {
    margin: 0;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(65px, 8vw, 125px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -4px;
}


.hero h1 em {
    color: var(--muted);

    font-weight: 400;
}


.hero-text {
    max-width: 620px;

    margin: 45px 0 35px;

    font-size: 15px;

    line-height: 1.8;

    color: #716b65;
}


.hero-links {
    display: flex;

    gap: 35px;
}


.hero-links a {
    padding-bottom: 8px;

    border-bottom: 1px solid #a99f95;

    font-size: 10px;

    letter-spacing: 1.5px;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    max-width: var(--max);

    margin: 0 auto;

    padding: 150px 5vw;
}


.intro-label {
    margin-bottom: 35px;

    font-size: 9px;

    letter-spacing: 3px;

    color: var(--muted);
}


.intro h2 {
    max-width: 900px;

    margin: 0 0 35px;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 6vw, 90px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -3px;
}


.intro h2 em {
    color: var(--muted);
}


.intro p {
    max-width: 680px;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: #716b65;
}


/* =========================================================
   KOLEKSİYONLAR
========================================================= */

.home-collections {
    max-width: var(--max);

    margin: 0 auto;

    padding: 130px 5vw 160px;
}


.section-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 55px;
}


.section-top h2 {
    margin: 0;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 6vw, 90px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -3px;
}


.section-top h2 em {
    color: var(--muted);
}


.section-link {
    padding-bottom: 9px;

    border-bottom: 1px solid #aaa097;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.collection-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


.collection-card {
    display: block;
}


.collection-image {
    width: 100%;

    aspect-ratio: 0.72;

    background: var(--card);

    overflow: hidden;
}


.collection-image img {
    transition:
        transform 0.7s ease;
}


.collection-card:hover
.collection-image img {
    transform: scale(1.025);
}


.collection-info {
    padding-top: 18px;
}


.collection-info span {
    display: block;

    margin-bottom: 10px;

    font-size: 8px;

    letter-spacing: 2.5px;

    color: var(--muted);
}


.collection-info h3 {
    margin: 0;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 30px;

    font-weight: 400;
}


/* =========================================================
   ÖZEL DİKİM
========================================================= */

.custom-section {
    min-height: 700px;

    display: flex;

    align-items: center;

    padding: 130px 5vw;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);
}


.custom-content {
    max-width: 1050px;
}


.custom-content h2 {
    margin: 0 0 35px;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 6.5vw, 95px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -3px;
}


.custom-content h2 em {
    color: var(--muted);
}


.custom-content > p:not(.eyebrow) {
    max-width: 650px;

    margin: 0 0 35px;

    font-size: 14px;

    line-height: 1.8;

    color: #716b65;
}


.custom-content > a {
    display: inline-block;

    padding-bottom: 8px;

    border-bottom: 1px solid #aaa097;

    font-size: 10px;

    letter-spacing: 1.5px;
}


/* =========================================================
   ATÖLYE
========================================================= */

.atelier-section {
    min-height: 650px;

    display: flex;

    align-items: center;

    padding: 120px 5vw;
}


.atelier-content {
    max-width: 900px;
}


.atelier-content h2 {
    margin: 0 0 35px;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 6vw, 90px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -3px;
}


.atelier-content h2 em {
    color: var(--muted);
}


.atelier-content > p:not(.eyebrow) {
    max-width: 600px;

    margin: 0 0 35px;

    font-size: 14px;

    line-height: 1.8;

    color: #716b65;
}


.atelier-content > a {
    display: inline-block;

    padding-bottom: 8px;

    border-bottom: 1px solid #aaa097;

    font-size: 10px;

    letter-spacing: 1.5px;
}


/* =========================================================
   SON CTA
========================================================= */

.final-cta {
    padding: 160px 5vw;

    text-align: center;

    background: #e9e1d6;
}


.final-cta h2 {
    margin: 0 auto 30px;

    max-width: 1000px;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -3px;
}


.final-cta h2 em {
    color: var(--muted);
}


.final-cta > p:not(.eyebrow) {
    margin-bottom: 35px;

    font-size: 14px;

    color: #716b65;
}


.final-cta > a {
    display: inline-block;

    border: 1px solid var(--text);

    padding: 16px 30px;

    font-size: 9px;

    letter-spacing: 1.5px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {
    position: fixed;

    right: 24px;

    bottom: 24px;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #171615;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    z-index: 999999;

    box-sizing: border-box;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-button svg {
    width: 25px;

    height: 25px;

    display: block;

    fill: #ffffff;
}


.whatsapp-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   KADIN GİYİM
   RANDEVU BUTONU DA AYNI STANDARDI KULLANIR
========================================================= */

.women-appointment {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 116px;

    height: 42px;

    padding: 0;

    margin-left: 8px;

    box-sizing: border-box;

    background: var(--bg);

    border: 1px solid var(--text);

    color: var(--text);

    font-family: "Manrope", Arial, sans-serif;

    font-size: 9px !important;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 1.3px !important;

    text-transform: uppercase;

    white-space: nowrap;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.women-appointment:hover {
    background: var(--text);

    color: var(--bg);

    border-color: var(--text);
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 900px) {

    .site-header {
        height: auto;

        min-height: 85px;

        padding: 25px;

        align-items: flex-start;
    }


    .main-nav {
        display: none;
    }


    .hero {
        width: 100%;
        min-height: auto;
        padding: 50px 25px 55px;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-video {
        height: min(72vh, 680px);
    }

    .hero-content {
        max-width: 680px;
    }


    .hero h1 {
        font-size: 65px;

        letter-spacing: -2px;
    }


    .intro {
        padding: 100px 25px;
    }


    .home-collections {
        padding: 100px 25px;
    }


    .section-top {
        display: block;
    }


    .section-link {
        display: inline-block;

        margin-top: 30px;
    }


    .collection-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .custom-section,
    .atelier-section {
        padding: 100px 25px;
    }


    .final-cta {
        padding: 100px 25px;
    }


    .header-button,
    .women-appointment {
        width: 110px;

        height: 40px;

        font-size: 8px !important;

        letter-spacing: 1.1px !important;
    }
}


/* =========================================================
   KÜÇÜK MOBİL
========================================================= */

@media (max-width: 550px) {

    .hero {
        padding: 35px 20px 45px;
        gap: 40px;
    }

    .hero-video {
        height: 68vh;
        min-height: 480px;
    }

    .hero h1,
    .intro h2,
    .section-top h2,
    .custom-content h2,
    .atelier-content h2,
    .final-cta h2 {

        font-size: 50px;
    }


    .collection-grid {
        grid-template-columns: 1fr;
    }


    .collection-image {
        aspect-ratio: 0.8;
    }


    .hero-links {
        flex-direction: column;

        gap: 20px;
    }
}


/* =========================================================
   WHATSAPP — MOBİL
========================================================= */

@media (max-width: 600px) {

    .whatsapp-button {

        width: 50px;

        height: 50px;

        right: 18px;

        bottom: 18px;
    }


    .whatsapp-button svg {

        width: 24px;

        height: 24px;
    }
}
