/*
Theme Name: Dog kennel theme
Description: //stafbullterier.com
Version: 1.0
Author: Olga Fučíková / OFphoto
*/

/* =====================================================
   COLOR SYSTEM
===================================================== */
:root {
  /* BACKGROUND – teplý světlý písek */
  --bg: #F2E8DD;
  --bg-soft: #EDE2D6;

  /* SEKCE – jemně světlejší „papír“ */
  --bg-section: #FAF6F0;

  /* TEXT */
  --text: #2F2A26;
  --text-light: #5A514A;

  /* PRIMARY / ACCENT */
  --primary: #B09274;
  --primary-hover: #C0A487;

  --accent: #A58E76;
  --accent-hover: #B89C7A;

  /* BORDER */
  --border: #E2D2C3;
  --border-light: #EDE0D3;
  --divider: #E2D2C3;

  /* ANIMALS */
  --dog: #2F2A26;
  --bitch: #8A7D71;

  /* FOOTER – lehce oddělený, ale ne bílý šok */
  --footer: #F3E9DE;
  --footer-link: #A58E76;

  /* SHADOW */
  --shadow-soft: rgba(47, 42, 38, 0.06);
}

/* =====================================================
   BASE
===================================================== */

html,body{
margin:0;
width:100%;
height:100%;
background:var(--bg);
scroll-behavior:smooth;
}

body {
  font-family: sans-serif;
  color: var(--text);
  background: linear-gradient(
    360deg,
    var(--bg) 0%,
    var(--bg-soft) 100%
  );
}


#main{
position:relative;
width:100%;
min-height:100vh;
display:flex;
flex-direction:column;
font-family: Georgia,'Times New Roman',serif;
font-size:16px;
}

h1,h2,h3,h4,h5,h6,p,ul,ol{
margin:0;
padding:0;
}

ul{
list-style:none;
}

img{
max-width:100%;
height:auto;
transition:0.3s ease;
}

img:hover{
transform:translateY(-2px);
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

.postcontent,
.blockcontent{
font-family:'Palatino Linotype',Georgia,'Times New Roman',Times,serif;
}

.postcontent{
font-size:20px;
text-align:justify;
color:var(--text);
}

.blockcontent{
font-size:16px;
color:var(--text);
}

.blockcontent li{
line-height:1.4;
}

hr{
border:none;
height:1px;
background:var(--divider);
}


/* links */

.postcontent a,
.blockcontent a{
text-decoration:none;
color:var(--accent);
}

.postcontent a:hover,
.blockcontent a:hover{
color:var(--accent-hover);
}

.postcontent a.btn-primary,
.blockcontent a.btn-primary,
a.btn-primary {
  color:#EAF0F6;
}

.postcontent a.btn-primary:hover,
.blockcontent a.btn-primary:hover,
a.btn-primary:hover {
  color:#A0522D;
}

/* =====================================================
   HEADINGS
===================================================== */

/* H1 – hlavní sekce */
.postcontent h1,
.blockcontent h1{
  font-size:28px;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:0.03em;
}

/* H2 – podsekce */
.postcontent h2,
.blockcontent h2{
  font-size:22px;
  color:var(--primary-hover);
  text-transform:uppercase;
}

/* H3 – jemnější */
.postcontent h3,
.blockcontent h3{
  font-size:20px;
  color:var(--text-light);
  text-transform:uppercase;
}

/* H4 – běžný nadpis */
.postcontent h4,
.blockcontent h4{
  font-size:18px;
  color:var(--text);
}

/* pes */
.postcontent h5,
.blockcontent h5{
font-size:18px;
color:var(--dog);
text-transform: uppercase;
}

/* fena */
.postcontent h6,
.blockcontent h6{
font-size:18px;
color:var(--bitch);
text-transform: uppercase;
}

.postcontent h1,
.postcontent h2,
.postcontent h3,
.blockcontent h1,
.blockcontent h2,
.blockcontent h3,
.postcontent h4,
.postcontent h5,
.postcontent h6,
.blockcontent h4,
.blockcontent h5,
.blockcontent h6{
margin:10px 0 0;
font-weight:normal;
}


/* =====================================================
   LAYOUT
===================================================== */

.sheet{
margin-top:10px;
width:100%;
}

.layout-wrapper{
margin:10px;
}

.content-layout{
display:flex;
align-items:flex-start;
}

.layout-cell{
display:block;
box-sizing:border-box;
}

.layout-cell.content{
flex:1;
min-width:0;
margin-left:5px;	
}

.content-layout .sidebar1{
border-left:1px solid var(--border);
width:280px;
flex-shrink:0;
padding-left:20px;
}


/* =====================================================
   HEADER
===================================================== */

.header-left {
  display:flex;
  align-items:center;
  gap:10px;
}

.header-center img {
  width:20px;
  height:auto;
  cursor:pointer;
  opacity:0.8;
  transition:0.2s;
}

.header-left img:hover {
  opacity:1;
}

/* =====================================================
   HERO
===================================================== */

.hero {
  position:relative;

  display:flex;
  align-items:center;
  justify-content:space-between;

  min-height:520px;

  padding:0 60px 20px;

  overflow:hidden;
}

.hero-inner {
  position:relative;
  max-width:1400px;
  margin:0 auto;
}

.hero-text {
  position:relative;
  z-index:2;
  max-width:580px;
}

.hero h1 {
  font-family:'Playfair Display', serif;
  font-size:52px;
  margin-bottom:20px;
  text-align: left;
}
}

.hero h2 {
  font-size:18px;
  color:var(--text-light);
  margin-bottom:20px;
}

.hero p {
  font-size:18px;
  margin-bottom:30px;
}

.hero::after {
  content:"";
  position:absolute;
  right:8%;
  top:5%;

  width:420px;
  height:420px;

  background:url('/img/lightning.svg') no-repeat center;
  background-size:contain;

  opacity:0.04;
}

.hero-image {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end; /* 👉 víc doprava */
}

.hero-image img {
  flex-shrink: 0;
  max-height: 580px;
  width: auto;
  margin-top:-20px;
}

.hero-subtitle {
  color:var(--text-light);
  margin-bottom:15px;
}

.hero-motto {
  color:var(--accent);
  font-size:20px;
  margin-bottom:25px;
}

/* LOGO ZA TEXTEM */
.hero-logo-bg{
    position:absolute;

    left:-3%;
    top:52%;

    transform:translateY(-50%);

    width:620px;

    z-index:1;

    pointer-events:none;

    opacity:0.06;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0.35) 78%,
        rgba(0,0,0,0) 100%
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0.35) 78%,
        rgba(0,0,0,0) 100%
    );
}
.hero-logo-bg img{
    width:100%;
    display:block;

    mix-blend-mode:multiply;

    filter:
       contrast(85%);
}

/* TEXT NAD LOGEM */
.hero-content{
    position:relative;
    z-index:2;
}

/* PSI NAD VŠÍM */
.hero-dogs{
    position:relative;
    z-index:2;
}
/* =====================================================
   BUTTON
===================================================== */

.btn-primary {
  display:inline-block;
  padding:8px 10px 22px;

  background:var(--primary);
  color:#EAF0F6;

  text-decoration:none;

  line-height:1; 
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;

  border-radius:4px;
  border:1px solid transparent;

  transition:0.25s ease;
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav{
display:flex;
justify-content:flex-end;
border-bottom: 1px solid var(--border-light);
padding-bottom: 10px;
padding: 0 60px;
}


ul.hmenu{
display:flex;
gap:10px;
flex-wrap:wrap;
margin:10px 0;
order: 2;	
}

ul.hmenu > li > a{
padding:0 15px;
color:var(--primary);
text-transform:uppercase;
font-size:18px;
text-decoration:none;
}

ul.hmenu > li:hover > a{
color:var(--text-light);
}

.hmenu-extra1{
display:flex;
gap:10px;
flex-wrap:wrap;
margin:10px 10px;
 margin-right:auto !important;
}

.menu-toggle{

display:none;

flex-direction:column;
justify-content:center;
align-items:center;

width:44px;
height:44px;

cursor:pointer;

z-index:999;
}

.menu-toggle span{

display:block;

width:26px;
height:2px;

background:var(--primary);

margin:3px 0;

transition:.3s ease;
}

/* =====================================================
   FLEX SECTIONS
===================================================== */

.flex-container{
display:flex;
gap:36px;
flex-wrap:wrap;
padding-top: 30px;
padding-bottom: 20px;
}

.flex-items{
flex:1 1 calc(20% - 10px);
text-align:center;
padding:20px;
}

.flex-items:not(:last-child){
  border-right:1px solid rgba(0,0,0,0.06);
}
.flex-items h3{
  margin-top:18px;
  margin-bottom:14px;
  letter-spacing:0.03em;
}

.flex-items p{
  max-width:400px;
  margin:0 auto;
  line-height:1.8;
}

/* =====================================================
   SIDEBAR
===================================================== */

.block{
margin:30px 7px 0;
}

.blockcontent a{
color:var(--accent);
text-transform:uppercase;
}

.blockcontent a:hover{
color:var(--text-light);
}


/* =====================================================
   POSTS
===================================================== */

.post{
padding:10px;
margin:10px;
display:flex;
flex-direction:column;
}

.postcontent li{
margin:5px 0;
padding-left:12px;
}
/* =====================================================
   GLOBAL CONTAINER SYSTEM
===================================================== */

:root{
  --container-width: 1400px;
  --container-padding: 30px;
}

.container{
  width:min(var(--container-width), 100% - calc(var(--container-padding) * 2));
  margin-inline:auto;
}

/* =====================================================
   GLOBAL SECTION STYLE
===================================================== */

.section,
.standard-section,
.about,
.breed-section,
.puppies-faq{
  position:relative;
  }

/* =====================================================
   DEFAULT CARD SECTION
===================================================== */

.section,
.standard-section,
.puppies-faq{
 margin-top: -80px;
  padding:80px 60px;

  background:#F5F0E9;

  background:linear-gradient(
    90deg,
    var(--bg-section) 0%,
    var(--bg-section) 45%,
    rgba(0,0,0,0) 100%
  );

  border-radius:6px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.04);
}

/* =====================================================
   INNER LAYOUT
===================================================== */

.section-inner,
.standard-inner,
.about-inner,
.breed-inner{

  display:flex;
  align-items:center;
  justify-content:space-between;
   gap:40px;
}

/* =====================================================
   TEXT BLOCKS
===================================================== */

.section-text,
.standard-text,
.about-text,
.breed-text{

  line-height:1.7;
  z-index:2;
}

.section-text{
  max-width:680px;
}

.standard-text{
  max-width:100%;
}

.about-text{
  max-width:420px;
}

.breed-text{
  max-width:540px;
}

/* =====================================================
   HEADINGS
===================================================== */

.section h2,
.standard-section h2,
.about h2,
.breed-section h2{

  font-size:24px;
  color:var(--primary);

  margin-bottom:10px;
}

.section h2,
.standard-section h2{
  margin-top:20px;
}

.breed-section h2{
  color:#fff;
  font-size:30px;
  line-height:1.1;
  margin-bottom:30px;
}

/* =====================================================
   LINES
===================================================== */

.section-line,
.standard-line,
.about-line{

  width:40px;
  height:2px;

  background:var(--accent);

  margin-bottom:20px;
}

/* =====================================================
   PARAGRAPHS
===================================================== */

.section-text p,
.standard-text p,
.about-text p{

  margin-bottom:15px;
  line-height:1.6;

  color:var(--text);
  font-size:18px;
}

.breed-section p{

  color:rgba(255,255,255,0.78);

  line-height:1.8;
  font-size:17px;

  margin-bottom:20px;
}

/* =====================================================
   LIGHT FLEX
===================================================== */

.section-light,
.standard-light{

  display:flex;
  align-items:flex-start;

  gap:60px;
}

/* =====================================================
   IMAGES
===================================================== */

.section-image,
.standard-image,
.about-image,
.breed-image{

  position:relative;
  flex:1;

  display:flex;
  justify-content:center;
}

.section-image img,
.standard-image img{

  width:100%;
  max-width:420px;

  height:auto;

  border-radius:6px;
  object-fit:cover;
}

.about-image img{

  max-height:115%;
  width:auto;

  object-fit:contain;
}

.breed-image img{

  max-height:540px;

  filter:drop-shadow(
    0 18px 30px rgba(0,0,0,0.22)
  );
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about{
  padding:80px 60px;
  background:linear-gradient(
    90deg,
    var(--bg-section) 0%,
    var(--bg-section) 55%,
    rgba(0,0,0,0) 100%
  );
}

/* =====================================================
   BREED SECTION
===================================================== */

.breed-section{

  background:#243447;
  padding:80px 60px;
}

.breed-label{

  display:block;

  color:#C9A77B;

  text-transform:uppercase;
  letter-spacing:0.12em;

  font-size:13px;

  margin-bottom:20px;
}

.breed-link{

  display:inline-flex;
  align-items:center;

  margin-top:10px;

  color:#C9A77B;

  text-decoration:none;
  text-transform:uppercase;

  letter-spacing:0.08em;
  font-size:13px;

  transition:0.25s ease;
}

.breed-link:hover{

  color:#fff;
  transform:translateX(4px);
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-secondary{

  display:inline-block;

  margin-top:15px;
  padding:8px 18px;

  border:1px solid var(--primary);

  color:var(--primary);
  background:transparent;

  font-size:13px;

  text-decoration:none;
  border-radius:4px;

  transition:0.25s ease;
}

.btn-secondary:hover{

  background:var(--primary);
  color:#fff;
}

/* =====================================================
   FAQ
===================================================== */

.puppies-faq{
  padding:40px;
margin-top:10px;
}

.faq-wrapper{
  max-width:1100px;
  margin:auto;
}

.faq-wrapper details{

  border-bottom:
    1px solid #e5ddd2;

  padding:25px 0;
}

.faq-wrapper summary{

  cursor:pointer;

  font-size:20px;
  font-weight:600;
}

.faq-wrapper p{

  margin-top:20px;
  line-height:1.8;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

  .section,
  .standard-section,
  .about,
  .breed-section,
  .puppies-faq{

    padding:60px 25px;
  }

  .section-inner,
  .standard-inner,
  .about-inner,
  .breed-inner{

    flex-direction:column;
    text-align:center;
  }

  .section-text,
  .standard-text,
  .about-text,
  .breed-text{

    max-width:100%;
  }

  .section-light,
  .standard-light{

    flex-direction:column;
    gap:40px;
  }

  .breed-image img{
    max-height:420px;
  }

  .section h2,
  .standard-section h2,
  .about h2,
  .breed-section h2{

    font-size:34px;
  }

  .section-text p,
  .standard-text p,
  .about-text p,
  .breed-section p{

    font-size:16px;
  }
}

/* =====================================================
   FOOTER
===================================================== */
.footer{
  color:#EDE7E0;
  padding:60px 10px 30px;
  margin-top:40px;
}

/* GRID */

.footer-inner{

  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:
    22% 56% 22%;

  gap:20px;

  align-items:center;
}


/* TEXT */

.footer p{

  line-height:1.8;
  margin-bottom:10px;
}

/* COLUMNS */

.footer-column{
  width:100%;
}

.footer-column-left{
  text-align:left;
}

.footer-column-center{
  text-align:center;
}

.footer-column-right{
  text-align:center;
}

/* CENTER IMAGE */

.footer-column-center img{
  max-width:100%;
  max-height:320px;
  object-fit:contain;
  filter:drop-shadow(
    0 10px 25px rgba(0,0,0,.25)
  );
}

/* RIGHT COLUMN LOGOS */

.footer-column-right img{
  max-width:180px;
  margin-bottom:20px;
  opacity:1;
  transition:.25s ease;
}

.footer-column-right img:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* COPYRIGHT */

.footer-copy{
  padding-top:20px;
  text-align:center;
  font-size:14px;
  opacity:.85;
}

/* CENTER IMG */
.footer-dogs img:hover{
transform:translateY(-3px);
transition:0.3s;
}

.footer-dogs img{
    width:120%;
    max-width:900px;
height:auto;
display:block;
opacity:1;
filter: drop-shadow(0 12px 10px rgba(0,0,0,0.5));
}

.footer-dogs{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.footer-dogs{
max-width:1400px;
margin:-20px auto -60px;

}

.site-footer .footer-dogs img{
display:block;
margin:auto;
}

/* MOBILE */

@media(max-width:900px){

  .footer-inner{

    grid-template-columns:1fr;

    text-align:center;
  }

  .footer-column-left,
  .footer-column-right{

    text-align:center;
  }

  .footer{

    padding:60px 25px 25px;
  }

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1024px){

.content-layout{
flex-direction:column;
}

.flex-items{
flex:0 0 calc(50% - 10px);
}

}

@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
}

.flex-items{
flex:0 0 100%;
border:none;
}

ul.hmenu{
flex-direction:column;
display:none;
}

.nav.active ul.hmenu{
display:flex;
}

}

/* =====================
 RESPONSIVE
===================== */
@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
}

.flex-items{
flex:0 0 100%;
border:none;
}

/* NAV */

.nav{
position:relative;
padding:20px;
}

/* HAMBURGER */

.menu-toggle{
display:flex;
margin-left:auto;
}

/* MENU */

ul.hmenu{

display:none;

position:absolute;

top:100%;
left:0;

width:100%;

background:#F7F3EE;

padding:20px;

flex-direction:column;
gap:20px;

box-shadow:
0 20px 40px rgba(0,0,0,0.08);

z-index:998;
}

/* ACTIVE */

.nav.active ul.hmenu{
display:flex;
}

}


/* WordPress post classes */

.sticky {}
.bypostauthor {}

/* Caption */

.wp-caption {
border:1px solid #ddd;
background:#f3f3f3;
padding-top:4px;
margin:10px;
text-align:center;
}

.wp-caption img {
margin:0;
border:0;
}

.wp-caption p.wp-caption-text {
font-size:11px;
line-height:17px;
padding:0 4px 5px;
margin:0;
}

/* Gallery */

.gallery {
margin:0 auto 18px;
clear:both;
overflow:hidden;
letter-spacing:normal;
}

.gallery .gallery-item {
float:left;
margin-top:0;
text-align:center;
width:33%;
}

.gallery img {
border:10px solid #f1f1f1;
}

.gallery .gallery-caption {
color:#888;
font-size:12px;
margin:0 0 12px;
}

.gallery br + br {
display:none;
}

/* Featured image */

img.wp-post-image {
margin:0 5px 5px 0 !important;
}

/* Utility */

.hidden {
display:none;
}

/* Content stacking */

.content {
position:relative;
z-index:1;
}

/* Widget title */

.widget-title {
padding-left:24px;
margin-bottom:0;
}

.footer .widget-title {
font-size:1.2em;
padding:0;
}

.footer .widget,
.footer .widget a {
text-align:left;
}

/* Screen reader accessibility */

.screen-reader-text {
clip:rect(1px,1px,1px,1px);
position:absolute;
}

.screen-reader-text:focus {
background:#f1f1f1;
border-radius:3px;
box-shadow:0 0 2px 2px rgba(0,0,0,.6);
clip:auto;
color:#21759b;
display:block;
font-size:14px;
font-weight:bold;
height:auto;
line-height:normal;
padding:15px 23px 14px;
position:absolute;
left:5px;
top:5px;
text-decoration:none;
width:auto;
z-index:100000;
}

/* Above WP toolbar */
}

/* Begin Additional CSS Styles */
blockheader .t, .vmenublockheader .t {white-space: nowrap;}
/* End Additional CSS Styles */