/* Genel stiller */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Kahraman Bölümü */
.hero-section {
    height: 100vh;
    background: url('mainpage_image.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-overlay button {
    background: #ff4c60;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.hero-overlay button:hover {
    background: #ff1f3b;
}

/* Bölüm Stilleri */
.section {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
}

.section:nth-child(even) {
    background: #fff;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Galeri */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    background: #eee;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}

