:root { --gold: #d4af37; --dark: #0a0a0a; --gray: #121212; --light-gray: #1e1e1e; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
html { scroll-behavior: smooth; } /* Slaytlı kayış efekti buradan gelir */
body { background: var(--dark); color: white; line-height: 1.6; }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 8%; background: rgba(0,0,0,0.98); border-bottom: 2px solid var(--gold); position: fixed; width: 100%; top: 0; z-index: 1000; }
.logo { font-size: 20px; font-weight: 900; letter-spacing: 1px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-size: 13px; font-weight: bold; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

.hero { min-height: 90vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/otel.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 60px; }
.hero-content { max-width: 800px; }
.badge { background: var(--gold); color: black; padding: 6px 18px; border-radius: 50px; font-weight: bold; font-size: 0.85rem; margin-bottom: 25px; display: inline-block; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 8vw, 4.5rem); margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.3rem; margin-bottom: 35px; color: #ddd; }

.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn { background: var(--gold); color: black; padding: 15px 35px; border-radius: 8px; text-decoration: none; font-weight: 900; cursor: pointer; border: none; transition: 0.3s; display: inline-block; }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); padding: 13px 35px; border-radius: 8px; text-decoration: none; font-weight: 900; transition: 0.3s; display: inline-block; }
.btn:hover { background: white; transform: translateY(-3px); }

.features-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); background: var(--light-gray); padding: 40px 8%; border-bottom: 1px solid #333; gap: 30px; }
.f-item { text-align: center; color: var(--gold); }
.f-item i { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.f-item span { color: white; font-weight: bold; font-size: 0.95rem; }

.rooms { padding: 100px 8%; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.8rem; color: var(--gold); margin-bottom: 15px; }
.room-category h3 { color: var(--gold); font-size: 1.8rem; margin: 50px 0 30px; border-left: 6px solid var(--gold); padding-left: 20px; }
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }

.room-card { background: var(--light-gray); border-radius: 20px; overflow: hidden; border: 1px solid #252525; transition: 0.3s; padding-bottom: 30px; text-align: center; }
.room-card img { width: 100%; height: 250px; object-fit: cover; }
.room-card h4 { margin: 25px 0 10px; font-size: 1.4rem; font-weight: 800; }
.room-icons { margin-bottom: 25px; color: #777; font-size: 1rem; }
.room-icons i { margin: 0 10px; color: var(--gold); }

.footer { background: #000; padding: 100px 8% 50px; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 60px; text-align: center; }
.footer-item h3 { color: var(--gold); margin-bottom: 25px; letter-spacing: 2px; }
.footer-phone { font-size: 2.2rem !important; font-weight: 900; color: var(--gold) !important; margin: 15px 0; display: block; }
.map-link { color: var(--gold); text-decoration: underline; font-weight: bold; display: inline-block; margin-top: 20px; }
.footer-bottom { margin-top: 60px; text-align: center; color: #444; border-top: 1px solid #1a1a1a; padding-top: 30px; font-size: 0.9rem; }

/* Modal & Mobil Düzenlemeler */
@media (max-width: 768px) {
    .nav-links { display: none; } 
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    .btn, .btn-outline { width: 100%; }
}

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.97); z-index: 2000; }
.modal-content { background: #111; width: 95%; max-width: 420px; margin: 80px auto; padding: 45px; border-radius: 25px; border: 1px solid var(--gold); position: relative; }
.close { position: absolute; right: 25px; top: 20px; font-size: 35px; color: white; cursor: pointer; }
input { width: 100%; padding: 16px; margin: 15px 0; background: #222; border: 1px solid #333; color: white; border-radius: 10px; font-size: 1rem; }
.btn-whatsapp { background: #25d366; color: white; width: 100%; padding: 16px; border: none; border-radius: 10px; font-weight: bold; cursor: pointer; font-size: 1.1rem; }