/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfc;
    color: #2d2d2d;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigasyon */
nav {
    padding: 30px;
    text-align: center;
    background: #fff;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 5px;
    font-weight: 700;
}

/* Hero Bölümü */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('https://images.unsplash.com/photo-1603006905003-be475563bc59?auto=format&fit=crop&q=80');
    /* Geçici arka plan, kendi fotonla değiştirebilirsin */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

/* Buton */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #444;
}

/* Özellikler Bölümü */
.about {
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}