/* ==========================================================================
   VIONA HOTEL — CMS Tasarım Sistemi
   Bootstrap 5 + Özel Katman | Bej / Terracotta Butik Otel Teması
   ========================================================================== */

/* ----- CSS Değişkenleri (Tasarım Token'ları) ----- */
:root {
  --bg: #F4EDE4;
  --surface: #FFFFFF;
  --accent: #D9835D;
  --accent-hover: #C06A45;
  --accent-light: rgba(217, 131, 93, 0.12);
  --text: #3E3C3A;
  --text-secondary: #6B6864;
  --text-muted: #9A9692;
  --detail: #8A9A9B;
  --detail-light: #E8EDED;
  --border: #E0D8CF;
  --shadow-sm: 0 2px 8px rgba(62, 60, 58, 0.06);
  --shadow: 0 4px 20px rgba(62, 60, 58, 0.08);
  --shadow-hover: 0 12px 36px rgba(62, 60, 58, 0.14);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2.5rem;
  --radius-xl: 3rem;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 80px;
}

/* ----- Reset & Temel ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4,
.display-5, .display-6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----- Navbar ----- */
.navbar-viona {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all var(--transition);
}

.navbar-viona.scrolled {
  box-shadow: var(--shadow);
}

.navbar-viona .navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}

.navbar-viona .navbar-brand span {
  color: var(--accent);
}

.navbar-logo {
  height: 56px;
  width: auto;
  margin-right: 0;
  vertical-align: middle;
  transition: height 0.3s;
}

.navbar-brand-text {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 42px;
  }
}

.navbar-viona .nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  transition: color var(--transition);
  position: relative;
}

.navbar-viona .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-viona .nav-link:hover,
.navbar-viona .nav-link.active {
  color: var(--accent);
}

.navbar-viona .nav-link:hover::after,
.navbar-viona .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-viona .navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--text);
  box-shadow: none;
}

.navbar-viona .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-viona .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar-viona .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-viona .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-viona .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Dil seçici */
.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
}

.lang-switcher a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--accent);
  background: var(--accent-light);
}

/* ----- Butonlar ----- */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  padding: 0.7rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(217, 131, 93, 0.35);
}

.btn-accent:active {
  transform: scale(0.98);
}

.btn-accent-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 0.65rem 1.9rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.btn-accent-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(217, 131, 93, 0.3);
}

.btn-accent-outline:active {
  transform: scale(0.98);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: var(--radius-xl);
  padding: 0.7rem 2rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-white:hover {
  background: var(--bg);
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* ----- Hero Slider ----- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-height));
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(62, 60, 58, 0.35) 0%,
    rgba(62, 60, 58, 0.15) 40%,
    rgba(62, 60, 58, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ----- Bölüm Başlıkları ----- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-header .section-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ----- Oda / Kart Grid ----- */
.card-room {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  cursor: pointer;
}

.card-room:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-room .card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-room .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-room:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.card-room .card-body {
  padding: 1.5rem;
}

.card-room .room-category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.card-room .room-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.card-room .room-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card-room .room-features span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-room .room-features i {
  color: var(--detail);
  font-size: 0.9rem;
}

.card-room .room-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-room .room-price small {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ----- Müsaitlik Formu ----- */
.availability-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 2rem;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border);
}

.availability-card .form-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.availability-card .form-control,
.availability-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: all var(--transition);
}

.availability-card .form-control:focus,
.availability-card .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: #fff;
}

/* ----- İletişim Kartı ----- */
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ----- Felsefe / Hakkımızda ----- */
.about-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: 100%;
  min-height: 420px;
}

.about-image-grid .about-img-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-grid .about-img-secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem 0;
}

.about-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ----- Footer ----- */
.footer-viona {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-viona h5 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.footer-viona a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-viona a:hover {
  color: var(--accent);
}

.footer-viona .footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-viona .footer-brand span {
  color: var(--accent);
}

.footer-viona .footer-line {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-viona .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  margin-right: 0.5rem;
  transition: all var(--transition);
  font-size: 1.1rem;
}

.footer-viona .social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ----- WhatsApp Floating Button ----- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1050;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float.pulse {
  animation: pulse-wa 0.6s ease-in-out;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ----- Admin Panel Ortak ----- */
.admin-body {
  background: #f5f3f0;
}

.admin-sidebar {
  background: var(--text);
  color: #fff;
  min-height: 100vh;
  width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1020;
  padding: 1.5rem 0;
  overflow-y: auto;
}

.admin-sidebar .admin-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.admin-sidebar .admin-brand span {
  color: var(--accent);
}

.admin-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.65);
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--accent);
}

.admin-sidebar .nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.admin-main {
  margin-left: 260px;
  padding: 2rem;
  min-height: 100vh;
}

/* Admin kartlar */
.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.stat-card .stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Admin tablolar */
.table-admin {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.table-admin thead th {
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
}

.table-admin tbody td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  border-color: var(--border);
  color: var(--text);
}

.table-admin tbody tr:hover {
  background: var(--bg);
}

/* Admin form */
.form-admin {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  border: 1px solid var(--border);
}

.form-admin .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-admin .form-control,
.form-admin .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.form-admin .form-control:focus,
.form-admin .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

/* Admin badge */
.badge-status {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xl);
}

.badge-onaylandi {
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
}

.badge-beklemede {
  background: rgba(255, 193, 7, 0.15);
  color: #b8860b;
}

.badge-iptal {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.badge-okundu {
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
}

.badge-okunmadi {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
}

/* Admin login */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  background-image: radial-gradient(ellipse at center, var(--accent-light) 0%, var(--bg) 70%);
}

.login-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 3rem;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--border);
}

.login-card .login-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.login-card .login-brand span {
  color: var(--accent);
}

.login-card .login-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ----- Harita ----- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ----- İletişim Formu ----- */
.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.contact-form-card .form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition);
  background: var(--bg);
}

.contact-form-card .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: #fff;
}

.contact-form-card textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* ----- Oda Detay Galeri ----- */
.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  aspect-ratio: 4 / 3;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-gallery-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.main-gallery-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Olanaklar */
.amenity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0.25rem;
}

.amenity-badge i {
  color: var(--accent);
}

/* ----- Alert / Toast Benzeri ----- */
.alert-accent {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 500;
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-slider {
    height: 70vh;
    min-height: 420px;
  }

  .about-image-grid {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .hero-subtitle {
    font-size: 1rem;
  }

  .hero-slider {
    height: 60vh;
    min-height: 360px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .availability-card {
    margin-top: -30px;
    padding: 1.5rem;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .navbar-viona .navbar-collapse {
    background: var(--surface);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    margin-top: 0.5rem;
  }

  /* Admin mobil */
  .admin-sidebar {
    width: 100%;
    min-height: auto;
    position: relative;
  }

  .admin-main {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-slider {
    height: 50vh;
    min-height: 300px;
  }

  .btn-accent,
  .btn-accent-outline {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .about-image-grid .about-img-main {
    grid-row: auto;
  }

  .footer-viona {
    text-align: center;
  }
}

/* ----- Animasyon Yardımcıları ----- */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger children */
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.12s; }
.stagger > *:nth-child(3) { animation-delay: 0.19s; }
.stagger > *:nth-child(4) { animation-delay: 0.26s; }
.stagger > *:nth-child(5) { animation-delay: 0.33s; }
.stagger > *:nth-child(6) { animation-delay: 0.40s; }

/* Sayfa içi geçiş için */
.page-section {
  padding: 5rem 0;
}

.section-bg-surface {
  background: var(--surface);
}
