/*
Theme Name: Kobo Safaris Africa Coming Soon
Theme URI: https://kobosafarisafrica.mu/
Author: Kobo Safaris Africa
Description: Minimal full-screen coming soon page with video background.
Version: 1.1.0
Text Domain: kobo-coming-soon
*/

:root {
  --white: #fff;
  --accent: #da291c;
  --shadow: rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: #111;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding: 32px 20px;
}

.coming-soon__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.63));
  z-index: -2;
}

.coming-soon__content {
  width: min(760px, 100%);
  animation: reveal .9s ease both;
}

.brand {
  margin: 0 0 40px;
  text-align: center;
  text-shadow: 0 3px 22px var(--shadow);
}

.brand img {
  display: block;
  width: min(360px, 78vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 3px 18px rgba(0,0,0,.34));
}

.brand span {
  display: block;
  margin-top: 11px;
  color: var(--white);
  font-size: clamp(.72rem, 1.5vw, .92rem);
  font-weight: 700;
  letter-spacing: .48em;
  line-height: 1;
  text-indent: .48em;
}

.brand::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 24px auto 0;
  background: var(--accent);
}

.coming-soon h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0 2px 18px var(--shadow);
}

.coming-soon p {
  margin: 0 auto 28px;
  max-width: 600px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  text-shadow: 0 2px 14px var(--shadow);
}

.contact-link {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.8);
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: var(--white);
  color: #181818;
  border-color: var(--white);
}

.contact-link:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.coming-soon__footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon__content { animation: none; }
  .coming-soon__video { display: none; }
}
