/* ============================================================
   MONTELUX VIP Layout — birebir orijinal tasarım
   Sınıflar plugin namespace'i için "montelux-" ön ekiyle korunur.
   ============================================================ */

.montelux-topbar,
.montelux-header,
.montelux-hero,
.montelux-footer,
.montelux-main {
  --gold: #c9a961;
  --gold-light: #e0c684;
  --gold-dark: #a8884a;
  --navy: #0e1729;
  --navy-2: #18223a;
  --cream: #f7f3ec;
  --text: #1a2236;
  --muted: #8a8f9c;

  --ml-navy: var(--navy);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
}
.montelux-topbar *, .montelux-topbar *::before, .montelux-topbar *::after,
.montelux-header *, .montelux-header *::before, .montelux-header *::after,
.montelux-hero *,   .montelux-hero *::before,   .montelux-hero *::after,
.montelux-footer *, .montelux-footer *::before, .montelux-footer *::after,
.montelux-main *,   .montelux-main *::before,   .montelux-main *::after {
  box-sizing: border-box;
}

/* ─── TOP BAR ────────────────────────────────────────────── */
.montelux-topbar {
  background: var(--navy);
  color: #cfd3dc;
  font-size: 13px;
}
.montelux-topbar .topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.montelux-topbar .topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.montelux-topbar .topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.montelux-topbar .topbar-info .ico { color: var(--gold); font-size: 14px; }
.montelux-topbar .topbar-info a { color: inherit; text-decoration: none; }
.montelux-topbar .topbar-info a:hover { color: var(--gold); }
.montelux-topbar .topbar-lang a {
  color: #cfd3dc;
  text-decoration: none;
  margin-left: 10px;
  font-weight: 500;
  transition: color .2s;
}
.montelux-topbar .topbar-lang a:hover,
.montelux-topbar .topbar-lang a.active { color: var(--gold); }

/* ─── HEADER ─────────────────────────────────────────────── */
.montelux-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(201,169,97,0.18);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(14,23,41,0.05);
}
.montelux-header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.montelux-header .logo-wrap img {
  height: 64px;
  width: auto;
  display: block;
}
.montelux-header .logo-wrap .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
}
.montelux-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.montelux-header nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}
.montelux-header nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
}
.montelux-header nav a:hover { color: var(--gold-dark); }
.montelux-header nav a:hover::after { width: 100%; left: 0; }

.montelux-header .btn-book,
.montelux-hero   .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy) !important;
  padding: 12px 26px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  box-shadow: 0 6px 16px rgba(201,169,97,0.32);
  transition: transform 0.25s, box-shadow 0.25s !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}
.montelux-header .btn-book:hover,
.montelux-hero   .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201,169,97,0.45);
}
.montelux-header .btn-book::after { display: none !important; }

/* ─── HEADER ACCOUNT (Giriş / Kaydol) ────────────────────── */
.montelux-header .ml-account {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 6px;
  padding-left: 18px;
  border-left: 1px solid rgba(201,169,97,0.28);
}
.montelux-header .ml-account .ml-acc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.montelux-header .ml-account .ml-acc-link i { color: var(--gold); font-size: 16px; }
.montelux-header .ml-account .ml-acc-link:hover { color: var(--gold-dark); }
.montelux-header .ml-account .ml-acc-link::after { display: none !important; }
.montelux-header .ml-account .ml-acc-register {
  padding: 7px 14px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-dark);
}
.montelux-header .ml-account .ml-acc-register:hover {
  background: var(--gold);
  color: var(--navy);
}

/* hamburger */
.montelux-header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.montelux-header .hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

@media (max-width: 920px) {
  .montelux-header nav { display: none; }
  .montelux-header .hamburger { display: flex; }
  .montelux-topbar .topbar-info { display: none; }
  .montelux-header .header-inner { height: 78px; }
  .montelux-header .logo-wrap img { height: 52px; }

  /* Açılır mobil menü */
  .montelux-header.is-open nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 14px 22px 22px;
    border-top: 1px solid rgba(201,169,97,0.18);
    box-shadow: 0 14px 28px rgba(14,23,41,0.12);
    z-index: 99;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .montelux-header.is-open nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(14,23,41,0.06);
    width: 100%;
    text-align: left;
  }
  .montelux-header.is-open nav a::after { display: none !important; }
  .montelux-header.is-open nav .btn-book {
    margin-top: 14px;
    justify-content: center;
    border-bottom: 0;
    width: 100%;
  }
  .montelux-header.is-open nav .ml-account {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(201,169,97,0.18);
  }
  .montelux-header.is-open nav .ml-account .ml-acc-link {
    padding: 12px 4px;
    width: 100%;
  }
  .montelux-header.is-open nav .ml-account .ml-acc-register {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  /* Hamburger X animasyonu */
  .montelux-header.is-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .montelux-header.is-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .montelux-header.is-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .montelux-header .hamburger span {
    transition: transform .25s, opacity .2s;
  }

  body.ml-menu-open { overflow: hidden; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.montelux-hero {
  color: #fff;
  text-align: center;
  padding: 130px 24px;
}
.montelux-hero .kicker {
  color: var(--gold-light);
  letter-spacing: 0.4em;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.montelux-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #fff;
}
.montelux-hero h1 span { color: var(--gold); font-style: italic; }
.montelux-hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: #d8dbe3;
  font-size: 1.05rem;
}
.montelux-hero .btn-book { font-size: 14px; padding: 14px 32px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.montelux-footer {
  background: var(--navy);
  color: #b8bdc8;
  padding: 72px 24px 0;
  position: relative;
}
.montelux-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.montelux-footer .footer-inner { max-width: 1280px; margin: 0 auto; }

.montelux-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,169,97,0.18);
}

@media (max-width: 960px) {
  .montelux-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .montelux-footer .footer-grid { grid-template-columns: 1fr; }
  .montelux-footer { padding-top: 56px; }
}

.montelux-footer .footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.montelux-footer .footer-brand p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #aab0bd;
  max-width: 360px;
  margin: 0;
}
.montelux-footer .footer-brand .accent {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0;
}

.montelux-footer .footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 12px;
}
.montelux-footer .footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--gold);
}

.montelux-footer .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0; margin: 0;
}
.montelux-footer .footer-col ul li a {
  text-decoration: none;
  color: #aab0bd;
  font-size: 14.5px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.montelux-footer .footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  margin-right: 8px;
  opacity: 0.7;
}
.montelux-footer .footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.montelux-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #aab0bd;
  font-size: 14.5px;
}
.montelux-footer .footer-contact li .ico {
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}
.montelux-footer .footer-contact li a {
  color: #aab0bd;
  text-decoration: none;
  transition: color 0.2s;
}
.montelux-footer .footer-contact li a::before { content: none; }
.montelux-footer .footer-contact li a:hover { color: var(--gold-light); padding-left: 0; }

.montelux-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0;
  font-size: 13px;
  color: #7a8092;
}

.montelux-footer .footer-social { display: flex; gap: 12px; }
.montelux-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  font-size: 18px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.montelux-footer .footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
