/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: auto; /* Hero kısmının yüksekliği */
    background-color: #fd8914;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px 40px 70px 40px;
    color: white;
    box-sizing: border-box;
    border-radius: 0 0 60px 60px;
    margin-bottom: 100px;
}

.hero-content {
    max-width: 900px; /* Metin genişliği */
    padding: 20px;
}

.hero-title {
    font-size: 3rem; /* Başlık boyutu */
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic; 
    color: black;
}

.hero-p {
    font-size: 1.3rem; /* Metin boyutu */
    font-family: "Noto Sans", serif !important;
    line-height: 1.2;
    color: white;
    
}

.header-wave{
    position: absolute;
    width: 100%;
    top: -9%;
    left: 0;
    height: 10%;
    z-index: 2;
    overflow: hidden;
}

#more-hero-text{
    opacity: 0;
    max-height: 0;
    margin: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease; /* Geçiş efektleri */
}


#more-hero-text.visible {
    opacity: 1; /* Görünür */
    max-height: 500px; /* Yükseklik (içeriğe göre artırılabilir) */
    margin: 5% 0;
}



.hero-read-more-btn{
    display: inline-block;
    padding: 12px 24px; /* Buton boyutu */
    color: #fff;
    background-color: transparent;
    font-size: 16px; /* Yazı boyutu */
    font-weight: bold; /* Yazı kalınlığı */
    text-align: center; /* Yazıyı ortalama */
    border: 2px solid #fff;
    border-radius: 8px; /* Köşeleri yuvarlatma */
    transition: all 0.3s ease; /* Geçiş animasyonu */
    cursor: pointer; /* Tıklanabilir işareti */
    margin: 5% 0 0 0;
    z-index: 999;
    position: relative;
}

.hero-read-more-btn:hover{
    transform: translateY(-2px); /* Hover'da yukarı kayma efekti */
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto; /* Mobilde içerik boyutuna göre otomatik */
        padding: 15px; /* Daha dar padding */
        border-radius: 0 0 30px 30px;
    }

    .hero-content {
        max-width: 90%;
        height: auto;
    }

    .hero-p {
        max-width: 100%;
        text-align: justify;
        margin: 0 auto;
        font-size: 0.9rem; 
        line-height: 1.2;
    }

    .hero h3 {
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    #more-hero-text.visible {
        padding-bottom: 120px;
    }
}
