/* Genel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Hero Banner Alanı */
.hero-banner {
    position: relative;
    width: 100%; /* Genişlik tüm siteyi kaplar */
    height: 200px; /* Yüksekliği dar olacak */
    background: url('image.png') no-repeat center center;
    background-size: 50%; /* Arka plan resmi genişliği */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Metin İçeriği */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 80%; /* İçeriğin genişliği */
}

.banner-content h1 {
    font-size: 1.8rem; /* Başlık boyutu */
    margin-bottom: 15px;
}

.banner-content .btn {
    display: inline-block;
    background-color: #1abc9c; /* Buton rengi */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease; /* Buton geçiş efekti */
}

.banner-content .btn:hover {
    background-color: #16a085; /* Hover efekti */
}

/* Overlay Efekti */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Yarı saydam arkaplan */
    z-index: 1;
}
