/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'krona_oneregular';
  src: url('fonts/krona/kronaone-regular-webfont.woff2') format('woff2'),
       url('fonts/krona/kronaone-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'work_sansextralight';
  src: url('fonts/work-sans/work-sans.extralight-webfont.woff2') format('woff2'),
       url('fonts/work-sans/work-sans.extralight-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Work Sans', work_sansextralight, Helvetica, sans-serif;
  font-weight: 400;
}

.font-krona, .krona {
  font-family: krona_oneregular, sans-serif;
}

/* ============================================================
   SPLASH SCREEN
   ============================================================ */
#splash-screen {
  position: fixed;
  inset: 0;
  background-color: #080808;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  clip-path: circle(150vmax at 50% 50%);
  transition: clip-path 2s cubic-bezier(0.55, 0, 0.1, 1);
}

#splash-screen.closing {
  clip-path: circle(0px at 50% 50%);
}


#splash-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.055;
}

#splash-canvas {
  display: block;
  position: relative;
  z-index: 5;
}

.sc-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(247, 245, 240, 0.3);
  border-style: solid;
  animation: corner-fade 0.8s ease forwards;
  z-index: 20;
}

@keyframes corner-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sc-tl { top: 28px; left: 28px; border-width: 1px 0 0 1px; }
.sc-tr { top: 28px; right: 28px; border-width: 1px 1px 0 0; }
.sc-bl { bottom: 28px; left: 28px; border-width: 0 0 1px 1px; }
.sc-br { bottom: 28px; right: 28px; border-width: 0 1px 1px 0; }

/* ============================================================
   MARQUEE
   ============================================================ */
.Marquee-box {
  position: relative;
  display: inline-block;
  width: 80vw;
  height: 70vh;
}

.img-marq {
  height: 60vh !important;
}

.MyMarquee {
  width: 100%;
  height: 100%;
  font-size: 25px;
  vertical-align: middle;
  font-family: Arial, Helvetica, sans-serif;
}

.MyMarquee div {
  display: inline-block;
  vertical-align: middle;
}

.MyMarquee img {
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   PALETTE BAR (rendered in Nav, appears on every page)
   ============================================================ */
.palette-bar { display: flex; height: 5px; }
.pb1 { background: #F2C12E; flex: 2; }
.pb2 { background: #1E4D2B; flex: 2; }
.pb3 { background: #D4849A; flex: 1; }
.pb4 { background: #E4A374; flex: 1; }
.pb5 { background: #111;    flex: 0.5; }

/* ============================================================
   EDITORIAL STYLE - square corners on all Tailwind rounded-*
   ============================================================ */
.rounded,
.rounded-sm,
.rounded-md,
.rounded-lg,
.rounded-xl,
.rounded-2xl,
.rounded-3xl,
.rounded-full,
.rounded-t-xl, .rounded-b-xl,
.rounded-t-lg,  .rounded-b-lg {
  border-radius: 0 !important;
}

/* ============================================================
   SCROLL FADE-IN ANIMATION
   ============================================================ */
.enter-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.enter-fade.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 40;
  border: none;
  outline: none;
  background-color: #1a1a1a;
  color: #f7f5f0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 16px;
}

#scrollToTopBtn:hover {
  background-color: #edb90d;
  color: #1a1a1a;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
#whatsappBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background-color: #1a1a1a;
  color: #f7f5f0;
  border-radius: 50%;
  font-size: 1.4rem;
  text-decoration: none;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#whatsappBtn .bi {
  font-size: 1.4rem;
  margin: 0;
  color: inherit;
}

#whatsappBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
