* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body { background-color: #f9f9f9; scroll-behavior: smooth; }

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 100;
}

.logo { font-size: 24px; font-weight: bold; color: #2d5a27; }
.logo span { color: #8b4513; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 500; }

header {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1542131597-270831669894?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 { font-size: 48px; margin-bottom: 10px; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2d5a27;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

#urunler { padding: 50px 10%; }
.section-title { text-align: center; margin-bottom: 40px; color: #2d5a27; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-card img { width: 100%; border-radius: 8px; margin-bottom: 15px; }

.price { font-size: 20px; font-weight: bold; color: #8b4513; margin: 10px 0; }

.buy-btn {
    display: block;
    padding: 10px;
    background: #2d5a27;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.buy-btn.whatsapp { background: #25d366; margin-top: 10px; }


footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 50px; }
/* Fotoğrafları hizalamak için ekle */
.img-container {
    width: 100%;
    height: 200px; /* Tüm fotoğraflar aynı yükseklikte durur */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fotoğrafı kesmeden kutuya sığdırır */
}

.description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    height: 40px; /* Açıklama satırlarını hizalar */
}

#hakkimizda {
    padding: 80px 10%;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Mobilde alt alta gelmesi için */
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px #2d5a27; /* Şık bir yeşil çerçeve efekti */
}

/* Mobilde resmin çerçeve efektini ve sıralamasını düzenle */
@media (max-width: 768px) {
    .about-container { flex-direction: column-reverse; }
    .about-image img { box-shadow: 10px 10px 0px #2d5a27; }
}

#iletisim {
    padding: 80px 10%;
    background-color: #f1f1f1;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #2d5a27;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    color: #666;
}

.contact-cta {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-cta h3 {
    margin-bottom: 15px;
    color: #2d5a27;
}

.contact-cta p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

