:root {
    --black: #111;
    --gray: #111;   /* ARTIK SİYAH */
    --line: #000000;
}

body {
    background-color: #fff;
    color: var(--black);
}

.navbar {
    background-color: #fffefe;
    border-bottom: 1px solid var(--line);
}

.summer-bg {
    position: relative;
    background-attachment: fixed;
}



.season-hero {
    height: 90vh;
    justify-content: center;
}

.season-hero h1 {
    font-size: 68px;
    max-width: 720px;
    line-height: 1.05;
    color: var(--black);
}

.season-hero p {
    margin-top: 24px;
    font-size: 18px;
    max-width: 500px;
    color: var(--black);
}

.season-content {
    max-width: 1300px;
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 100px;
    position: relative;
}

.season-content article h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--black);
}

.season-content article p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--black);
}

.season-content::after {
    content: "SUMMER EDIT";
    writing-mode: vertical-rl;
    position: absolute;
.summer-gallery img {
    width: 100%;
    filter: brightness(105%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.summer-gallery img:hover {
    transform: scale(1.04);
    filter: brightness(115%);
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--line);
    margin: 140px 0;
}

.footer {
    background: #ffffff;
    border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
    .season-hero h1 {
        font-size: 48px;
    }

    .season-content {
        grid-template-columns: 1fr;
        padding: 100px 40px;
    }

    .summer-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .summer-gallery {
        grid-template-columns: 1fr;
    }
}    right: 50px;
    top: 160px;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--black); /* DİKEY YAZI DA SİYAH */
}

.summer-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 60px 120px;
}
/* HERO ALANI ALT BOŞLUĞU AZALT */
.season-hero {
    height: auto;          /* EN ÖNEMLİ SATIR */
    padding: 80px 80px 40px;
}


/* RESİM İLE YAZI ARASI BOŞLUK */
img {
    display: block;
    margin: 20px auto 40px;  /* ÜST BOŞLUK AZ */
    max-width: 90%;
}


/* METİN BLOĞU BOŞLUĞU */
.season-content {
    padding: 60px 60px;    /* 140px yerine */
}
img {
    margin: 10px auto;
}
/* 🔲 Dikdörtgen çerçeveli "Ana Sayfaya Dön" butonu */
.button {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #000;        /* Siyah çerçeve */
    background-color: transparent; /* İçi boş, sade */
    color: #000;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: "Poppins", Arial, sans-serif;
    border-radius: 4px;            /* Hafif köşeli, tam dikdörtgene yakın */
    transition: all 0.25s ease;
    margin: 40px auto;
    display: block;
    width: fit-content;            /* Genişliği yazıya göre */
}

/* Hover efekti */
.button:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.18);
}




