/*
Theme Name: ROH Blocksy Child
Theme URI: https://hodowlashihtzu.com
Description: Child theme for Blocksy – ultra premium (ROH) styling, cards, left nav, royal gold accents.
Author: ROH Studio AI
Template: blocksy
Version: 1.0.0
Text Domain: roh-blocksy-child
*/

/* ------------------------------
   ROH Premium System
   Paste-ready: this file is loaded automatically by the child theme.
--------------------------------*/

:root{
  --roh-bg: #070A12;
  --roh-surface: #0B1020;
  --roh-surface-2: #0E1630;
  --roh-text: #EDEFF6;
  --roh-text-2: #B9C0D4;
  --roh-gold: #C9A45B;
  --roh-gold-2: #E7D3A1;
  --roh-border: rgba(201,164,91,.55);
  --roh-shadow: 0 14px 40px rgba(0,0,0,.45);
  --roh-radius: 20px;
}

/* Global base */
html{scroll-behavior:smooth;}
body{
  background: radial-gradient(1200px 800px at 70% 30%, rgba(25,56,120,.22) 0%, rgba(7,10,18,0) 55%),
              radial-gradient(900px 650px at 40% 75%, rgba(201,164,91,.10) 0%, rgba(7,10,18,0) 55%),
              var(--roh-bg);
  color: var(--roh-text);
}

/* Typography – heading “royal”, body “clean” */
body, .ct-container, .entry-content{font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}
h1,h2,h3,h4,h5,h6{font-family: Cinzel, ui-serif, Georgia, serif; letter-spacing: .6px;}

/* Links */
a{color: var(--roh-gold-2); text-decoration:none;}
a:hover{color: var(--roh-gold);}

/* Buttons (Blocksy + Gutenberg) */
.wp-block-button__link,
.ct-button,
button,
input[type="submit"]{
  border-radius: 999px;
  border: 1px solid var(--roh-border);
  background: linear-gradient(180deg, rgba(201,164,91,.22), rgba(201,164,91,.08));
  color: var(--roh-text);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.wp-block-button__link:hover,
.ct-button:hover,
button:hover,
input[type="submit"]:hover{
  transform: translateY(-1px);
  border-color: rgba(231,211,161,.85);
}

/* Section wrapper helpers */
.roh-section{
  background: linear-gradient(180deg, rgba(11,16,32,.82), rgba(11,16,32,.62));
  border: 1px solid rgba(201,164,91,.18);
  border-radius: var(--roh-radius);
  box-shadow: var(--roh-shadow);
  padding: clamp(18px, 2.4vw, 34px);
}

/* --------------------------------
   ROH Layout: Left nav + main grid
----------------------------------*/

/* Use on a parent container Group/Section */
.roh-layout{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

/* Left panel */
.roh-side{
  position: sticky;
  top: 18px;
  border-radius: var(--roh-radius);
  background: linear-gradient(180deg, rgba(11,16,32,.72), rgba(7,10,18,.55));
  border: 1px solid rgba(201,164,91,.22);
  box-shadow: var(--roh-shadow);
  padding: 18px;
}

.roh-brand{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom: 18px;
}
.roh-brand__title{
  font-family: Cinzel, ui-serif, Georgia, serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .8px;
}
.roh-brand__subtitle{
  font-size: 12px;
  color: var(--roh-text-2);
}

/* Side menu (works with a standard WP menu block/list) */
.roh-side .wp-block-navigation__container,
.roh-side ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.roh-side a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(201,164,91,.12);
  background: rgba(14,22,48,.32);
  color: var(--roh-text);
}
.roh-side a:hover{
  border-color: rgba(231,211,161,.45);
  background: rgba(14,22,48,.48);
}

/* Main */
.roh-main{
  min-width: 0;
}

/* Responsive */
@media (max-width: 980px){
  .roh-layout{grid-template-columns: 1fr;}
  .roh-side{position: relative; top: auto;}
}

/* ------------------------------
   ROH Cards (kafelki premium)
--------------------------------*/

.roh-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

@media (max-width: 720px){
  .roh-grid{grid-template-columns: 1fr;}
}

.roh-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--roh-radius);
  border: 2px solid rgba(201,164,91,.55);
  background: linear-gradient(180deg, rgba(14,22,48,.78), rgba(11,16,32,.72));
  box-shadow: 0 18px 46px rgba(0,0,0,.55);
  transform: translateZ(0);
}

.roh-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(600px 220px at 30% 0%, rgba(231,211,161,.18), rgba(0,0,0,0) 55%);
  opacity:.85;
}

.roh-card:hover{
  transform: translateY(-2px);
  border-color: rgba(231,211,161,.85);
}

.roh-card__thumb{
  aspect-ratio: 16/11;
  width: 100%;
  object-fit: cover;
  display:block;
}

.roh-card__body{
  padding: 14px 16px 18px;
  position: relative;
}

.roh-card__label{
  margin: 0;
  font-family: Cinzel, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .9px;
  text-transform: uppercase;
  text-align: center;
}

.roh-card__sub{
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--roh-text-2);
  text-align:center;
}

/* Optional: “big” tile (last tile full width) */
.roh-card--wide{grid-column: 1 / -1;}

/* Utility: center container on page */
.roh-wrap{max-width: 1200px; margin: 0 auto;}
