/* =========================================================
   ПРОЕКТСТРОЙ — Петър Петров – Петя Пътева
   Home page styles
   Design reference: Figma "Home Page" (1440 × 2759)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* One design pixel: 1vw / 14.4 = 1 design px at the 1440px design width.
     Scales down proportionally on по-тесни екрани; расте най-много до
     1.15× на много широки, за да не се зумира прекалено снимката.       */
  --u: min(0.0694444vw, 1.15px);

  /* Colours */
  --c-cream:        #fafaf7;
  --c-ink:          #1c1917;
  --c-muted:        #57534e;
  --c-eyebrow:      #a8322c;
  --c-red:          #f11112;
  --c-black:        #000000;
  --c-chip:         #241e1e;
  --c-nav:          #f1f1f1;
  --c-card-border:  #e7e2da;
  --c-field-border: #d9d3c9;
  --c-placeholder:  #8a847b;
  --c-footer-bg:    #ecece5;
  --c-footer-text:  rgba(0, 0, 0, 0.75);
  --c-footer-meta:  rgba(0, 0, 0, 0.4);
  --c-tagline:      #404040;

  /* Typography */
  --f-sans: "Sofia Sans", "Segoe UI", Arial, sans-serif;
  --f-cond: "Sofia Sans Condensed", "Sofia Sans", "Segoe UI", Arial, sans-serif;
  --f-black: "Arial Black", "Arial Bold", "Sofia Sans", Arial, sans-serif;

  /* Layout */
  /* Точно 160px при 1440 (както е в дизайна), но расте по-полека,
     за да не остават огромни бели полета на таблет и лаптоп. */
  --gutter: clamp(20px, calc(16.6667vw - 80px), 160px);
  --header-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

button, input, textarea { font: inherit; color: inherit; }

h1, h2, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--c-red); outline-offset: 3px; }

section[id], [id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  background: var(--c-black);
}

.header__inner {
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand__logo { width: 34px; height: auto; }

.brand__name {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: 6px; }

.nav__link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-nav);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav__link:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.nav__link--cta {
  background: var(--c-red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
}
.nav__link--cta:hover { background: #d80e0f; }

/* burger (mobile only) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-nav);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: calc(1088 * var(--u));
  overflow: hidden;
  background: #2a6fb5;
  isolation: isolate;
}

/* layer 1 — full scene photo */
.hero__sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-origin: 50% 100%;
  will-change: transform;
}
.hero__sky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

/* layer 2 — the headline stack (slides behind the building) */
.hero__title {
  position: absolute;
  z-index: 2;
  top: calc(228 * var(--u));
  left: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
}

.hero__welcome {
  font-weight: 700;
  font-size: calc(48 * var(--u));
  letter-spacing: calc(4 * var(--u));
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  text-indent: calc(4 * var(--u));   /* compensate trailing letter-spacing */
}

.hero__name {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: calc(167 * var(--u));
  line-height: 0.9;
  color: #fff;
  margin-top: calc(10 * var(--u));
}

.hero__owners {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: calc(48 * var(--u));
  letter-spacing: calc(5 * var(--u));
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  margin-top: calc(10 * var(--u));
  text-indent: calc(5 * var(--u));
}

/* layer 3 — the cut-out building, occludes the headline */
.hero__building {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(504 * var(--u));
  transform-origin: 50% 100%;
  pointer-events: none;
  will-change: transform;
}
.hero__building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

/* layer 4 — CTA + scroll hint */
.hero__actions {
  position: absolute;
  z-index: 4;
  top: calc(957 * var(--u));
  left: 0;
  right: 0;
  margin-inline: auto;
  width: calc(581 * var(--u));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(14 * var(--u));
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: calc(14 * var(--u));
  width: 100%;
  padding-top: calc(26 * var(--u));
}
/* под 1440 всичко се смалява пропорционално; слагаме под тях под,
   за да не станат нечетими на лаптоп */
.hero__buttons .btn {
  font-size: max(13px, calc(17 * var(--u)));
  padding: calc(17 * var(--u)) calc(34 * var(--u));
}
.hero__buttons .btn--red   { width: calc(291 * var(--u)); }
.hero__buttons .btn--ghost { width: calc(276 * var(--u)); }

.hero__scroll {
  font-weight: 600;
  font-size: max(11px, calc(13 * var(--u)));
  letter-spacing: calc(3 * var(--u));
  text-indent: calc(3 * var(--u));
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.69);
  text-align: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--red { background: var(--c-red); color: #fff; }
.btn--red:hover { background: #d80e0f; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
  opacity: 0.95;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.22); }

.btn--dark {
  background: var(--c-ink);
  color: #fff;
  font-size: 15px;
  padding: 14px 26px;
}
.btn--dark:hover { background: #332e2b; }

.btn--submit { font-size: 16px; padding: 16px 36px; }

/* =========================================================
   SHARED
   ========================================================= */
.eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-indent: 3px;
  text-transform: uppercase;
  color: var(--c-eyebrow);
}

/* =========================================================
   INTRO
   ========================================================= */
.intro {
  background: var(--c-cream);
  padding: 96px var(--gutter) 24px;
}

.intro__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.intro__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.intro__heading {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(32px, 3.194vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--c-ink);
}

.intro__body {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--c-muted);
}

.intro__media {
  flex: 1 1 0;
  min-width: 0;
  height: 399px;
  border-radius: 16px;
  overflow: hidden;
}
.intro__media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--c-cream);
  padding: 72px var(--gutter) 110px;
}

.contact__card {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-card-border);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.contact__info {
  width: 400px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contact__heading {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(30px, 2.917vw, 42px);
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--c-ink);
}

.contact__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
}

.contact__list {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  color: var(--c-ink);
  list-style: none;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Иконите са начертани, а не емоджита — емоджито изглежда различно
   във всеки браузър и не следва цветовете на сайта. */
.contact__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--c-card-border);
  border-radius: 11px;
  background: var(--c-cream);
  color: var(--c-red);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.contact__icon svg { width: 19px; height: 19px; display: block; }

.contact__list a {
  color: var(--c-ink);
  transition: color 0.2s ease;
}
.contact__list a:hover { color: var(--c-red); }

.contact__list li:has(a:hover) .contact__icon {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

.contact__form {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form[hidden] { display: none; }

/* --- съобщение за грешка под формата --- */
.form-error {
  padding: 10px 14px;
  border-radius: 10px;
  background: #fdf3f3;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-red);
}
.form-error[hidden] { display: none; }
.field.is-bad { border-color: var(--c-red); background: #fdf3f3; }

/* =========================================================
   ПОТВЪРЖДЕНИЕ СЛЕД ЗАПИТВАНЕ
   Същият екран като след заявка за нощувка, за да е един
   и същи език на целия сайт.
   ========================================================= */
.contact__done {
  flex: 1 1 0;
  min-width: 0;
  align-self: center;
}
.contact__done[hidden] { display: none; }

.done { text-align: center; padding: 18px 8px 6px; }

.done__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 99px;
  background: var(--c-red);
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.done__title {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--c-ink);
}

.done__text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-muted);
}
.done__text b { color: var(--c-ink); }

.done__hint {
  margin-top: 14px;
  font-size: 14px;
  color: var(--c-placeholder);
}
.done__hint a { color: var(--c-red); font-weight: 700; }

.done__btn { margin-top: 22px; width: 100%; padding: 15px; }

.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1 1 0; min-width: 0; }

.field {
  width: 100%;
  height: 52px;
  flex: 0 0 auto;
  padding: 15px 16px;
  background: var(--c-cream);
  border: 1px solid var(--c-field-border);
  border-radius: 10px;
  font-size: 16px;
  color: var(--c-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field::placeholder { color: var(--c-placeholder); }
.field:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(241, 17, 18, 0.12);
}

.field--area {
  height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.4;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--c-footer-bg);
  border-radius: 40px;
  padding: 75px 82px 67px;
}

.footer__card {
  max-width: 1275px;
  margin: 0 auto;
  min-height: 393px;
  background: #fff;
  border-radius: 41px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
  padding: 49px 60px 54px;
  display: flex;
  flex-direction: column;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  padding-bottom: 53px;
}

.footer__brand { flex: 1 1 auto; min-width: 0; }

.footer__brand-row { display: flex; align-items: center; gap: 13px; }

.footer__logo { width: 110px; height: 75px; flex: 0 0 auto; }

.footer__brand-text { display: flex; flex-direction: column; }

.footer__brand-name {
  font-family: var(--f-black);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  color: var(--c-red);
}

.footer__brand-sub {
  font-family: var(--f-black);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.15;
  color: var(--c-red);
}

.footer__tagline {
  margin-top: 52px;
  padding-left: 12px;
  max-width: 426px;
  font-size: 18px;
  line-height: 1.25;
  color: var(--c-tagline);
}

.footer__nav {
  flex: 0 0 175px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav a {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  color: var(--c-footer-text);
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--c-red); }

.footer__contacts { flex: 0 0 196px; }

.footer__contacts-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  color: var(--c-footer-text);
  margin-bottom: 10px;
}

.footer__contacts-line {
  display: block;
  font-size: 15px;
  line-height: 1.15;
  color: var(--c-footer-text);
  margin-top: 15px;
  transition: color 0.2s ease;
}
.footer__contacts-line:hover { color: var(--c-red); }

.footer__address {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.25;
  color: var(--c-footer-text);
}

.footer__line {
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--c-red);
}

.footer__bottom {
  padding-top: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy,
.footer__legal {
  font-size: 13px;
  line-height: 1.2;
  color: var(--c-footer-meta);
}

.footer__legal { display: flex; gap: 19px; }
.footer__legal a { text-decoration: underline; transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--c-red); }


/* =========================================================
   LOADER  (Figma: Loader A · 01 / 02 / 03)
   Тъмен панел върху цялата страница с прозорец във формата на
   знака. Прозорецът расте, докато открие hero-а отдолу.
   ========================================================= */
.loader { display: none; }

.is-loading { overflow: hidden; }
.is-loading body { overflow: hidden; }

.is-loading .loader,
.loader.is-exiting {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.loader__panel {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.loader__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 74px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-indent: 4px;          /* компенсира разредката при центриране */
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.loader__track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.loader__fill {
  width: 0;
  height: 100%;
  background: var(--c-eyebrow);
}

/* Хедърът, заглавието и бутоните се появяват чак когато панелът се
   отвори — както в кадрите на дизайна, където през прозореца се вижда
   само снимката. */
.header,
.hero__title,
.hero__actions { transition: opacity 0.8s ease 0.15s; }

.is-loading .header,
.is-loading .hero__title,
.is-loading .hero__actions { opacity: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .contact__info { width: 340px; }
  .footer { padding: 60px 40px 52px; }
  .footer__card { padding: 44px 44px 44px; }
  .footer__nav { flex-basis: 150px; }
}

@media (max-width: 1024px) {
  .intro { padding-top: 72px; }
  .intro__inner { flex-direction: column-reverse; align-items: stretch; gap: 32px; }
  .intro__text { flex: 0 0 auto; }
  .intro__media { flex: 0 0 auto; height: clamp(240px, 42vw, 399px); }

  .contact { padding-bottom: 80px; }
  .contact__card { flex-direction: column; gap: 36px; padding: 40px; }
  .contact__info { width: 100%; }

  .footer__top { flex-wrap: wrap; gap: 40px 32px; padding-bottom: 40px; }
  .footer__brand { flex: 1 1 100%; }
  .footer__tagline { margin-top: 28px; }
}

@media (max-width: 900px) {
  /* --- на пипане връзките трябва да са достатъчно големи --- */
  .brand { min-height: 44px; }
  .footer__nav a,
  .footer__contacts-line,
  .footer__legal a {
    display: flex;
    align-items: center;
    min-height: 40px;
  }
  .footer__nav { gap: 4px; }
  .footer__contacts-line { margin-top: 4px; }
  .footer__contacts-title { margin-bottom: 4px; }
  .footer__address { margin-top: 10px; }

  /* --- header becomes a burger menu --- */
  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--c-black);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { font-size: 16px; padding: 12px 14px; }
  .nav__link--cta { justify-content: center; }

  /* --- hero-ът се води по ширината на екрана --- */
  /* Двата слоя (небето и изрязаната сграда) са от една и съща снимка
     и трябва да са с еднакъв мащаб, за да съвпадат. Затова височината
     се връзва с ширината: при 135vw увеличението остава под 1.8×,
     вместо снимката да се раздува 3× на тесен екран. */
  .hero {
    height: min(135vw, 100svh);
    min-height: 420px;
  }
  .hero__title { top: max(17%, 92px); }
  .hero__welcome { font-size: clamp(15px, 4.2vw, 30px); letter-spacing: 0.28em; text-indent: 0.28em; }
  .hero__name   { font-size: clamp(46px, 14.5vw, 110px); margin-top: 6px; }
  .hero__owners { font-size: clamp(14px, 4vw, 30px); letter-spacing: 0.12em; text-indent: 0.12em; margin-top: 8px; white-space: normal; padding: 0 6vw; }

  .hero__building { height: 46.3%; }

  .hero__actions {
    top: auto;
    bottom: 5%;
    width: min(88%, 420px);
    gap: 12px;
  }
  .hero__buttons { flex-direction: column; gap: 12px; }
  .hero__buttons .btn { width: 100%; font-size: 16px; padding: 15px 20px; }
  .hero__scroll { font-size: 12px; letter-spacing: 0.22em; text-indent: 0.22em; }
}

/* Телефон, обърнат настрани: екранът е нисък, затова заглавието
   и бутоните се събират, за да не се застъпват. */
@media (max-width: 900px) and (max-height: 520px) {
  .hero { min-height: 320px; }
  .hero__title { top: 72px; }
  .hero__welcome { font-size: 12px; letter-spacing: 0.24em; text-indent: 0.24em; }
  .hero__name { font-size: clamp(30px, 12vh, 60px); margin-top: 2px; }
  .hero__owners { font-size: 13px; margin-top: 4px; }

  .hero__actions { bottom: 3%; width: min(92%, 540px); gap: 6px; }
  .hero__buttons { flex-direction: row; gap: 10px; padding-top: 0; }
  .hero__buttons .btn { font-size: 14px; padding: 11px 16px; }
  .hero__scroll { font-size: 10px; letter-spacing: 0.18em; text-indent: 0.18em; }
}

@media (max-width: 640px) {
  .intro { padding: 56px 20px 20px; }
  .intro__text { gap: 16px; }

  .contact { padding: 48px 20px 64px; }
  .contact__card { padding: 28px 22px; border-radius: 16px; }
  .field-row { flex-direction: column; }
  .contact__body { font-size: 16px; }

  .footer { padding: 40px 16px 40px; border-radius: 28px; }
  .footer__card { padding: 32px 24px; border-radius: 28px; min-height: 0; }
  .footer__top { flex-direction: column; gap: 32px; padding-bottom: 32px; }
  .footer__nav, .footer__contacts { flex: 1 1 auto; }
  .footer__logo { width: 84px; height: 57px; }
  .footer__brand-name { font-size: 20px; }
  .footer__brand-sub { font-size: 16px; }
  .footer__tagline { padding-left: 0; font-size: 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 28px; }
  .footer__legal { flex-wrap: wrap; gap: 14px; }
}

/* =========================================================
   MOTION PREFERENCES
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__title,
  .hero__sky,
  .hero__building { transform: none !important; }
  .btn:hover { transform: none; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
