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

html,
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #171717;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   GENEL CONTAINER
========================= */

.header-container {
    width: min(92%, 1450px);
    margin: 0 auto;
}


/* =========================
   ÜST BAR
========================= */

.topbar {
    background: #f7f2ec;
    height: 40px;
    display: flex;
    align-items: center;
}

.topbar-inner {
    display: flex;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 38px;
    align-items: center;
}

.topbar-left a {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.topbar-left i {
    color: #ff4338;
}


/* =========================
   ANA HEADER
========================= */

.main-header {
    height: 104px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 180px;
    max-height: 70px;
    object-fit: contain;
}


/* =========================
   MASAÜSTÜ MENÜ
========================= */

.desktop-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin-left: auto;
    margin-right: 80px;
}

.desktop-menu a {
    font-size: 17px;
    font-weight: 700;
    position: relative;
    transition: .25s;
}

.desktop-menu a:hover {
    color: #ff2525;
}

.desktop-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 2px;
    background: #ff2525;
    transform: translateX(-50%);
    transition: .25s;
}

.desktop-menu a:hover::after {
    width: 100%;
}


/* =========================
   SAĞ ALAN
========================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}


/* INSTAGRAM */

.instagram-button {
    width: 50px;
    height: 50px;
    background: #faf7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.instagram-button i {
    color: #ff2525;
    font-size: 20px;
}


/* =========================
   9 KARE MENÜ
========================= */

.menu-trigger {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;

    display: grid;
    grid-template-columns: repeat(3, 7px);
    grid-template-rows: repeat(3, 7px);

    gap: 6px;

    align-content: center;
    justify-content: center;

    cursor: pointer;
}

.menu-trigger span {
    width: 7px;
    height: 7px;
    background: #ff1f1f;
    display: block;
}


/* =========================
   OVERLAY
========================= */

.mobile-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .65);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   AÇILIR MOBİL MENÜ
========================= */

.mobile-menu {
    position: fixed;

    top: 0;
    right: -420px;

    width: 390px;
    max-width: 88%;

    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    padding: 25px;

    overflow-y: auto;

    transition: right .35s ease;
}

.mobile-menu.active {
    right: 0;
}


/* MENÜ ÜST */

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;
    border-bottom: 1px solid #dedede;
}

.mobile-menu-top img {
    width: 165px;
    max-height: 65px;
    object-fit: contain;
}

.menu-close {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    border: 0;

    background: #ff2525;

    color: white;

    font-size: 22px;

    cursor: pointer;
}


/* MOBİL NAV */

.mobile-nav {
    display: flex;
    flex-direction: column;

    margin-top: 45px;
}

.mobile-nav a {
    padding: 16px 0;

    border-bottom: 1px solid #e4e4e4;

    font-size: 15px;
    font-weight: 800;

    transition: .2s;
}

.mobile-nav a:hover {
    color: #ff2525;
}


/* =========================
   MOBİL İLETİŞİM
========================= */

.mobile-contact {
    margin-top: 42px;
}

.mobile-contact h3 {
    font-size: 26px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 20px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}

.contact-icon {
    min-width: 45px;
    width: 45px;
    height: 45px;

    border: 1px solid #dedede;

    border-radius: 6px;

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

.contact-icon i {
    color: #71808b;
}


/* =========================
   TABLET / MOBİL
========================= */

@media (max-width: 991px) {

    .topbar {
        display: none;
    }

    .main-header {
        height: 96px;
    }

    .header-container {
        width: calc(100% - 34px);
    }

    .desktop-menu {
        display: none;
    }

    .instagram-button {
        display: none;
    }

    .header-right {
        gap: 0;
    }

    .logo img {
        width: 165px;
    }

}


/* =========================
   KÜÇÜK MOBİL
========================= */

@media (max-width: 480px) {

    .main-header {
        height: 92px;
    }

    .logo img {
        width: 155px;
    }

    .menu-trigger {
        width: 45px;
        height: 45px;
    }

    .mobile-menu {
        padding: 22px;
    }

    .mobile-menu-top img {
        width: 150px;
    }

    .mobile-nav {
        margin-top: 35px;
    }

    .mobile-contact h3 {
        font-size: 24px;
    }

}