﻿
html, body {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 16px; /* mobilde nefes */
}


/* =====================
   RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #000;
}

/* =====================
   TOP BAR
===================== */
.top-bar {
    background: #000;
    color: #c9a24d;
    font-size: 13px;
}

.top-bar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 6px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c9a24d;
    font-size: 13px;
    white-space: nowrap;
}

    .top-item svg {
        width: 16px;
        height: 16px;
        fill: #c9a24d;
    }

/* =====================
   HEADER (SABİT – HİZALI)
===================== */
.header {
    background: #111;
    border-bottom: 1px solid #222;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    height: 90px; /* 🔒 header sabit */
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* 🔥 LOGO & MENÜ AYNI HAT */
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 225px; /* 🔥 ideal logo boyutu */
        width: auto;
        display: block;
        margin-top: 25px;
    }

/* NAV */
.nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

    .nav ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
    }

        .nav ul li a:hover {
            color: #c9a24d;
        }

/* =====================
   HERO – TAM EKRAN
===================== */
.hero {
    min-height: calc(100vh - 90px - 36px); /* header + top-bar */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

.hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    max-width: 700px;
    margin: auto;
}

.hero-btn {
    margin-top: 25px;
}

/* HERO MOBİL */
@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 80px);
    }

        .hero h1 {
            font-size: 30px;
        }
}

/* =====================
   SERVICES
===================== */
.services {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

    .services .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
    }

    .services h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .services .subtitle {
        margin-bottom: 50px;
        color: #555;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-box {
    background: #f4f1ec;
    padding: 35px 20px;
    border-top: 3px solid #c9a24d;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .service-box img {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
    }

    .service-box span {
        font-weight: 600;
        font-size: 15px;
    }

/* SERVICES RESPONSIVE */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   BLOG
===================== */
.blog {
    padding: 90px 0;
    background: #f8f8f8;
    text-align: center;
}

    .blog h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .blog .subtitle {
        margin-bottom: 50px;
        color: #555;
    }

.blog-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .blog-card img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        background: #f6f2ea;
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 16px;
        padding: 15px 15px 5px;
    }

    .blog-card p {
        font-size: 14px;
        padding: 0 15px 15px;
        color: #555;
    }

/* BLOG RESPONSIVE */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   BUTTON
===================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    background: #c9a24d;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

    .btn:hover {
        background: #b08c3f;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

/* =====================
   CONTACT
===================== */
.contact {
    background: url('/images/contact-bg.jpg') center/cover no-repeat;
}

.contact-overlay {
    background: rgba(0,0,0,0.7);
    padding: 90px 0;
    color: #fff;
}

.contact .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: none;
}

.contact-form button {
    background: #c9a24d;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    font-weight: 600;
}

/* CONTACT RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   FOOTER
===================== */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
}

.footer-top a {
    color: #c9a24d;
    margin: 0 10px;
    font-size: 14px;
    text-decoration: none;
}

    .footer-top a:hover {
        text-decoration: underline;
    }

.footer-bottom {
    margin-top: 10px;
    font-size: 13px;
}

/* =====================
   PAGE HERO
===================== */
.page-hero {
    background: url('/images/page-hero-hakkimizda.jpg') center/cover no-repeat;
    height: clamp(260px, 40vh, 420px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

.page-hero-overlay {
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* =====================
   PAGE CONTENT
===================== */
.page-content {
    padding: 80px 0;
}

    .page-content .container {
        max-width: 1000px;
        margin: auto;
        padding: 0 20px;
    }

    .page-content p {
        margin-bottom: 20px;
        color: #333;
    }

    .page-content .intro {
        font-size: 18px;
        font-weight: 500;
    }

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}
    .two-column .about-card {
        background-color: #f4f1ec;
        padding: 30px;
        border-left: 4px solid #c9a24d;
    }
    .two-column h3 {
        margin-bottom: 10px;
    }

.principles h3 {
    margin-bottom: 15px;
}

.principles ul {
    padding-left: 20px;
}

.principles li {
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}
/* MİSYON & VİZYON GÖRSEL OLARAK TAM EŞİT */
.two-column {
    align-items: stretch;
}

    .two-column .box {
        background-color: #f4f1ec;
        border-left: 4px solid #c9a24d;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
/* BLOG HERO ÖZEL */
.blog-hero {
    background: url('/images/pages/blog-hero.jpg') center/cover no-repeat;
}
/* BLOG KART LİNK DÜZELTME */
.blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card h3 {
    color: #000;
    transition: color .3s ease;
}

.blog-card:hover h3 {
    color: #c9a24d;
}
.blog-card {
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }
/* =====================
   CONTACT PAGE
===================== */

.contact-page {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* SOL TARAF */
.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info .info-item {
    margin-bottom: 20px;
}

.contact-info p {
    color: #333;
}

/* SAĞ TARAF */
.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================
   CONTACT MAP (FULL WIDTH)
===================== */
.contact-map {
    margin-top: 40px;
}

    .contact-map iframe {
        width: 100%;
        height: 380px;
        border: 0;
        display: block;
    }

/* KVKK & GİZLİLİK – LİSTE HİZALAMA */
.page-content ul {
    list-style: disc;
    padding-left: 18px;
}

    .page-content ul li::marker {
        color: #000; /* siyah */
    }

/* ===== HAMBURGER ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

    .menu-toggle span {
        width: 26px;
        height: 2px;
        background: #c9a24d;
        display: block;
    }

/* ===== MOBİL ===== */
@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #111;
        z-index: 999;
    }

        .nav ul {
            flex-direction: column;
            gap: 0;
        }

            .nav ul li {
                border-bottom: 1px solid #222;
            }

                .nav ul li a {
                    display: block;
                    padding: 16px;
                }

        .nav.active {
            display: block;
        }
}
