@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- TEMEL AYARLAR (Donma ve Kaymayı Önler) --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff !important; /* Arka plan kesinlikle beyaz */
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding-top: 100px; /* Menü yüksekliği kadar boşluk */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER & MENÜ --- */
nav {
    background: #ffffff;
    height: 90px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 26px; font-weight: 700; color: #2d4a35; letter-spacing: -0.5px; }
.logo span { color: #d4a373; }

.menu { display: flex; gap: 30px; }
.menu a { font-weight: 600; font-size: 14px; text-transform: uppercase; color: #333; position: relative; }
.menu a:hover, .menu a.active { color: #2d4a35; }
.menu a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: #d4a373; transition: 0.3s; }
.menu a:hover::after, .menu a.active::after { width: 100%; }

/* --- WHATSAPP BUTONU --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); }
.whatsapp-label {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; right: 75px; }

/* --- SAYFA BAŞLIKLARI (BANNER) --- */
.page-header {
    height: 350px;
    background-position: center; background-size: cover;
    position: relative; display: flex; align-items: center; justify-content: center;
    margin-bottom: 60px; margin-top: -20px;
}
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); }
.page-header h1 {
    position: relative; z-index: 2; color: #fff; font-size: 42px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
}

/* --- ANA SAYFA ELEMENTLERİ --- */
.hero-home {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1592924357228-91a4daadcfea?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; margin-top: -100px;
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 800px; padding: 20px; }
.hero-content h1 { font-size: 50px; font-weight: 700; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.btn-main { background: #d4a373; color: #fff; padding: 15px 40px; border-radius: 30px; font-weight: bold; }
.btn-main:hover { background: #b08d55; }

/* --- KUTU VE LİSTE STİLLERİ --- */
.liste-kutu { transition: transform 0.3s; }
.liste-kutu:hover { transform: translateY(-5px); }
.liste-kutu ul { list-style: disc; padding-left: 20px; }
.liste-kutu li { color: #555; margin-bottom: 8px; }

/* --- FORM --- */
.form-input { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; font-family: inherit; }
.btn-send { width: 100%; padding: 15px; background: #2d4a35; color: white; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; }
.btn-send:hover { background: #1e3324; }

/* --- FOOTER --- */
footer { background: #2d4a35; color: #e0e0e0; padding: 60px 0 20px; margin-top: auto; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 18px; }
.footer-col a { display: block; margin-bottom: 10px; color: #ccc; font-size: 14px; }
.footer-col a:hover { color: #d4a373; }
.copyright { text-align: center; font-size: 12px; opacity: 0.7; }
.social-links a { display: inline-block; margin-right: 15px; font-size: 18px; color: #fff; }

/* MOBİL UYUM */
@media (max-width: 768px) {
    .nav-wrapper { flex-direction: column; height: auto; padding: 15px; }
    .menu { gap: 15px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
    body { padding-top: 140px; }
    .footer-row { flex-direction: column; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
}