/* =====================================================================
   MAFIA DREAM HOTEL — Public Site Stylesheet
   Design plan: deep ocean teal/navy + warm sand + single coral accent.
   Display face: Fraunces (warm, organic serif — travel-poster character).
   Body face: Inter (clean, legible).
   Signature element: hand-drawn wave divider between sections, used once
   per page as a deliberate accent rather than a generic decorative wave.
   ===================================================================== */

:root {
  --navy: #102a3a;
  --deep-teal: #144d49;
  --teal: #2a7c6f;
  --teal-light: #5bc4b5;
  --sand: #f3ecdf;
  --sand-dark: #e3d6bd;
  --coral: #e8794a;
  --coral-dark: #c95f33;
  --ink: #1c2b2a;
  --cream: #fbf8f2;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  margin: 0;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { text-decoration: none; }

/* ---------------- HEADER / NAV ---------------- */
.site-header {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* White hamburger icon — visible on dark navy header */
.navbar-toggler {
  border-color: rgba(255,255,255,0.4);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(91,196,181,0.4);
}

/* Mobile nav dropdown */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--navy);
    padding: 8px 16px 16px;
    margin: 8px -12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 12px 12px;
  }
  .navbar-nav .nav-link {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  .navbar-nav li:last-child .nav-link { border-bottom: none; }
  .navbar-nav .ms-lg-2 { margin-top: 10px !important; margin-left: 0 !important; }
  .navbar-nav .btn-book { display: block; text-align: center; width: 100%; }
}

.navbar-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff !important;
}

.nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: 20px;
  transition: all .15s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}

.btn-book {
  background: var(--coral);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all .2s ease;
  display: inline-block;
}
.btn-book:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

/* ---------------- WAVE DIVIDER (signature element) ---------------- */
.wave-divider {
  width: 100%;
  height: 60px;
  display: block;
  margin: 0;
}
.wave-divider path {
  fill: var(--cream);
}
.wave-divider.flip path {
  fill: var(--sand);
}

/* ---------------- HERO (animated ocean background) ---------------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep-teal) 60%, var(--teal) 100%);
  color: #fff;
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}

/* Layered waves drifting at different speeds = parallax depth illusion */
.hero-waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 280px;
  pointer-events: none;
  z-index: 1;
}
.hero-waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.hero-wave-back {
  opacity: 0.22;
  animation: wave-drift-slow 22s linear infinite;
}
.hero-wave-mid {
  opacity: 0.30;
  animation: wave-drift-medium 16s linear infinite reverse;
}
.hero-wave-front {
  opacity: 0.42;
  animation: wave-drift-fast 11s linear infinite;
}

@keyframes wave-drift-slow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes wave-drift-medium {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes wave-drift-fast {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Subtle sunlight shimmer drifting across the water */
.hero-shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255,255,255,0.10), transparent 60%);
  animation: shimmer-drift 14s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}
@keyframes shimmer-drift {
  from { transform: translate(-4%, -2%); opacity: 0.7; }
  to   { transform: translate(4%, 3%); opacity: 1; }
}

/* Cream curved cutoff at the bottom, sits above the waves */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--cream);
  clip-path: polygon(0 60%, 8% 50%, 18% 65%, 30% 45%, 42% 62%, 55% 48%, 68% 64%, 80% 50%, 92% 62%, 100% 52%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  max-width: 720px;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255,255,255,0.88);
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--teal-light);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave-back, .hero-wave-mid, .hero-wave-front, .hero-shimmer {
    animation: none !important;
  }
}

/* ---------------- SECTIONS ---------------- */
.section { padding: 70px 0; }
.section-sand { background: var(--sand); }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.section-subtitle {
  color: #5b6e6c;
  font-size: 1.05rem;
  max-width: 560px;
}

/* ---------------- WHY STAY CARDS ---------------- */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  border: 1px solid rgba(16,42,58,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16,42,58,0.1);
  color: inherit;
  text-decoration: none;
}
a.why-card.clickable {
  cursor: pointer;
}
a.why-card.clickable:hover .icon-circle {
  background: var(--deep-teal);
  transition: background .2s ease;
}
.why-card .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: background .2s ease;
}

/* ---------------- ROOM / ACTIVITY CARDS ---------------- */
.room-card, .activity-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16,42,58,0.06);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.room-card.clickable, .activity-card.clickable {
  cursor: pointer;
}
.room-card:hover, .activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(16,42,58,0.12);
}
.room-card:active, .activity-card:active {
  transform: translateY(-2px);
}
.room-card .card-img, .activity-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--sand-dark);
  transition: transform .35s ease;
}
.room-card:hover .card-img, .activity-card:hover .card-img {
  transform: scale(1.04);
}
.room-card .card-img-wrap, .activity-card .card-img-wrap {
  overflow: hidden;
}

/* Icon-based placeholder shown when no real photo has been uploaded yet */
.card-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
  color: rgba(255,255,255,0.85);
  font-size: 2.6rem;
  transition: transform .35s ease;
}
.room-card:hover .card-img-placeholder, .activity-card:hover .card-img-placeholder {
  transform: scale(1.04);
}
.room-card .card-body, .activity-card .card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.price-tag {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--deep-teal);
  font-weight: 600;
}
.price-tag small {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

.featured-badge {
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* ---------------- COMPARISON TABLE ---------------- */
.compare-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16,42,58,0.08);
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 500;
}
.compare-table td, .compare-table th {
  padding: 14px 18px;
  vertical-align: middle;
}

/* ---------------- TESTIMONIAL / CTA BAND ---------------- */
.cta-band {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
}
.cta-band h2 { color: #fff; }

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--navy);
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  display: block;
  padding: 4px 0;
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--teal-light); }

/* ---------------- BOOKING FLOW ---------------- */
.booking-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.booking-step {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(16,42,58,0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: #8a9a98;
  min-width: 90px;
}
.booking-step.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.booking-step.done {
  background: var(--sand-dark);
  color: var(--deep-teal);
}

.booking-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(16,42,58,0.07);
}

.activity-pick-card, .transfer-pick-card {
  border: 2px solid rgba(16,42,58,0.08);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all .15s ease;
  height: 100%;
}
.activity-pick-card:hover, .transfer-pick-card:hover {
  border-color: var(--teal-light);
}
.activity-pick-card.selected, .transfer-pick-card.selected {
  border-color: var(--coral);
  background: #fff7f2;
}

.summary-box {
  background: var(--sand);
  border-radius: 16px;
  padding: 22px;
  position: sticky;
  top: 100px;
}

/* ---------------- UTILITIES ---------------- */
.text-coral { color: var(--coral); }
.text-teal { color: var(--teal); }
.bg-navy { background: var(--navy); }
.rounded-xl { border-radius: 18px; }

/* ---------------- SCROLL REVEAL ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- BUTTON INTERACTIONS ---------------- */
.btn {
  transition: all .18s ease;
}
.btn:active {
  transform: scale(0.97);
}
.btn-outline-dark {
  transition: all .18s ease;
}
.btn-outline-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ---------------- GALLERY LIGHTBOX ---------------- */
.gallery-thumb {
  cursor: pointer;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-thumb:hover img {
  transform: scale(1.08);
}
.gallery-thumb::after {
  content: '\f1c5';
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(16,42,58,0.55);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity .2s ease;
}
.gallery-thumb:hover::after {
  opacity: 1;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,26,32,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.lightbox-overlay.show {
  display: flex;
}
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------------- WHATSAPP FLOATING BUTTON ---------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 500;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  color: #fff;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s ease;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  color: #fff !important;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::after { animation: none !important; }
}

@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; left: 16px; bottom: 16px; }
}

/* ---------------- NAV SCROLL STATE ---------------- */
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

/* ---------------- BACK TO TOP ---------------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 500;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

/* visible keyboard focus, per accessibility floor */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   RESPONSIVE / MOBILE — comprehensive rules for all public pages
   Tested at 375px (iPhone SE), 390px (iPhone 14), 768px (tablet)
   ================================================================ */

/* ---------- 768px and below (tablet + phone) ---------- */
@media (max-width: 768px) {

  /* Hero */
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero p.lead { font-size: 1rem; }
  .hero::after { height: 40px; }
  .hero-waves { height: 160px; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }

  /* Nav — Bootstrap collapse handles this, just ensure brand doesn't truncate */
  .navbar-brand { font-size: 1rem; }

  /* Cards */
  .room-card .card-img,
  .activity-card .card-img { height: 180px; }
  .card-img-placeholder { height: 180px !important; }

  /* Booking steps — scrollable row on mobile */
  .booking-steps {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 6px;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .booking-steps::-webkit-scrollbar { display: none; }
  .booking-step {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-width: 100px;
    font-size: 0.7rem;
    padding: 8px 6px;
  }

  /* Booking layout — stack form above summary on mobile */
  .summary-box {
    position: static !important;
    margin-top: 24px;
  }

  /* Rates table — make scrollable rather than cramped */
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }
  .compare-table { min-width: 520px; }

  /* CTA band */
  .cta-band { padding: 36px 20px; text-align: center; }
  .cta-band .d-flex { justify-content: center !important; flex-wrap: wrap; }

  /* Gallery lightbox controls */
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }

  /* Contact form layout */
  .contact-row .col-md-5,
  .contact-row .col-md-7 { width: 100%; }

  /* Footer — stack columns */
  .site-footer .row { gap: 24px; }
  .site-footer .col-md-4 { width: 100%; }

  /* WhatsApp float — smaller on mobile */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; }
  .back-to-top { width: 40px; height: 40px; font-size: 1rem; right: 16px; bottom: 16px; }
}

/* ---------- 480px and below (phones) ---------- */
@media (max-width: 480px) {

  /* Tighten horizontal padding so content doesn't feel cramped */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Hero text */
  .hero h1 { font-size: 1.7rem; line-height: 1.12; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; }

  /* Why-stay cards — 2 columns on small phones */
  .why-card { padding: 16px 12px; }
  .why-card .icon-circle { width: 40px; height: 40px; font-size: 1.1rem; }

  /* Room cards full width on phone */
  .room-card .card-body,
  .activity-card .card-body { padding: 16px; }
  .price-tag { font-size: 1.2rem; }

  /* Booking page */
  .booking-step { min-width: 80px; font-size: 0.65rem; padding: 7px 4px; }
  .booking-card { padding: 16px; }
  .booking-card h2 { font-size: 1.3rem; }

  /* Activity / transfer pick-cards tighter */
  .activity-pick-card,
  .transfer-pick-card { padding: 12px; }

  /* Blog / offer cards */
  .room-card .card-body h5 { font-size: 1rem; }

  /* Rates page — table label hint */
  .rates-scroll-hint { display: block; font-size: 0.78rem; color: #888; margin-bottom: 6px; }

  /* Footer WhatsApp button — keep clear of bottom nav on iOS */
  .whatsapp-float { bottom: 20px; left: 16px; }
  .back-to-top { bottom: 20px; right: 16px; }

  /* Admin visible on phone — stats stack properly */
  .stat-card { padding: 14px 16px; }
  .stat-value { font-size: 1.6rem; }
}

/* ---------- Very small phones (360px and below) ---------- */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.5rem; }
  .booking-step { min-width: 72px; font-size: 0.6rem; }
  .btn-book { padding: 10px 18px; font-size: 0.9rem; }
}

/* Prevent iOS auto-zoom on input focus (inputs < 16px font cause zoom) */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-wave-back, .hero-wave-mid, .hero-wave-front, .hero-shimmer {
    animation: none !important;
  }
  .whatsapp-float::after { animation: none !important; }
}

/* MDH Ken Burns zoom effect for single images */
@keyframes mdhKenBurns {
  0%   { transform: scale(1)    translateX(0)    translateY(0); }
  25%  { transform: scale(1.08) translateX(-1%)  translateY(-1%); }
  50%  { transform: scale(1.05) translateX(1%)   translateY(0); }
  75%  { transform: scale(1.1)  translateX(-1%)  translateY(1%); }
  100% { transform: scale(1)    translateX(0)    translateY(0); }
}
.mdh-slider { overflow: hidden; }
.mdh-slide  { transform-origin: center center; }
