.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;
    }
}

/* HERO */
.experience-hero{
text-align:center;
padding:100px 20px 60px;
}

.experience-hero h1{
color:#c9a24d;
font-family:"Playfair Display";
font-size:42px;
margin-bottom:15px;
letter-spacing:1px;
}

.experience-hero p{
font-size:18px;
color:#ddd;
max-width:600px;
margin:auto;
line-height:1.6;
}

/* FLOW */
.experience-flow{
max-width:1100px;
margin:auto;
display:flex;
flex-direction:column;
gap:70px;
padding:40px 20px;
}

/* ROW */
.exp-row{
display:flex;
align-items:center;
gap:40px;
color:#fff;
}

/* ters yön */
.exp-row.reverse{
flex-direction:row-reverse;
}

/* IMAGE */
.exp-row img{
width:50%;
height:300px;
object-fit:cover;
border-radius:16px;
transition:.5s;
}

/* TEXT */
.exp-text{
width:50%;
}

/* BAŞLIK */
.exp-text h2{
font-family:"Playfair Display";
font-size:26px;
color:#c9a24d;
margin-bottom:10px;
}
.exp-text h4{
font-family:"Playfair Display";
font-size:18px;
color:#c9a24d;
margin-bottom:5px;
}

/* AÇIKLAMA */
.exp-text p{
color:#ccc;
font-size:15px;
line-height:1.6;
max-width:420px;
}

/* BUTON */
.exp-btn{
display:inline-block;
margin-top:14px;
padding:8px 18px;
border:1px solid #c9a24d;
color:#c9a24d;
border-radius:30px;
font-size:13px;
text-decoration:none;
transition:.3s;
letter-spacing:1px;
text-transform:uppercase;
}

.exp-btn:hover{
background:#c9a24d;
color:#000;
transform:translateY(-2px);
box-shadow:0 0 10px #c9a24d80;
}

/* HOVER IMAGE */
.exp-row:hover img{
transform:scale(1.05);
}

/* 🔥 RESPONSIVE */
@media (max-width:768px){

.experience-hero{
padding:70px 15px 40px;
}

.experience-hero h1{
font-size:28px;
margin-bottom:10px;
}

.experience-hero p{
font-size:15px;
}

/* tek sütun */
.exp-row{
flex-direction:column !important;
gap:15px;
text-align:center;
}

/* görsel */
.exp-row img{
width:100%;
height:200px;
}

/* text */
.exp-text{
width:100%;
}

.exp-text h2{
font-size:20px;
}

.exp-text p{
font-size:14px;
max-width:100%;
}

/* buton */
.exp-btn{
font-size:12px;
padding:7px 14px;
}

}
