@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: var(--primary-dark);
    color: var(--text-white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

.brand-area { display: flex; align-items: center; gap: 10px; }
.brand-icon { font-size: 1.8rem; color: var(--gold); }
.hotel-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; letter-spacing: 1px; line-height: 1; }
.sub-title { font-size: 0.7rem; color: var(--gold-light); letter-spacing: 2px; }

.weather-widget { 
    background: rgba(255,255,255,0.1); 
    padding: 5px 10px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    display: flex; 
    align-items: center; gap: 5px; 
}

/* Slider Alanı */
.hero-section { position: relative; height: 240px; background: #ddd; }
.slider-container { width: 100%; height: 100%; position: relative; overflow: hidden; }

.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; }

.slide-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
}
.slide-content h2 { font-size: 1.2rem; margin-bottom: 5px; color: var(--gold); }
.badge { background: var(--danger); color: white; padding: 2px 6px; font-size: 0.7rem; border-radius: 4px; text-transform: uppercase; margin-bottom: 5px; display: inline-block; }

/* Skeleton Loading */
.skeleton-slide { width: 100%; height: 100%; background: linear-gradient(90deg, #eee, #f5f5f5, #eee); background-size: 200% 100%; animation: loading 1.5s infinite; }
@keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Hızlı Erişim Grid */
.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    margin-top: -30px; /* Slider'ın üzerine binsin */
    position: relative;
    z-index: 10;
}

.nav-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.nav-card:active { transform: scale(0.98); }

.icon-circle {
    width: 50px; height: 50px;
    background: #fdf8f0; /* Çok açık gold */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 1.3rem;
}
.nav-card span { font-weight: 500; font-size: 0.9rem; }

/* Dijital Konsiyerj */
.concierge-section {
    background: var(--card-bg);
    margin: 0 20px 20px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
}
.section-header { margin-bottom: 15px; }
.section-header h2 { font-size: 1.1rem; color: var(--primary-dark); }
.section-header p { font-size: 0.8rem; color: var(--text-gray); }

.request-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.req-btn {
    padding: 12px; border: none; border-radius: 8px;
    background: var(--primary-light); color: white;
    font-family: inherit; font-size: 0.8rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.req-btn.outline { background: transparent; border: 1px solid #ddd; color: #555; }
.req-btn:active { opacity: 0.8; }

/* Alt Navigasyon */
.bottom-nav {
    position: fixed; bottom: 0; width: 100%; max-width: 480px;
    background: var(--card-bg);
    display: flex; justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    z-index: 100;
}
.bottom-nav a {
    text-decoration: none; color: #999;
    display: flex; flex-direction: column; align-items: center;
    font-size: 0.7rem; gap: 4px;
}
.bottom-nav a i { font-size: 1.2rem; }
.bottom-nav a.active { color: var(--gold); }
.bottom-nav a.download-highlight { color: var(--primary-dark); font-weight: 600; }
