/* =========================
   GENEL AYARLAR
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #222222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   HEADER
========================= */

header {
    background-color: rgba(17, 17, 17, 0.97);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo span {
    color: #d4a84f;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    position: relative;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: #d4a84f;
    transition: 0.3s;
}

nav a:hover {
    color: #d4a84f;
}

nav a:hover::after {
    width: 100%;
}

.header-button {
    padding: 11px 20px;
    background-color: #d4a84f;
    color: #111111;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.header-button:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 680px;
    background:
        linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.25)
),
        url("../images/hero.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    color: white;
}

.hero-content {
    max-width: 760px;
}

.hero-subtitle {
    color: #d4a84f;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #d4a84f;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #d4a84f;
    color: #111111;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #111111;
}


/* =========================
   SECTION GENEL
========================= */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p,
.section-subtitle {
    color: #d4a84f;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    color: #111111;
}


/* =========================
   HİZMETLER
========================= */

.services {
    background-color: #f7f7f7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background-color: white;

    padding: 45px 35px;

    text-align: center;

    border-radius: 8px;

    border: 1px solid #eeeeee;

    transition: all 0.35s ease;

    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

    border-color: #d4a84f;
}

.service-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f5f0e7;

    border-radius: 50%;

    font-size: 32px;

    transition: 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 23px;

    margin-bottom: 15px;

    color: #111111;
}

.service-card p {
    color: #666666;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.service-link {
    color: #b18735;

    font-size: 14px;

    font-weight: bold;

    transition: 0.3s;
}

.service-link:hover {
    color: #111111;

    letter-spacing: 0.5px;
}


/* =========================
   HAKKIMIZDA
========================= */

.about {
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-content p {
    color: #666666;
    margin-bottom: 15px;
}


/* =========================
   PROJELER
========================= */

.projects {
    background-color: #f7f7f7;
}
.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.project-card {
    height: 330px;

    overflow: hidden;

    border-radius: 8px;

    position: relative;

    cursor: pointer;

    background-color: #111111;
}

.project-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}


/* PROJE ÜZERİ YAZI */

.project-overlay {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 30px 25px 25px;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.85)
        );

    color: white;

    transform: translateY(10px);

    opacity: 0.9;

    transition: 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);

    opacity: 1;
}

.project-overlay span {
    color: #d4a84f;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.project-overlay h3 {
    margin-top: 6px;

    font-size: 22px;

    color: white;
}

/* =========================
   İLETİŞİM
========================= */

.contact {
    background-color: #111111;
    color: white;
}

.contact .section-title h2 {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}


/* SOL TARAF */

.contact-info h3 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-info > p:not(.section-subtitle) {
    color: #bbbbbb;
    max-width: 500px;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #222222;

    border-radius: 50%;

    font-size: 22px;
}

.contact-item strong {
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    margin: 0;
    color: #aaaaaa;
}


/* FORM */

.contact-form {
    background-color: #1b1b1b;

    padding: 35px;

    border-radius: 8px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #dddddd;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid #333333;

    background-color: #111111;

    color: white;

    border-radius: 4px;

    font-size: 15px;

    font-family: inherit;

    outline: none;

    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4a84f;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 15px;

    background-color: #d4a84f;

    color: #111111;

    border: none;

    border-radius: 4px;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: #080808;
    color: #888888;
    text-align: center;
    padding: 25px 0;
}


/* =========================
   MOBİL
========================= */

@media (max-width: 768px) {

    header .container {
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
    }

    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 14px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .services-grid,
    .projects-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .about-content h2 {
        font-size: 34px;
    }

    section {
        padding: 70px 0;
    }
    .before-after-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.before-after-image {
    height: 350px;
}

.before-after-text h2 {
    font-size: 34px;
}
.contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 32px;
}

.contact-form {
    padding: 25px;
}
.projects-grid {
    grid-template-columns: 1fr;
}

.project-card {
    height: 300px;
}
.why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
 .reveal {
        transform: translateY(30px);

        transition:
            opacity 0.6s ease,
            transform 0.6s ease;
    }
}
/* =========================
   BEFORE / AFTER
========================= */

.before-after {
    background-color: white;
}

.before-after-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.before-after-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.before-after-text p {
    color: #666666;
    margin-bottom: 18px;
}
/* =========================
   MOBİL MENÜ
========================= */

@media (max-width: 900px) {

    .header-container {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        background-color: #111111;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 0;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 400px;
        padding: 15px 0;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }

    nav a::after {
        display: none;
    }

    .header-button {
        display: none;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 48px;
    }

}
/* =========================
   WHATSAPP
========================= */

.whatsapp-button {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    padding: 14px 20px;

    background-color: #25D366;
    color: white;

    border-radius: 50px;

    font-size: 14px;
    font-weight: bold;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

    transition: 0.3s;
}

.whatsapp-button:hover {
    transform: translateY(-4px);
}
/* =========================
   NEDEN BİZ
========================= */

.why-us {
    background-color: #ffffff;
}

.why-us-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.why-card {
    padding: 35px 25px;

    text-align: center;

    background-color: #f7f7f7;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    transition: all 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);

    background-color: #ffffff;

    border-color: #d4a84f;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f5f0e7;

    color: #b18735;

    border-radius: 50%;

    font-size: 25px;

    font-weight: bold;
}

.why-card h3 {
    font-size: 20px;

    margin-bottom: 12px;

    color: #111111;
}

.why-card p {
    color: #666666;

    font-size: 14px;

    line-height: 1.7;
}
/* =========================
   SCROLL ANİMASYONLARI
========================= */

.reveal {
    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}

.project-content {
    padding: 20px;
}


.project-category {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 13px;

    color: #23241f;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.project-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
}


.project-content p {
    margin: 0;
    color: #3d5466;
    line-height: 1.6;
}
/* =========================
   DİNAMİK PROJE KARTLARI
========================= */

.projects-grid .project-card {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: #ffffff !important;
}

.projects-grid .project-card img {
    border-radius: 8px !important;

    overflow: hidden !important;

    background: #ffffff !important;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.08);

    height: 200px !important;
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.projects-grid .project-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    background: #ffffff !important;

    padding: 20px !important;
}

.projects-grid .project-category {
    display: block !important;

    margin-bottom: 8px;

    color: #c58b32 !important;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.projects-grid .project-content h3 {
    display: block !important;

    margin: 0 0 10px 0;

    color: #222222 !important;

    font-size: 20px;
}

.projects-grid .project-content p {
    display: block !important;

    margin: 0;

    color: #666666 !important;

    line-height: 1.6;

    font-size: 14px;
}
/* =========================
   PROJE FİLTRELERİ
========================= */

.project-filters {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;
}


.project-filter {
    border: 1px solid #ddd;

    background: #fff;

    color: #333;

    padding: 10px 18px;

    border-radius: 4px;

    cursor: pointer;

    font-size: 13px;

    transition: 0.3s;
}


.project-filter:hover {
    background: #f3f3f3;
}


.project-filter.active {
    background: #c58b32;

    border-color: #c58b32;

    color: #fff;
}


.no-projects {
    width: 100%;

    text-align: center;

    padding: 40px 20px;

    color: #777;
}