.hero-section {
    height: 90vh; /* Ekranın %90'ı */
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('/resim/galeri/31.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-pretitle {
    color: #c9a24d; /* Altın Rengi */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Buton Tasarımları */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: #c9a24d;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e6c57a;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000;
}

/* Mobil için */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 40px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
}
/* Mobil için Hero Alanı Güncellemesi */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;       /* Yüksekliği ekranın %60'ına düşürdük */
        min-height: 400px;  /* Çok küçük ekranlar için minimum sınır */
        padding: 0 15px;    /* Yan boşlukları biraz sıktık */
    }

    .hero-content {
        padding-top: 20px;  /* Yukarıdan biraz boşluk bırakır */
    }

    .hero-content h1 {
        font-size: 32px;    /* Başlığı mobilde daha okunabilir boyuta çektik */
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 15px;    /* Metni biraz küçülttük */
        margin-bottom: 25px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px; /* Butonları biraz daha kompakt hale getirdik */
        font-size: 14px;
    }
}

/*Biz Kimiz*/
.about-section {
    padding: 100px 20px;
    background: #0d0d0d;
    color: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Sol: Görsel */
.about-image {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.image-frame img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: 0.5s;
}

.image-frame img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.accent-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #c9a24d;
    top: 30px;
    left: 30px;
    border-radius: 20px;
    z-index: 1;
}

/* Sağ: Metin */
.subtitle {
    color: #c9a24d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

.about-content p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.about-features li span {
    color: #c9a24d;
    margin-right: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

/* Mobil Uyumu */
@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; gap: 50px; }
    .accent-box { display: none; }
    .about-content h2 { font-size: 32px; }
}





 /* ===== HİZMETLER BÖLÜMÜ (SERVICES SECTION) ===== */

.services-section {
    padding: 40px 20px 80px 20px;
    background: #0d0d0d;
    color: #ffffff;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Başlık */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: #c9a24d; /* Altın Rengi */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-top: 10px;
}

/* Grid Yapısı (4 Sütun) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Kartlar */
.service-card {
    background: #161616;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    text-align: center;
}

/* Kart Hover Efekti */
.service-card:hover {
    border-color: #c9a24d;
    transform: translateY(-10px);
    background: #1a1a1a;
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: #888888;
    line-height: 1.6;
    font-size: 14px;
}

/* ===== MOBİL UYUM (2x2 Grid) ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}