/* HEADER */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: transparent;
    box-shadow: none;
    border-bottom: none;
}

.header .nav {
    background: transparent;
}

/* NAV */
.nav {
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

/* LOGO */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

/* MENÜ */
.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    position: relative;
    color: #170202;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

/* ALT ÇİZGİ */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #d77933;
    transition: 0.3s ease;
}

/* HOVER */
.menu a:hover {
    color: #d77933;
}

.menu a:hover::after {
    width: 100%;
}

/* AKTİF SAYFA */
.menu a.active {
    color: #170202;
}

.menu a.active::after {
    width: 100%;
}

/* MOBİL MENÜ BUTONU */
.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(23, 2, 2, 0.25);
    background: rgba(255, 255, 255, 0.35);
    color: #170202;
    font-size: 25px;
    cursor: pointer;
    box-shadow: none;
    border-radius: 0;
}

/* ESKİ YAZI LOGO KULLANILIRSA */
.logo-word {
    color: var(--coffee-dark);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 600;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    white-space: nowrap;
}

.logo-word em {
    font-family: cursive;
    font-size: 0.72em;
    color: var(--coffee-accent);
    font-style: italic;
    font-weight: 700;
    margin-left: 6px;
    transform: rotate(-7deg);
}

.anka-a {
    position: relative;
    display: inline-block;
    color: var(--coffee-dark);
    font-weight: 800;
    transform: skew(-8deg);
    margin: 0 -1px;
}

.anka-a::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 28px;
    background: var(--red-accent);
    left: 10px;
    top: -4px;
    border-radius: 14px 14px 2px 14px;
    transform: rotate(-28deg);
    z-index: -1;
}

.anka-a::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 8px;
    background: var(--coffee-accent);
    left: 1px;
    bottom: 2px;
    border-radius: 50%;
    transform: rotate(-22deg);
    z-index: -1;
}