/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GENEL */
body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 80px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    position: relative;
    z-index: 9999; /* HERO ÜSTÜNDE */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 36px;
}

.menu > li {
    position: relative;
}

.menu a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #111;
    position: relative;
}

/* ALT ÇİZGİ */
.menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: #111;
    transition: width 0.3s ease;
}

.menu > li > a:hover::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 180px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 10000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #444;
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 120%;
}

/* HERO */
.hero {
    height: 90vh;
    background-image: url("resimler/indir.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 80px;
    position: relative;
}

/* HERO OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
    z-index: 1;
    pointer-events: none;
}

/* HERO TEXT */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 620px;
    background: rgba(255,255,255,0.9);
    padding: 50px;
    animation: fadeUp 1s ease;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #333;
}

/* BUTTON */
.btn {
    text-decoration: none;
    border: 1px solid #111;
    padding: 14px 36px;
    color: #111;
    font-size: 13px;
    letter-spacing: 2px;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #111;
    color: #fff;
}

/* EDITORIAL */
.editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 100px 80px;
}

.card {
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    margin-bottom: 20px;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    color: #666;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .navbar {
        padding: 25px 30px;
    }

    .hero {
        padding: 0 30px;
    }

    .editorial {
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 38px;
    }
}



