﻿/* Daha büyük Navbar */
.custom-navbar {
    padding: 40px 0; /* arttırıldı */
    transition: all 0.3s ease;
    background: transparent;
}

    /* Scroll sonrası */
    .custom-navbar.scrolled {
        background: #ffffff;
        padding: 25px 0; /* arttırıldı */
        box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    }

/* Logo boyutları büyütüldü */
.nav-logo {
    height: 75px; /* büyütüldü */
    transition: height 0.3s ease;
}

.custom-navbar.scrolled .nav-logo {
    height: 55px; /* scroll sonrası */
}

/* Menü yazıları daha büyük yapıldı */
.nav-link {

    font-weight: bold;
    margin-left: 40px; /* arttırıldı */
    font-size: 25px; /* daha büyük */
    color: black;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #b68a4c; /* logodaki altın tonu */
    }



.hero-final {
    height: 100vh;  
    width: 100%;
    background: url('../image/hero1.jpg') center center/cover no-repeat;
    position: relative;
    padding-top: 160px; /* navbar boşluğu */
    display: flex;
    justify-content: center;
    align-items: center; /* tam ortalama */
    gap: 120px; /* iki kutu arası boşluk */
}

.hero-left h1 {
    font-size: 68px;
    font-weight: 900;
    color: #b68a4c;
    line-height: 1.1;

    max-width: 600px;
}
.hero-right {
    background: #ffffff52;
    padding: 35px 45px;
    border-radius: 18px;
    backdrop-filter: blur(4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    max-width: 450px; /* biraz daha geniş tuttuk */
}

    /* Üstteki tanıtım metni */
    .hero-right .right-title {
        color: black;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    /* Uygulama listesi */
    .hero-right .right-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .hero-right .right-list li {
            font-size: 20px;
            color: black;
            margin-bottom: 10px;
            padding-left: 0;
            position: relative;
        }

            /* Nokta yerine gold çizgi efekti */
            .hero-right .right-list li::before {
                content: "—";
                color: #b68a4c; /* altın renk */
                font-weight: 900;
                margin-right: 10px;
            }

/* MOBİLDE HERO KÜÇÜLTME */
@media (max-width: 768px) {

    /* Hero genel hizalama */
    .hero-final {
        padding-top: 160px;
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 35px; /* iki eleman arası boşluk */
    }

    /* Sol başlık */
    .hero-left h1 {
        font-size: 30px; /* küçültüldü */
        line-height: 1.25;
        text-align: center;
        max-width: 90%;
    }

    .hero-left {
        width: 100%;
        text-align: center;
    }

    /* Sağ kutucuk */
    .hero-right {
        width: 100%;
        max-width: 350px; /* gereksiz büyümeyi engeller */
        padding: 18px 20px; /* küçültüldü */
        border-radius: 12px;
        margin-top: 10px;
        text-align: center;
    }

        .hero-right .right-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .hero-right .right-list li {
            font-size: 15px;
            margin-bottom: 6px;
        }
}


/* SADECE MOBILDE BEYAZ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white !important;
        padding: 20px;
    }
}


.about-section {
    padding: 120px 80px;
    background: #f8f8f8;
}

.container-about {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Sol taraf */
.about-left {
    flex: 1;
}

    .about-left h2 {
        font-size: 48px;
        font-weight: 900;
        color: #000;
        margin-bottom: 25px;
    }

    .about-left p {
        font-size: 20px;
        color: #333;
        line-height: 1.7;
        margin-bottom: 28px;
    }

/* Maddeler */
.about-list {
    list-style: none;
    padding: 0;
}

    .about-list li {
        font-size: 19px;
        margin-bottom: 14px;
        padding-left: 22px;
        position: relative;
    }

        /* Gold ikon efekti */
        .about-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 9px;
            width: 10px;
            height: 10px;
            background: #b68a4c;
            border-radius: 50%;
        }

/* Sağ taraf görsel */
.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .about-right img {
        width: 100%;
        max-width: 650px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }




/* ----------------------------- */
/* MOBIL UYUMLU ABOUT SECTION    */
/* ----------------------------- */
@media (max-width: 900px) {
    .container-about {
        flex-direction: column;
        text-align: center;
    }

    .about-left h2 {
        font-size: 38px;
    }

    .about-left p {
        font-size: 18px;
    }

    .about-right img {
        max-width: 450px;
        margin-top: 40px;
    }
}

@media (max-width: 500px) {
    .about-left h2 {
        font-size: 30px;
    }

    .about-left p {
        font-size: 17px;
    }

    .about-right img {
        max-width: 350px;
    }
}
.services-section {
    padding: 120px 60px;
    background: #ffffff;
}

.services-title {
    text-align: center;
    margin-bottom: 60px;
}

    .services-title h2 {
        font-size: 48px;
        font-weight: 900;
        color: #000;
        margin-bottom: 10px;
    }

    .services-title p {
        font-size: 20px;
        color: #555;
    }

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: auto;
}

/* KARTLAR */
.service-card {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: all .3s ease;
    border-top: 4px solid #b68a4c;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

/* Icon */
.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Başlık */
.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* Metin */
.service-card p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* MOBİL */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



.services-section {
    padding: 120px 60px;
    background: #ffffff;
    position: relative;
    z-index: 10; /* Hero altında kalmasın diye */
}
.services-title {
    text-align: center;
    margin-bottom: 60px;
    z-index: 20;
    position: relative;
}

    .services-title h2 {
        font-size: 48px;
        font-weight: 900;
        color: #000;
    }

    .services-title p {
        font-size: 20px;
        color: #555;
        margin-top: 10px;
    }

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: auto;
}

/* KARTLAR */
.service-card {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: all .3s ease;
    border-top: 4px solid #b68a4c;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

/* Icon */
.service-icon {
    font-size: 48px;
    color: #b68a4c; /* altın */
    margin-bottom: 15px;
}

/* Başlık */
.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* Metin */
.service-card p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* MOBİL */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    /* Başlık küçültme */
    .services-title h2 {
        font-size: 26px;
    }

    .services-title p {
        font-size: 15px;
    }

    /* 2 SÜTUN GRID */
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 18px;
        padding: 0 10px;
        justify-items: center; /* sütunları ortalar */
    }

    /* Kartların boyutunu kısalttık */
    .service-card {
        width: 100%; /* sütun içinde tam genişlik */
        max-width: 180px; /* taşmayı engeller */
        padding: 15px;
        border-radius: 10px;
        text-align: center;
    }

    /* Icon küçültme */
    .service-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    /* Başlık */
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    /* Açıklama metni */
    .service-card p {
        font-size: 13px;
        line-height: 1.3;
        margin: 0;
    }
}







.contact-section {
    padding: 120px 60px;
    background: #f9f9f9;
}

.contact-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 70px;
}

/* SOL TARAF */
.contact-left {
    flex: 1;
}

    .contact-left h2 {
        font-size: 46px;
        font-weight: 900;
        margin-bottom: 20px;
    }

.contact-text {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.contact-info {
    list-style: none;
    padding: 0;
}

    .contact-info li {
        font-size: 20px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #333;
    }

    .contact-info i {
        color: #b68a4c;
        font-size: 24px;
    }



/* SAĞ TARAF FORM */
.contact-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 18px;
        border-radius: 12px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
        background: #fff;
    }

    .contact-form textarea {
        height: 150px;
        resize: none;
    }

    .contact-form button {
        padding: 18px;
        background: #b68a4c;
        color: #fff;
        font-size: 18px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: .3s;
    }

        .contact-form button:hover {
            background: #a0753f;
        }



/* MOBİL UYUMLU */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left h2 {
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .contact-right {
        margin-top: 40px;
    }
}
