/*                                                                                                                                                                                                                                   
   Theme Name:   u-maleho-stromu.cz                                                                                                                                                                                                    
   Theme URI:    https://www.u-maleho-stromu.cz                                                                                                                                                                                        
   Description:  GeneratePress child theme                                                                                                                                                                                             
   Author:       Jan Feřtek
   Template:     generatepress
   Version:      0.2
  */

/* Google Fonts – Ubuntu 400/700, latin-ext */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* === Barvy === */
:root {
  --green: #2E4A2E;
  --green-light: #3A6B3A;
  --green-pale: rgba(46, 74, 46, 0.12);
  --cream: #cde6cd;
}

html {
  min-height: 100%;
  background: radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.5), transparent 60%), linear-gradient(135deg, #D4E8E5 0%, #FAF0DC 40%, #F0D9C4 70%, #E8C4B0 100%);
  background-attachment: fixed;
}
/* body {background-color: #FFF5EB;} */

.main-navigation,
.site-main {                           
  background-color: white;
}

/* === Základy === */
body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

/* Odkazy – body prefix přebije GP inline `a { color: var(--accent) }` */
body a,
body a:visited {
  color: var(--green-light);
}

body a:hover,
body a:focus {
  color: var(--green);
}

/* === Hlavička === */
.site-header {
  margin-top: 2rem;
  min-height: clamp(12rem, 35vw, 25rem);
  background-image: url('/wp-content/themes/u-maleho-stromu.cz/images/leto_hra.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.main-title a,
.main-title a:hover,
.main-title a:visited,
.site-description {
  color: white;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.site-header .header-image {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
}

/* === Navigace ===
     GP inline CSS má selektory jako:
       .main-navigation .main-nav ul li a { color: var(--contrast) }
       .main-navigation .main-nav ul li[class*="current-menu-"] > a { color: var(--accent) }
     Prefix `body` zvýší specificitu o 1 element → přebije GP.
  */
body .main-navigation .main-nav ul li a {
  color: var(--green);
  font-size: 1.05rem;
}

body .main-navigation .main-nav ul li a:hover {
  color: var(--green-light);
}

body .main-navigation .main-nav ul li[class*="current-menu-"]>a {
  color: var(--green);
  font-weight: 700;
}

/* === Nadpisy === */
h1,
h2,
h3 {
  color: var(--green);
  font-weight: 700;
}

h2 {
  margin-top: 2.5rem;
}

/* === Footer === */
.site-footer {
  background-color: var(--green);
  color: white;
}

.site-footer a,
.site-footer a:visited {
  color: var(--cream);
}

.site-footer a:hover {
  color: white;
}

/* === Responzivita === */
@media (max-width: 768px) {
  .site-header {
    background-image: none;
    background-color: var(--green);
    min-height: auto;
  }

  .main-title a,
  .main-title a:hover,
  .main-title a:visited,
  .site-description {
    text-shadow: none;
  }
}

@media (max-width: 1024px) {
  .site-header {
    margin-top: 0;
  }
}