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

:root {
    --primary-dark: #1a1a2e;
    --primary-light: #16213e;
    --gold: #8d7249;
    --gold-light: #bba37a;
    --text-white: #e0e0e0;
    --text-gray: #bdc3c7;
    --bg-page: #f0f2f5; /* Masaüstü arka planı */
    --card-bg: #ffffff;
    --danger: #e74c3c;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-dark);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Mobil Konteyner: Masaüstünde telefon gibi görünmesini sağlar */
.mobile-container {
    width: 100%;
    max-width: 480px;
    background-color: #f9f9f9; /* Uygulama içi arka plan açık renk */
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

/* Üst Bar */
.top-bar {
  background-color: #fff;
    color: #8d7249;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

.brand-area { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 40px; width: auto; object-fit: contain; }
.hotel-name { font-family: 'Playfair Display', serif; font-size: 1rem; letter-spacing: 1px; line-height: 1.1; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; display: block; }
.sub-title { font-size: 0.65rem; color: var(--gold-light); letter-spacing: 1.5px; display: block; }

/* Modern Language Toggle */
.lang-toggle-container {
    position: relative;
    width: 65px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 2px;
    cursor: pointer;
    border: 1px solid rgba(141, 114, 73, 0.4);
    overflow: hidden;
    user-select: none;
    transition: all 0.3s ease;
}

.lang-toggle-container:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.lang-toggle-slider {
    position: absolute;
    width: 28px;
    height: 24px;
    background: var(--gold);
    border-radius: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    left: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.lang-toggle-container.en .lang-toggle-slider {
    transform: translateX(31px);
}

.lang-label {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-gray);
    z-index: 2;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.lang-toggle-container.tr .lang-label.tr,
.lang-toggle-container.en .lang-label.en {
    color: #fff;
}

/* Slider Alanı */
.hero-section { position: relative; height: 260px; background: #ddd; }
.slider-container { width: 100%; height: 100%; position: relative; overflow: hidden; border-bottom: 3px solid var(--gold); }

.slide {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    position: absolute; top: 0; left: 0;
    opacity: 0; transition: opacity 0.5s ease-in-out;
}
.slide.active { opacity: 1; }

/* Hızlı Erişim Grid (6'lı Başlık) */
.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.nav-card {
    background: var(--card-bg);
    padding: 15px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    min-height: 120px;
}
.nav-card:active { transform: scale(0.96); box-shadow: 0 2px 6px rgba(0,0,0,0.1); }

.icon-circle {
    width: 45px; height: 45px;
    background: #fdf8f0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 1.2rem;
    border: 1px solid rgba(141, 114, 73, 0.15);
}
.nav-card span { 
    font-weight: 600; 
    font-size: 0.78rem; 
    line-height: 1.2; 
    padding: 0 5px; 
    hyphens: auto; 
    word-break: break-word; 
}

/* Alt Navigasyon (3'lü Yapı) */
.bottom-nav {
    position: fixed; bottom: 0; width: 100%; max-width: 480px;
    background: var(--card-bg);
    display: flex; justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 20px 20px 0 0;
}
.bottom-nav .nav-item {
    text-decoration: none; color: #777;
    display: flex; flex-direction: column; align-items: center;
    font-size: 0.75rem; gap: 4px;
    transition: color 0.3s;
}
.bottom-nav .nav-item i { font-size: 1.3rem; }
.bottom-nav .nav-item.active { color: var(--gold); font-weight: 600; }
.bottom-nav .nav-item:active { transform: scale(0.9); }
