@charset "utf-8";
/* ==========================================================================
   AURORA THEME — Identity Layer
   Kuzey ışıklarından ilhamla: porselen zemin, derin çam yeşili, zümrüt/nane
   ışıltısı ve menekşe parıltısı. Yapısal katmanların (plugins/style/fixes)
   üzerine görsel kimliği bu dosya giydirir.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTS (self-hosted, swap)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/marcellus-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/marcellus-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-cyr-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-cyr.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Aurora palette */
  --main-color: #1B9C85;            /* zümrüt — style.css bu değişkeni 125 yerde kullanır */
  --aurora-accent: #1B9C85;
  --aurora-accent-deep: #12715F;
  --aurora-mint: #63E6C8;
  --aurora-violet: #8B7CF6;
  --aurora-ink: #102426;            /* metin — koyu çam */
  --aurora-deep: #0B1F22;           /* koyu bölüm zemini */
  --aurora-deep-2: #081619;
  --aurora-porcelain: #F6F9F8;      /* açık zemin */
  --aurora-surface: #FFFFFF;
  --aurora-line: #E3ECE9;           /* çizgiler */
  --aurora-muted: #5E7370;          /* ikincil metin */

  --aurora-grad: linear-gradient(135deg, #12715F 0%, #1B9C85 45%, #2FBFA0 100%);
  --aurora-grad-btn: linear-gradient(135deg, #12715F 0%, #1B9C85 55%, #27B393 100%);
  --aurora-grad-line: linear-gradient(90deg, #1B9C85 0%, #63E6C8 50%, #8B7CF6 100%);

  --aurora-radius: 18px;
  --aurora-radius-sm: 12px;
  --aurora-pill: 999px;
  --aurora-shadow: 0 12px 40px -12px rgba(11, 31, 34, .16);
  --aurora-shadow-soft: 0 6px 24px -10px rgba(11, 31, 34, .10);
  --aurora-shadow-accent: 0 10px 28px -10px rgba(27, 156, 133, .45);

  --main-font: 'Marcellus', 'Georgia', serif;
  --secondary-font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   3. GLOBAL REFINEMENTS
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--aurora-deep);
  color: var(--aurora-ink);
  font-family: var(--secondary-font);
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--aurora-accent); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--aurora-deep-2); }
::-webkit-scrollbar-thumb { background: var(--aurora-accent); border-radius: 10px; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--aurora-mint);
  outline-offset: 2px;
}

h1, h2, h3, h4.section-title-heading, .section-title h2 {
  font-family: var(--main-font);
  letter-spacing: .01em;
}

/* --------------------------------------------------------------------------
   4. LOADER — aurora arc
   -------------------------------------------------------------------------- */
.loader-wrap { background: var(--aurora-deep); }
.loader-wrap .loader i { color: var(--aurora-mint); }
.loader-layer { background: var(--aurora-deep-2); }

/* --------------------------------------------------------------------------
   5. BUTTONS — Diamant'ın noktalı çerçevesi yerine aurora hap butonu
   -------------------------------------------------------------------------- */
.btn, .dwonload_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;                 /* style.css'in line-height:54px'ini ez — metin taşmasın */
  border-radius: var(--aurora-pill);
  background: var(--aurora-grad-btn);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  padding: 17px 34px;
  border: none;
  box-shadow: var(--aurora-shadow-accent);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn:before, .dwonload_btn:before { display: none; }
.btn:after, .dwonload_btn:after { display: none; }
.btn:hover, .dwonload_btn:hover {
  background: var(--aurora-grad-btn);
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 36px -12px rgba(27, 156, 133, .55);
}
.slider-button.btn { margin-top: 24px; }

/* ikincil / hayalet buton hissi gereken yerler */
.stg_link, .gid_link {
  font-family: var(--secondary-font);
  letter-spacing: .18em;
  color: var(--aurora-accent);
}
.stg_link:before { display: none; }
.stg_link:hover, .gid_link:hover { color: var(--aurora-accent-deep); }

/* --------------------------------------------------------------------------
   6. SECTION TITLES & SEPARATORS
   -------------------------------------------------------------------------- */
.section-title h4 {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 11px;
  font-weight: 700;
  color: var(--aurora-accent);
}
.section-title h2 { line-height: 1.18; }

.section-separator span,
.footer-separator span { background: transparent; }
.section-separator:before,
.footer-separator:before {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--aurora-grad-line);
}

/* --------------------------------------------------------------------------
   7. DARK SECTIONS — aurora glow
   -------------------------------------------------------------------------- */
.dark-bg, .color-bg.dark-bg {
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(27, 156, 133, .16) 0%, transparent 60%),
    radial-gradient(50% 45% at 88% 8%, rgba(139, 124, 246, .12) 0%, transparent 60%),
    var(--aurora-deep);
}
.color-bg { background: var(--aurora-accent); }

/* --------------------------------------------------------------------------
   8. CARDS & GALLERY
   -------------------------------------------------------------------------- */
.gallery-item .grid-item-holder,
.rooms-media,
.event-carousel-item,
.hero-menu-item-img,
.team-photo,
.blog-media {
  border-radius: var(--aurora-radius);
  overflow: hidden;
}
.gallery-item .grid-item-holder { box-shadow: var(--aurora-shadow-soft); }
.gallery-item:hover .grid-item-holder { box-shadow: var(--aurora-shadow); }

.grid-item_price span { color: var(--aurora-accent); font-weight: 800; }

.contacts-card-item,
.aminites-card-item,
.testimonilas-text {
  border-radius: var(--aurora-radius);
  border: 1px solid var(--aurora-line);
  box-shadow: var(--aurora-shadow-soft);
  transition: box-shadow .3s ease, transform .3s ease;
}
.contacts-card-item:hover,
.aminites-card-item:hover { transform: translateY(-4px); box-shadow: var(--aurora-shadow); }

/* --------------------------------------------------------------------------
   9. FORMS
   -------------------------------------------------------------------------- */
.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="password"],
.custom-form input[type="tel"],
.custom-form input[type="number"],
.custom-form textarea,
.nice-select,
.subcribe-form input[type="email"] {
  border-radius: var(--aurora-radius-sm);
  border: 1px solid var(--aurora-line);
  font-family: var(--secondary-font);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.custom-form input:focus,
.custom-form textarea:focus,
.subcribe-form input[type="email"]:focus {
  border-color: var(--aurora-accent);
  box-shadow: 0 0 0 3px rgba(27, 156, 133, .14);
}
.nice-select .option.selected { color: var(--aurora-accent); }

/* --------------------------------------------------------------------------
   10. FLATPICKR SKIN
   -------------------------------------------------------------------------- */
.flatpickr-calendar {
  border-radius: var(--aurora-radius-sm);
  box-shadow: var(--aurora-shadow);
  z-index: 9999 !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  background: var(--aurora-accent);
  border-color: var(--aurora-accent);
}
.flatpickr-day.inRange {
  background: rgba(27, 156, 133, .12);
  border-color: transparent;
  box-shadow: -5px 0 0 rgba(27, 156, 133, .12), 5px 0 0 rgba(27, 156, 133, .12);
}
.flatpickr-day.today { border-color: var(--aurora-mint); }
.flatpickr-months .flatpickr-month { color: var(--aurora-ink); }

/* --------------------------------------------------------------------------
   11. HEADER & NAV
   -------------------------------------------------------------------------- */
.main-header {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 22, 25, .78);
  border-bottom: 1px solid rgba(99, 230, 200, .10);
}
.header-top { border-bottom: 1px solid rgba(255, 255, 255, .06); }
.nav-holder nav li a:hover { color: var(--aurora-mint); }
.show-cart .cart-count { background: var(--aurora-accent); }

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  background:
    radial-gradient(55% 60% at 85% 100%, rgba(139, 124, 246, .10) 0%, transparent 60%),
    radial-gradient(60% 60% at 10% 100%, rgba(27, 156, 133, .14) 0%, transparent 60%),
    var(--aurora-deep-2);
}
.main-footer:before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--aurora-grad-line);
  opacity: .8;
}
.footer-widget-title { font-family: var(--main-font); letter-spacing: .04em; }
.subcribe-form .subscribe-button { border-radius: var(--aurora-pill); background: var(--aurora-grad-btn); }

/* --------------------------------------------------------------------------
   13. MISC UI
   -------------------------------------------------------------------------- */
.to-top, .scrollToTop {
  border-radius: var(--aurora-pill);
  background: var(--aurora-grad-btn);
  color: #fff;
  box-shadow: var(--aurora-shadow-accent);
}
.pagination a.current-page, .pagination a:hover { background: var(--aurora-accent); color: #fff; }
.like-btn { border-radius: var(--aurora-pill); }
.breadcumb-inner .breadcumb-title { font-family: var(--main-font); }

/* Swiper pagination/knobs */
.swiper-pagination-bullet-active { background: var(--aurora-mint) !important; }
.slide-progress { background: var(--aurora-grad-line) !important; }

/* --------------------------------------------------------------------------
   14. FUNCTIONAL FIXES (eski main.php inline blok buraya taşındı)
   -------------------------------------------------------------------------- */
/* Flatpickr orijinal input gizle, sadece altInput göster */
input.flatpickr-input[readonly].flatpickr-input { display: none !important; }
input.flatpickr-input[readonly].input { cursor: pointer; }

/* Tarih input'una takvim ikonu */
.date-container { position: relative; }
.date-container input { padding-right: 40px !important; cursor: pointer !important; width: 100%; }
.date-container::after {
  content: "\f073";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--aurora-muted);
  font-size: 16px;
  z-index: 1;
}
@media (max-width: 768px) { .date-container::after { right: 10px; } }

/* Oda görselleri standartlaştırma */
.gallery-items.two-column { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.gallery-items.two-column .gallery-item { width: 100%; max-width: 100%; display: block; }
.gallery-items .gallery-item .grid-item-holder {
  position: relative;
  width: 50%;
  padding-top: 31.67%;
  overflow: hidden;
  background-color: #eef4f2;
  margin-bottom: 20px;
}
.gallery-items .gallery-item .grid-item-holder img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.gallery-items .gallery-item .grid-item-details { width: 50%; }
.gallery-items .gallery-item .grid-item-details .gid_link { display: inline-block; margin-top: 15px; }
.gallery-items .gallery-item .grid-item-details .grid-item_price {
  display: inline-block; margin-right: 20px; margin-top: 15px; vertical-align: middle; float: left;
}
.gallery-items .gallery-item .grid-item-details .grid-item_price-details {
  display: inline-block; margin-right: 15px; vertical-align: middle; font-size: 13px; opacity: .8;
}

/* Ana sayfa oda carousel görselleri */
.rooms-carousel-item .bg-wrap .bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background-size: cover !important; background-position: center !important;
}
.rooms-carousel-item { min-height: 600px; }

/* Liste görünümü oda görselleri */
.rooms-list-item .rooms-media { position: relative; width: 100%; padding-top: 75%; overflow: hidden; background-color: #eef4f2; }
.rooms-list-item .rooms-media img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* Oda detay ana görsel */
.single-room-grid-item .bg-wrap { position: relative; width: 100%; padding-top: 66.67%; overflow: hidden; }
.single-room-grid-item .bg-wrap .bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover !important; background-position: center !important;
}

/* Thumbnail görseller */
.room-thumbnail, .thumbnail-img { position: relative; width: 100%; padding-top: 75%; overflow: hidden; background-color: #eef4f2; }
.room-thumbnail img, .thumbnail-img img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

@media (max-width: 1024px) { .rooms-carousel-item { min-height: 500px; } }
@media (max-width: 768px) {
  .rooms-carousel-item { min-height: 400px; }
  .gallery-items.two-column { grid-template-columns: 1fr; gap: 20px; }
  .gallery-items .gallery-item .grid-item-holder { padding-top: 75%; }
}
@media (max-width: 480px) {
  .rooms-carousel-item { min-height: 350px; }
  .gallery-items.two-column { gap: 15px; }
}

/* Görsel hover */
.grid-item-holder img, .rooms-media img { transition: transform .35s ease; }
.grid-item-holder:hover img, .rooms-media:hover img { transform: scale(1.05); }
