/* Genel Stil Ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

/* Header Stilleri */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

header .logo h1 {
    margin: 0;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
}

/* Hero Bölgesi */
.hero {
    background-image: url('./assets/resimler/kahce.webp'); /* Arka plan kahve resmi */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Karartma efekti */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
}

.hero .btn {
    background-color: #e77f67;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #d06a54;
}

/* Özellikler Bölümü */
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background: #f4f4f4;
}
.features .feature {
    text-align: center;
    max-width: 300px;
}
.features img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Hakkımızda Bölümü */
.about-us {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    background: #fff;
}
.about-content {
    flex: 1;
    margin-right: 20px;
}
.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Abone Ol Bölümü */
.subscribe {
    text-align: center;
    padding: 50px 20px;
    background: #333;
    color: #fff;
}
.subscribe form {
    margin-top: 20px;
}
.subscribe input[type="email"] {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border: none;
    border-radius: 5px;
}
.subscribe button {
    background: #f4a261;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.subscribe button:hover {
    background: #e76f51;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}
footer .footer-links a {
    color: #f4a261;
    text-decoration: none;
    margin: 0 10px;
}
footer .footer-links a:hover {
    text-decoration: underline;
}
