/*
Theme Name: ASLANKAN YAŞAMKENT Kent Ankara
Author: Remax Lot
Version: 1.0
*/

:root {
    --gold: #c5a059;
    --dark: #0b0f19;
    --light: #f8f9fa;
}

* { margin:0; padding:0; box-sizing:border-box; scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; }

/* Header */
header { background: var(--dark); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
.logo { color: #fff; text-decoration: none; font-weight: 800; font-size: 1.3rem; }
nav a { color: #fff; text-decoration: none; margin-left: 15px; font-size: 0.85rem; font-weight: 400; transition: 0.3s; }
nav a:hover { color: var(--gold); }

/* Hero */
.hero { height: 75vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.aslankanyapracik.com/wp-content/uploads/2026/04/Aslankan-Yasamkent-Ankara-11-ve-21-Projeden-Daire-1.3.jpeg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }

/* Section Title */
.section-title { text-align: center; font-size: 2rem; margin-bottom: 50px; position: relative; padding-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.section-title::after { content: ''; width: 50px; height: 3px; background: var(--gold); position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }

/* Kunye Grid */
.modern-kunye-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 0 10%; }
.kunye-item { background: var(--light); padding: 25px; border-radius: 12px; display: flex; align-items: center; gap: 15px; transition: 0.3s; }
.kunye-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.kunye-icon-box { color: var(--gold); font-size: 1.8rem; }
.kunye-val { font-weight: 700; display: block; color: var(--dark); }

/* Form */
.contact-section { background: var(--light); padding: 80px 5%; }
.contact-card { max-width: 550px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.input-group { margin-bottom: 15px; border-bottom: 1px solid #eee; }
.input-group input, .input-group textarea { width: 100%; border: none; padding: 12px; outline: none; font-family: inherit; }
.btn-send { width: 100%; background: var(--gold); color: #fff; border: none; padding: 18px; border-radius: 10px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-send:hover { background: #ae8a46; }

/* Sticky Elements */
.whatsapp-btn { position: fixed; bottom: 90px; right: 20px; background: #25d366; color: #fff; padding: 12px 20px; border-radius: 50px; text-decoration: none; font-weight: 600; z-index: 999; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.fixed-bottom-bar { position: fixed; bottom: 0; width: 100%; background: var(--dark); display: flex; justify-content: space-around; padding: 12px; z-index: 1000; border-top: 2px solid var(--gold); }
.fixed-bottom-bar a { color: #fff; text-decoration: none; font-size: 0.75rem; text-align: center; }

/* Scrollbar Custom */
.thumb-scroll::-webkit-scrollbar { height: 5px; }
.thumb-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    nav { display: none; }
}