/*
Theme Name: Zaeri Rugs Coming Soon
Theme URI: https://zaerirugs.com
Author: Zaeri Rugs
Author URI: https://zaerirugs.com
Description: Minimal full-screen coming-soon theme for Zaeri Rugs.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: zaeri-rugs-coming-soon
*/

:root {
  --zr-bg: #0d0b0a;
  --zr-text: #c7a77a;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--zr-bg);
  color: var(--zr-text);
  font-family: Georgia, 'Times New Roman', serif;
}

.zr-page {
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--zr-bg);
}

.zr-hero-image {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: zr-fade-in 1.8s ease-out forwards;
}

@keyframes zr-fade-in {
  to { opacity: 1; }
}

@media (max-width: 780px) {
  .zr-hero-image {
    object-fit: contain;
    background: var(--zr-bg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zr-hero-image { animation: none; opacity: 1; }
}
