/*
Theme Name: House Yo Body Minimal
Theme URI: https://example.com/
Author: C-Los
Description: A minimal one-page WordPress theme with a full-screen background image and social links in the top-right corner.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: house-yo-body
*/

:root {
  --hyb-icon-size: 46px;
  --hyb-gap: 10px;
  --hyb-edge: clamp(16px, 3vw, 36px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.hyb-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hyb-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,0) 35%);
}

.hyb-social {
  position: absolute;
  z-index: 2;
  top: var(--hyb-edge);
  right: var(--hyb-edge);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--hyb-gap);
  max-width: calc(100vw - (var(--hyb-edge) * 2));
}

.hyb-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--hyb-icon-size);
  height: var(--hyb-icon-size);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: #fff;
  text-decoration: none;
  line-height: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.hyb-social a img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hyb-social a:hover,
.hyb-social a:focus-visible {
  transform: translateY(-2px);
  background: rgba(0,0,0,.78);
  border-color: #fff;
  outline: none;
}

.hyb-social a:focus-visible {
  box-shadow: 0 0 0 3px rgba(255,255,255,.35);
}

.hyb-empty-note {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  max-width: min(90vw, 560px);
  margin: 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(0,0,0,.65);
  color: #fff;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 640px) {
  :root {
    --hyb-icon-size: 42px;
    --hyb-gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hyb-social a {
    transition: none;
  }
}
