/* İmbat Pansiyon 2026 - Modern & Responsive CSS */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #333; background: #fdfdfd; }
.container { max-width: 1100px; margin: auto; overflow: hidden; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; }

/* Header & Nav */
#main-header { background: #fff; padding: 15px 0; border-bottom: 3px solid #007bff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
#main-header .container { display: flex; justify-content: space-between; align-items: center; }
#logo img { height: 60px; width: auto; }
#navbar ul { display: flex; align-items: center; }
#navbar ul li { margin-left: 20px; }
#navbar ul li a:hover, #navbar ul li a.active { color: #007bff; font-weight: bold; }
.call-btn a { background: #28a745; color: #fff !important; padding: 8px 15px; border-radius: 50px; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }

/* Slider Yapısı */
#hero-slider { position: relative; height: 450px; overflow: hidden; background: #000; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 1s ease-in-out; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; text-align: center; color: #fff; }
.slide.active { opacity: 1; visibility: visible; }
.hero-content h1 { font-size: 3rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.7); }
.hero-content p { font-size: 1.5rem; text-shadow: 1px 1px 5px rgba(0,0,0,0.7); }

/* Sayfa Bannerları */
#page-banner { height: 250px; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./img-demo/imbat-slider-a (3).JPG') no-repeat center center/cover; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; text-align: center; }

/* İçerik Alanları */
.page-content { padding: 40px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 30px 0; }
.gallery-item img { border-radius: 8px; height: 200px; object-fit: cover; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* İkonlar & Makale */
.room-features-icons { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin: 40px 0; text-align: center; color: #007bff; font-weight: bold; }
.room-features-icons i { display: block; font-size: 2rem; color: #555; margin-bottom: 5px; }
.seo-article { margin-top: 40px; padding: 25px; background: #f4f4f4; border-left: 5px solid #007bff; border-radius: 0 8px 8px 0; }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-box { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.contact-btn { background: #28a745; color: #fff !important; padding: 12px; text-align: center; border-radius: 5px; display: block; margin-top: 15px; font-weight: bold; }

/* Footer */
#main-footer { background: #222; color: #fff; padding: 40px 0 20px; text-align: center; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.copy { border-top: 1px solid #444; padding-top: 20px; font-size: 0.9rem; }
.copy a { color: #007bff; text-decoration: underline; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    #main-header .container { flex-direction: column; }
    #navbar ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; }
    #navbar ul li { margin: 5px 10px; }
    .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    #hero-slider { height: 300px; }
    .hero-content h1 { font-size: 1.8rem; }
}