/* --- GENEL SIFIRLAMA ve AYARLAR --- */
:root {
    --primary-gold: #c5a059;
    --dark-bg: #1a1a1a;
    --text-light: #f5f5f5;
    --light-bg: #f9f9f9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; color: #333; background-color: var(--light-bg); overflow-x: hidden; }

/* --- BAŞLIKLAR --- */
.section-title {
    font-family: 'Playfair Display', serif; font-size: 2.5rem;
    color: var(--dark-bg); margin-bottom: 10px; text-align: center;
}
.section-subtitle {
    color: #777; margin-bottom: 50px; font-size: 1rem;
    letter-spacing: 1px; text-transform: uppercase; text-align: center;
}

/* --- HEADER (MENÜ) --- */
header {
    position: absolute; top: 0; left: 0; width: 100%;
    padding: 20px 50px; display: flex; justify-content: space-between;
    align-items: center; z-index: 9999; background: transparent;
    transition: background 0.3s;
}

/* İÇ SAYFALAR İÇİN SİYAH HEADER */
.header-solid {
    position: relative !important;
    background-color: var(--dark-bg) !important;
    padding: 20px 50px;
}

/* LOGO STİLİ */
.logo { z-index: 10000; position: relative; display: block; }
.logo img {
    height: 65px; 
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

/* İÇ SAYFALARDA LOGO 50PX OLSUN */
.header-solid .logo img {
    height: 50px;
}

/* Menü Linkleri */
.nav-container { display: flex; align-items: center; gap: 30px; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a {
    color: white; text-decoration: none; font-weight: 400; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s;
}
nav a:hover { color: var(--primary-gold); }
.btn-reservation {
    padding: 10px 25px; border: 1px solid white; color: white;
    text-decoration: none; text-transform: uppercase; font-size: 12px;
    letter-spacing: 1px; transition: all 0.3s; white-space: nowrap;
}
.btn-reservation:hover { background-color: var(--primary-gold); border-color: var(--primary-gold); }

.hamburger { display: none; cursor: pointer; z-index: 10001; position: relative; }
.hamburger div { width: 25px; height: 3px; background-color: white; margin: 5px; transition: all 0.3s ease; }

/* --- HERO (ANASAYFA) --- */
.hero {
    position: relative; min-height: 100vh; width: 100%;
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; padding: 120px 20px 50px 20px;
}

/* --- PAGE HERO (İÇ SAYFALAR) --- */
.page-hero {
    position: relative; 
    height: 50vh; 
    min-height: 400px;
    width: 100%;
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; padding: 0 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-placeholder {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('img/bg.jpg'); background-size: cover;
    background-position: center; background-repeat: no-repeat; z-index: -1;
}
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: -1;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif; font-size: 4rem; color: white;
    margin-bottom: 10px; font-style: italic; line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    color: #ddd; font-size: 1.2rem; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.booking-engine {
    background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px);
    padding: 20px 40px; border-radius: 5px; display: flex; gap: 20px;
    align-items: flex-end; 
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2); position: relative; z-index: 50; margin-top: 20px;
}
.input-group { display: flex; flex-direction: column; text-align: left; }
.input-group label { color: #eee; font-size: 11px; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; font-weight: 700; }
.input-group input, .input-group select {
    background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.7);
    padding: 10px 0; color: white; font-family: 'Lato', sans-serif; font-size: 16px; width: 150px; outline: none;
}
input[type="date"] { color-scheme: dark; }
.input-group select option { color: #333; }
.btn-check {
    background-color: var(--primary-gold); color: white; border: none;
    padding: 15px 30px; font-size: 14px; text-transform: uppercase;
    cursor: pointer; font-weight: bold; letter-spacing: 1px;
	text-decoration:none;
    transition: background 0.3s; box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
	width:300px;
}

/* --- ODALAR LİSTESİ --- */
.rooms-section { padding: 80px 20px; background-color: white; text-align: center; }
.rooms-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.room-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; text-align: left; position: relative; }
.room-card:hover { transform: translateY(-10px); }
.room-image { width: 100%; height: 250px; object-fit: cover; background-color: #eee; }
.room-details { padding: 25px; }
.room-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark-bg); margin-bottom: 10px; }
.room-features { font-size: 0.9rem; color: #666; margin-bottom: 20px; line-height: 1.6; min-height: 60px; }
.room-features span { display: inline-block; background: #f4f4f4; padding: 5px 10px; border-radius: 4px; margin-right: 5px; margin-bottom: 5px; font-size: 0.8rem; }
.room-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; margin-top: 10px; }
.price { font-size: 1.2rem; font-weight: 700; color: var(--primary-gold); }
.btn-detail { text-decoration: none; color: var(--dark-bg); font-weight: bold; font-size: 0.9rem; }

/* --- ODALAR SAYFASI (DETAYLI LİSTE) --- */
.search-result-info { max-width: 1100px; margin: 40px auto 0; padding: 20px; background-color: #f0f7ff; border-left: 5px solid var(--primary-gold); color: #333; font-size: 1.1rem; text-align: left; border-radius: 4px; }
.search-result-info strong { color: var(--dark-bg); }
.room-list-container { max-width: 1100px; margin: 0 auto; }
.room-list-item { display: flex; background: white; margin-bottom: 60px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; }
.room-list-item:nth-child(even) { flex-direction: row-reverse; }
.room-list-img { flex: 1; position: relative; min-height: 350px; }
.room-list-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.room-list-content { flex: 1; padding: 50px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.room-list-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark-bg); margin-bottom: 15px; }
.room-list-desc { color: #666; line-height: 1.7; margin-bottom: 25px; font-size: 1rem; }
.room-icons { display: flex; gap: 20px; margin-bottom: 30px; color: var(--dark-bg); font-size: 0.9rem; font-weight: bold; }
.room-icons div { display: flex; align-items: center; gap: 8px; }
.room-icons i { color: var(--primary-gold); font-size: 1.2rem; }
.room-list-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid #eee; }
.room-list-price { font-size: 1.5rem; font-weight: 700; color: var(--primary-gold); }
.room-list-price small { font-size: 0.9rem; color: #999; font-weight: 400; }
.btn-book { background-color: var(--dark-bg); color: white; padding: 12px 25px; text-decoration: none; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: background 0.3s; }
.btn-book:hover { background-color: var(--primary-gold); }

/* --- DİĞER SAYFALAR (HAKKIMIZDA, BLOG, SSS, İLETİŞİM, FOOTER...) --- */
.about-section { background-color: #fff; padding: 100px 20px; display: flex; justify-content: center; }
.about-container { max-width: 1200px; width: 100%; display: flex; align-items: center; gap: 60px; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 5px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); object-fit: cover; height: 400px; }
.about-text { flex: 1; }
.about-title-inner { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--dark-bg); margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.about-title-inner::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background-color: var(--primary-gold); }
.about-desc { font-size: 1.05rem; line-height: 1.8; color: #555; margin-bottom: 30px; }
.service-list { font-size: 0.9rem; color: #777; font-style: italic; }
.advantages-section { padding: 80px 20px; background-color: var(--light-bg); text-align: center; }
.advantages-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 50px auto 0; }
.advantage-item { display: flex; flex-direction: column; align-items: center; padding: 20px; }
.icon-circle { width: 110px; height: 110px; background-color: var(--primary-gold); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); transition: transform 0.3s ease; }
.icon-circle i { font-size: 45px; color: white; }
.advantage-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark-bg); margin-bottom: 15px; font-weight: 700; }
.advantage-desc { font-size: 0.95rem; color: #666; line-height: 1.5; max-width: 260px; }
.reviews-section { padding: 80px 20px; background-color: white; text-align: center; overflow: hidden; }
.slider-viewport { max-width: 1200px; margin: 50px auto 0; overflow: hidden; position: relative; }
.slider-track { display: flex; transition: transform 0.5s ease-in-out; gap: 30px; }
.review-card { flex: 0 0 calc(33.333% - 20px); background: #f9f9f9; border-radius: 8px; padding-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.review-img { width: 100%; height: 200px; object-fit: cover; border-top-left-radius: 8px; border-top-right-radius: 8px; margin-bottom: 15px; }
.review-author { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--dark-bg); font-size: 1.1rem; margin-bottom: 5px; }
.review-room { font-size: 0.85rem; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-weight: bold; }
.review-text { padding: 0 20px; font-style: italic; color: #666; line-height: 1.6; font-size: 0.95rem; }
.blog-section { padding: 80px 20px; background-color: var(--light-bg); text-align: center; }
.blog-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 50px auto 0; }
.blog-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; display: flex; flex-direction: column; text-align: left; }
.blog-card:hover { transform: translateY(-10px); }
.blog-img { width: 100%; height: 220px; object-fit: cover; }
.blog-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--dark-bg); margin-bottom: 10px; font-weight: 700; }
.blog-desc { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-link { margin-top: auto; color: var(--primary-gold); font-weight: bold; text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.blog-link:hover { color: #b08d48; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 60px; }
.page-num { display: inline-block; padding: 10px 18px; background: white; border: 1px solid #ddd; color: var(--dark-bg); text-decoration: none; font-weight: bold; border-radius: 4px; transition: all 0.3s; }
.page-num:hover, .page-num.active { background-color: var(--primary-gold); color: white; border-color: var(--primary-gold); }
.article-section { padding: 80px 20px; background-color: white; }
.article-container { max-width: 800px; margin: 0 auto; }
.article-meta { font-size: 0.9rem; color: #999; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }
.article-meta span { color: var(--primary-gold); font-weight: bold; margin-right: 10px; }
.article-content { font-size: 1.1rem; line-height: 1.8; color: #444; }
.article-content p { margin-bottom: 25px; }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark-bg); margin-top: 40px; margin-bottom: 20px; }
.article-content img { width: 100%; height: auto; border-radius: 5px; margin: 20px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.article-content blockquote { border-left: 5px solid var(--primary-gold); background: #f9f9f9; padding: 20px 30px; margin: 30px 0; font-style: italic; font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #555; }
.back-link { display: inline-block; margin-top: 40px; color: var(--dark-bg); text-decoration: none; font-weight: bold; border-bottom: 2px solid var(--primary-gold); }
.contact-map-large { width: 100%; height: 500px; filter: grayscale(0%); background: #eee; }
.contact-map-large iframe { width: 100%; height: 100%; border: none; }
.contact-content { padding: 80px 20px; text-align: center; max-width: 1000px; margin: 0 auto; }
.contact-intro { font-size: 1.1rem; color: #666; line-height: 1.8; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.contact-box { background: white; padding: 40px 20px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s; }
.contact-box:hover { transform: translateY(-5px); }
.contact-box i { font-size: 2.5rem; color: var(--primary-gold); margin-bottom: 20px; }
.contact-box h3 { font-family: 'Playfair Display', serif; margin-bottom: 15px; color: var(--dark-bg); font-size: 1.4rem; }
.contact-box p { color: #666; line-height: 1.6; font-size: 0.95rem; }
.contact-box a { color: var(--primary-gold); text-decoration: none; font-weight: bold; }
.faq-section { padding: 10px 20px 80px 20px; max-width: 900px; margin: 0 auto; }
.faq-item { background: white; border-radius: 8px; padding: 30px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border-left: 4px solid var(--primary-gold); transition: transform 0.3s; }
.faq-item:hover { transform: translateX(5px); }
.faq-question { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark-bg); margin-bottom: 10px; font-weight: 700; }
.faq-answer { color: #666; line-height: 1.7; font-size: 1rem; }
.about-page-content { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.about-page-intro { text-align: center; max-width: 800px; margin: 0 auto 60px; font-size: 1.15rem; line-height: 1.8; color: #555; }
.about-story { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.story-img { flex: 1; }
.story-img img { width: 100%; border-radius: 5px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); object-fit: cover; height: 450px; }
.story-text { flex: 1; }
.story-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark-bg); margin-bottom: 20px; }
.story-text p { font-size: 1rem; line-height: 1.7; color: #666; margin-bottom: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.value-card { background: white; padding: 40px 25px; border-radius: 8px; border: 1px solid #eee; transition: all 0.3s; }
.value-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--primary-gold); }
.value-card i { font-size: 2.5rem; color: var(--primary-gold); margin-bottom: 20px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark-bg); margin-bottom: 15px; }
.value-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }
footer { background-color: var(--dark-bg); color: #bbb; padding: 80px 20px 20px; }
.footer-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-col h3 { color: white; font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 25px; letter-spacing: 1px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; }
.contact-item i { color: var(--primary-gold); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #bbb; text-decoration: none; transition: 0.3s; display: inline-block; }
.footer-links a:hover { color: var(--primary-gold); transform: translateX(5px); }
.footer-map iframe { width: 100%; height: 220px; border: none; border-radius: 5px; filter: grayscale(100%); transition: all 0.3s; }
.footer-map iframe:hover { filter: none; }
.footer-bottom { border-top: 1px solid #333; margin-top: 50px; padding-top: 20px; text-align: center; font-size: 0.85rem; color: #666; }
.room-detail-section { padding: 40px 20px 80px 20px; }
.room-detail-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 3fr 2fr; gap: 50px; }
.room-detail-gallery { display: flex; flex-direction: column; gap: 15px; }
.main-img { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: opacity 0.3s ease; }
.thumb-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.thumb { width: 100%; height: 80px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: 0.6; transition: opacity 0.3s, border-color 0.3s; border: 2px solid transparent; }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--primary-gold); }
.room-detail-info { display: flex; flex-direction: column; }
.room-detail-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--dark-bg); margin-bottom: 20px; }
.room-detail-desc { font-size: 1rem; color: #666; line-height: 1.7; margin-bottom: 30px; }
.features-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 40px; }
.features-list li { font-size: 0.95rem; color: var(--dark-bg); display: flex; align-items: center; gap: 10px; }
.features-list i { color: var(--primary-gold); width: 20px; }
.room-price-box { background: #f9f9f9; padding: 30px; border-radius: 8px; border: 1px solid #eee; margin-top: auto; }
.price-display { font-size: 2rem; font-weight: 700; color: var(--primary-gold); margin-bottom: 5px; }
.price-display small { font-size: 1rem; color: #999; font-weight: 400; }
.btn-detail-reserve { display: block; width: 100%; background-color: var(--dark-bg); color: white; text-align: center; padding: 15px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-top: 20px; border-radius: 4px; transition: background 0.3s; }
.btn-detail-reserve:hover { background-color: var(--primary-gold); }
.reservation-section { padding: 80px 20px; background-color: white; }
.reservation-wrapper { max-width: 900px; margin: 0 auto; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 1px solid #eee; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group label { font-weight: bold; font-size: 0.9rem; color: var(--dark-bg); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: 'Lato', sans-serif; font-size: 1rem; color: #333; transition: border-color 0.3s; background-color: #fcfcfc; }
.reservation-wrapper input[type="date"] { color-scheme: light; color: #333; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-gold); background-color: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.full-width { grid-column: 1 / -1; }
.btn-submit-reservation { width: 100%; padding: 15px; background-color: var(--primary-gold); color: white; font-weight: bold; text-transform: uppercase; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; transition: background 0.3s; }
.btn-submit-reservation:hover { background-color: #b08d48; }

/* --- REZERVASYON SONUÇ SAYFASI (YENİ EKLENDİ) --- */
.success-section {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    min-height: 60vh; /* Ekranı ortalamak için */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-icon-box {
    width: 100px;
    height: 100px;
    background-color: #2ecc71; /* Başarı Yeşili */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.success-icon-box i {
    color: white;
    font-size: 3.5rem;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.success-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.reservation-code-box {
    background: #f9f9f9;
    border: 2px dashed #ddd;
    padding: 20px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: inline-block;
}

.reservation-code-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.reservation-code {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.btn-home {
    background-color: var(--dark-bg);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-home:hover {
    background-color: var(--primary-gold);
}

/* --------------------------------------------------------
   !!! MOBİL DÜZELTMELERİ (RESPONSIVE) !!!
   -------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    header { padding: 20px; }
    .hamburger { display: block; }
    .header-solid { padding: 20px; }
    .logo img { height: 50px; } 
    .nav-container { position: fixed; top: 0; right: -100%; height: 100vh; width: 70%; background-color: #111; flex-direction: column; align-items: center; justify-content: center; transition: right 0.4s ease-in-out; box-shadow: -5px 0 15px rgba(0,0,0,0.5); z-index: 10000; padding-bottom: 50px; }
    .nav-container.active { right: 0; }
    nav ul { flex-direction: column; gap: 30px; }
    .hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .line2 { opacity: 0; }
    .hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    .hero-content h1 { font-size: 2.5rem; }
    .booking-engine { flex-direction: column; width: 100%; align-items: stretch !important; }
    .input-group input, .input-group select { width: 100%; background: rgba(255,255,255,0.1); border: none; padding: 10px; border-radius: 4px; }
    .btn-check { width: 100%; margin-top: 10px; }
    .about-container { flex-direction: column; gap: 30px; }
    .about-image img { height: 250px; }
    .advantages-container { grid-template-columns: repeat(2, 1fr) !important; gap: 40px 15px !important; }
    .icon-circle { width: 80px; height: 80px; } .icon-circle i { font-size: 32px; }
    .review-card { flex: 0 0 100% !important; max-width: 100% !important; }
    .blog-container { grid-template-columns: 1fr !important; gap: 30px !important; }
    .footer-container { grid-template-columns: 1fr !important; gap: 40px; text-align: center; }
    .contact-item { display: flex; flex-direction: row; align-items: flex-start; justify-content: center; text-align: left; max-width: 320px; margin: 0 auto 20px; }
    .contact-map-large { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-story { flex-direction: column; gap: 30px; }
    .story-img img { height: 250px; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .room-list-item { flex-direction: column !important; }
    .room-list-img { height: 250px; }
    .room-list-content { padding: 30px 20px; }
    .room-list-title { font-size: 1.5rem; }
    .room-detail-container { grid-template-columns: 1fr !important; gap: 30px; }
    .main-img { height: 300px; }
    .thumb-grid { grid-template-columns: repeat(6, 1fr); gap: 5px; } 
    .thumb { height: 50px; }
    .features-list { grid-template-columns: 1fr; } 
    .room-detail-section { padding-top: 10px !important; }
    .reservation-wrapper { padding: 20px; }
    .form-grid { grid-template-columns: 1fr !important; gap: 15px; }
}