/* === Google Font Import === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Work+Sans:wght@300;400;500&display=swap');

/* === CSS Variables === */
:root {
    --bg-krem: #F9F6F2;
    --metin-sepya: #4E443A;
    --vurgu-pembe: #C89F93;
    --ince-cizgi-renk: #DCD3C9;
    --beyaz: #FFFFFF;

    --font-baslik: 'Playfair Display', serif;
    --font-govde: 'Work Sans', sans-serif;
}

/* === Base & Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-krem);
    color: var(--metin-sepya);
    font-family: var(--font-govde);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Utility Classes === */
.sahne-cerceve {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ince-cizgi {
    border: none;
    height: 1px;
    background-color: var(--ince-cizgi-renk);
    margin: 1rem 0 3rem;
    width: 100px;
}

/* === Header & Navigation === */
.ust-bolum {
    padding: 1.5rem 0;
    position: relative;
    z-index: 100;
}

.ust-bolum .sahne-cerceve {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-marka {
    font-family: var(--font-baslik);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--metin-sepya);
}

.ana-navigasyon ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.ana-navigasyon a {
    text-decoration: none;
    color: var(--metin-sepya);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.ana-navigasyon a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--vurgu-pembe);
    transition: width 0.3s ease-in-out;
}

.ana-navigasyon a:hover::after,
.ana-navigasyon a.aktif::after {
    width: 100%;
}

/* === Burger Menu (Pure CSS) === */
.menu-gecis-kontrol {
    display: none;
}
.menu-dugme {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 101;
}
.menu-dugme span {
    width: 100%;
    height: 2px;
    background-color: var(--metin-sepya);
    transition: all 0.3s ease-in-out;
}


/* === Main Content Styling === */
.sahne-alani section {
    padding: 6rem 0;
}

/* --- Hero Section --- */
.hero-vitrin {
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(https://images.unsplash.com/photo-1616047006789-b7af5afb8c20?q=80&w=1887&auto=format&fit=crop);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--beyaz);
    padding: 4rem 0;
}

.hero-icerik h1 {
    font-family: var(--font-baslik);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: var(--beyaz);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-icerik p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--beyaz);
}

.cagri-dugmesi {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--vurgu-pembe);
    color: var(--beyaz);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cagri-dugmesi:hover {
    background-color: #b98b7d;
    transform: translateY(-2px);
}

.cagri-dugmesi.ikincil-dugme {
    background: none;
    border: 1px solid var(--vurgu-pembe);
    color: var(--vurgu-pembe);
}

.cagri-dugmesi.ikincil-dugme:hover {
    background: var(--vurgu-pembe);
    color: var(--beyaz);
}

/* --- Concepts Section --- */
.konsept-tanitim h2, .kiralama-sureci h2, .hakkimizda-ozet h2 {
    font-family: var(--font-baslik);
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.konsept-tanitim .ince-cizgi, .kiralama-sureci .ince-cizgi {
    margin-left: auto;
    margin-right: auto;
}

.konsept-galerisi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.konsept-kart {
    text-align: center;
}

.kart-gorsel {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.kart-gorsel img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.konsept-kart:hover .kart-gorsel img {
    transform: scale(1.05);
}

.kart-metin h3 {
    font-family: var(--font-baslik);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.kart-linki {
    display: inline-block;
    margin-top: 1rem;
    color: var(--vurgu-pembe);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.kart-linki:hover {
    color: var(--metin-sepya);
}

/* --- How to Rent Section --- */
.kiralama-sureci {
    background-color: var(--beyaz);
}

.surec-adimlari {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.adim-numara {
    font-family: var(--font-baslik);
    font-size: 2.5rem;
    color: var(--vurgu-pembe);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.surec-adim h4 {
    font-family: var(--font-govde);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* --- About Us Teaser --- */
.hakkimizda-ozet .sahne-cerceve {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ozet-gorsel {
    flex: 1;
    max-width: 400px;
}
.ozet-metin {
    flex: 1.2;
}

.hakkimizda-ozet h2 {
    text-align: left;
    margin-bottom: 1rem;
}
.hakkimizda-ozet .ince-cizgi {
    margin-left: 0;
    margin-right: 0;
}
.hakkimizda-ozet p {
    margin-bottom: 2rem;
}

/* === Footer === */
.alt-bilgi {
    background-color: #EFEAE4;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.alt-bilgi-icerik {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--ince-cizgi-renk);
}

.bilgi-kolonu h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.bilgi-kolonu ul {
    list-style: none;
}

.bilgi-kolonu li {
    margin-bottom: 0.5rem;
}

.bilgi-kolonu a {
    text-decoration: none;
    color: var(--metin-sepya);
    transition: color 0.3s;
}

.bilgi-kolonu a:hover {
    color: var(--vurgu-pembe);
}

.telif-hakki {
    padding-top: 2rem;
    text-align: center;
    color: #9c9186;
}


/* === Responsive Design === */
@media (max-width: 992px) {
    .hakkimizda-ozet .sahne-cerceve {
        flex-direction: column;
        text-align: center;
    }
    .hakkimizda-ozet h2 {
        text-align: center;
    }
    .hakkimizda-ozet .ince-cizgi {
        margin: 1rem auto 2rem;
    }
    .ozet-gorsel {
        max-width: 350px;
    }
}


@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .sahne-alani section {
        padding: 4rem 0;
    }
    
    /* --- Mobile Navigation --- */
    .menu-dugme {
        display: flex;
    }
    .ana-navigasyon {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-krem);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    }
    .ana-navigasyon ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .ana-navigasyon a {
        font-size: 1.5rem;
    }
    .menu-gecis-kontrol:checked ~ .ana-navigasyon {
        transform: translateX(0);
    }

    /* Burger to X animation */
    .menu-gecis-kontrol:checked + .menu-dugme span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-gecis-kontrol:checked + .menu-dugme span:nth-child(2) {
        opacity: 0;
    }
    .menu-gecis-kontrol:checked + .menu-dugme span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* --- Sections --- */
    .hero-vitrin {
        height: 70vh;
    }
    .hero-icerik h1 {
        font-size: 2.8rem;
    }

    .konsept-galerisi, .surec-adimlari {
        grid-template-columns: 1fr;
    }

    .alt-bilgi-icerik {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    .bilgi-kolonu .logo-marka {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 480px) {
    .sahne-cerceve {
        padding: 0 1rem;
    }
    .hero-icerik h1 {
        font-size: 2.2rem;
    }
    .alt-bilgi-icerik {
        grid-template-columns: 1fr;
    }
}
/* === Add this to the end of your style.css file === */

/* --- Page Title Section --- */
.sayfa-basligi {
    padding: 4rem 0;
    text-align: center;
    background-color: #EFEAE4; /* A subtle background to lift it from the main content */
}

.sayfa-basligi h1 {
    font-family: var(--font-baslik);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.sayfa-basligi p {
    font-size: 1.1rem;
    color: #9c9186;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Concepts Archive Section --- */
.konsept-arsivi {
    padding: 6rem 0;
}

/* Make the grid responsive for the archive page */
@media (max-width: 992px) {
    .konsept-galerisi {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sayfa-basligi {
        padding: 3rem 0;
    }
    .sayfa-basligi h1 {
        font-size: 2.5rem;
    }
    .konsept-arsivi {
        padding: 4rem 0;
    }
}

@media (max-width: 580px) {
    .konsept-galerisi {
        grid-template-columns: 1fr;
    }
}
/* === Add this to the end of your style.css file === */

/* --- Concept Detail Page --- */
.konsept-detay {
    padding: 4rem 0 6rem;
}

.konsept-baslik {
    text-align: center;
    margin-bottom: 4rem;
}

.konsept-baslik h1 {
    font-family: var(--font-baslik);
    font-size: 3.5rem;
    font-weight: 400;
}

.konsept-atmosfer {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 650px;
    margin: 1rem auto 0;
    color: #8a7d70;
    line-height: 1.6;
}

/* Magazine-style Asymmetrical Gallery */
.detay-galeri {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-bottom: 6rem;
}

.galeri-ogesi {
    overflow: hidden;
}

.galeri-ogesi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeri-ogesi.one {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 600px;
}
.galeri-ogesi.two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding: 2rem 0;
    align-self: end;
}
.galeri-ogesi.three {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: start;
}

.galeri-ogesi.two h3 {
    font-family: var(--font-baslik);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Key Elements Section */
.anahtar-elemanlar {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.anahtar-elemanlar h2 {
    font-family: var(--font-baslik);
    font-size: 2.5rem;
    font-weight: 400;
}

.anahtar-elemanlar .ince-cizgi {
    margin-left: auto;
    margin-right: auto;
}

.eleman-listesi {
    list-style: none;
    columns: 2;
    column-gap: 3rem;
    text-align: left;
    display: inline-block; /* Aligns list in center */
}

.eleman-listesi li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.eleman-listesi li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--vurgu-pembe);
}

/* Concept CTA Section */
.konsept-teklif-cagrisi {
    text-align: center;
    background-color: #EFEAE4;
    padding: 4rem 2rem;
}

.konsept-teklif-cagrisi h3 {
    font-family: var(--font-baslik);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.konsept-teklif-cagrisi p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Responsive adjustments for Detail Page */
@media (max-width: 992px) {
    .detay-galeri {
        display: flex;
        flex-direction: column;
    }
    .galeri-ogesi.one {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .konsept-baslik h1 {
        font-size: 2.8rem;
    }
    .eleman-listesi {
        columns: 1;
    }
}
/* === Add this to the end of your style.css file === */

/* --- About Us Page --- */
.hikaye-bolumu {
    padding: 6rem 0;
}

.hikaye-bolumu .sahne-cerceve {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.hikaye-gorsel {
    flex: 0 0 40%; /* Do not grow, do not shrink, base width 40% */
    position: sticky; /* Makes the image stick on scroll for a nice effect */
    top: 2rem;
}

.hikaye-metin {
    flex: 1;
}

.hikaye-metin h2 {
    font-family: var(--font-baslik);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hikaye-metin p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.vurgulu-soz {
    border-left: 3px solid var(--vurgu-pembe);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-family: var(--font-baslik);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--metin-sepya);
}

/* Responsive adjustments for About Us Page */
@media (max-width: 992px) {
    .hikaye-bolumu .sahne-cerceve {
        flex-direction: column;
    }
    .hikaye-gorsel {
        position: static; /* Remove sticky position on smaller screens */
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hikaye-bolumu {
        padding: 4rem 0;
    }
    .vurgulu-soz {
        font-size: 1.3rem;
    }
}
/* === Add this to the end of your style.css file === */

/* --- Contact Page --- */
.iletisim-bolumu {
    padding: 6rem 0;
    background-color: var(--beyaz);
}

.iletisim-icerik {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.iletisim-bilgileri h3,
.iletisim-formu-alani h3 {
    font-family: var(--font-baslik);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.bilgi-hatti {
    margin-bottom: 2rem;
}
.bilgi-hatti strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--metin-sepya);
}
.bilgi-hatti a, .bilgi-hatti span {
    color: #8a7d70;
    text-decoration: none;
    line-height: 1.6;
}
.bilgi-hatti a:hover {
    color: var(--vurgu-pembe);
}


/* Form Styling */
.iletisim-formu .form-grup {
    margin-bottom: 1.5rem;
}

.iletisim-formu label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.iletisim-formu input[type="text"],
.iletisim-formu input[type="email"],
.iletisim-formu input[type="tel"],
.iletisim-formu input[type="date"],
.iletisim-formu textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--ince-cizgi-renk);
    background-color: var(--bg-krem);
    font-family: var(--font-govde);
    font-size: 1rem;
    color: var(--metin-sepya);
    transition: border-color 0.3s ease;
}

.iletisim-formu input[type="date"] {
    color-scheme: light; /* Ensures date picker is light themed */
}


.iletisim-formu input:focus,
.iletisim-formu textarea:focus {
    outline: none;
    border-color: var(--vurgu-pembe);
}

.iletisim-formu .cift-grup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.iletisim-formu .cagri-dugmesi {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Responsive adjustments for Contact Page */
@media (max-width: 992px) {
    .iletisim-icerik {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .iletisim-bolumu {
        padding: 4rem 0;
    }
    .iletisim-formu .cift-grup {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
img{
    width: 100%;
}