/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');

/* Alternativní varianty pro import (použijte jednu z těchto možností): */
/* Varianta 2: Open Sans + Playfair Display */
 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap'); 

/* Varianta 3: Roboto + Crimson Text */
 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Crimson+Text:wght@400;600;700&display=swap'); 

/* Import Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

/* Color Variables */
:root {
    --text-primary: #231F20;
    --box-bg: #9d1b59;
    --bg-dark: #231F20;
    --pink: #EC9BB6;
    --heading-primary: #EC9BB6;  /* H1-H2 */
    --heading-secondary: #9d1b59; /* H3-H6 */
    --hover: #9d1b59; /* :hover */
    --brand-primary: #6f4e7c;
    --background-light: rgba(255, 255, 255, 0.95);
    --border-light: #e9ecef;
    --text-muted: #495057;
    --button: #9d1b59;
    --button-hover: #222;
    --header-font: "Alex Brush", cursive;
    --open-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --serif: 'Lora', Georgia, 'Times New Roman', serif;
}


#c-bns button:first-child, #s-bns button:first-child {
    background: var(--box-bg) !important;
    color: white !important;
    border: 2px solid var(--box-bg) !important;
}
#c-bns button:first-child:hover, #s-bns button:first-child:hover {
    background: white !important;
    color: var(--box-bg) !important;
}

#cc_div #cm {
    display: block !important;
    background: rgba(250, 250, 250, 0.9);
}




/** BS UPRAVY **/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }
}



/* Typography - Základní nastavení */
body, p, span, div, a, li, td, th, input, textarea, button {
    font-family: var(--open-sans);
    color: var(--text-primary);
/*    font-size: 16px; */
}

/* Alternativní font families (odkomentujte podle potřeby): */
 /*
body, p, span, div, a, li, td, th, input, textarea, button {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*/




/* Nadpisy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
   font-family: "Alex Brush", cursive;
}

h4 {
	font-family: var(--sans-serif);
	font-weight: bold; 
	font-size: 1.4rem;
	margin-bottom: 20px;
}


.logo { font-family: 'Great Vibes', cursive; }

/* Allura */
.logo { font-family: 'Allura', cursive; }

/* Alex Brush */
.logo { font-family: 'Alex Brush', cursive; }

/* Sacramento */
.logo { font-family: 'Sacramento', cursive; }

h2 a {
	text-decoration: none;
	font-family: var(--serif);
	color: var(--heading-primary);
}

/* Alternativní font families pro nadpisy (odkomentujte podle potřeby): */
/*
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
}
*/

/* Barvy nadpisů */
h1, h2 {
    color: var(--heading-primary);
        font-weight: 500;
    letter-spacing: 0.01em;
    font-size: 3.8rem;
}

h2, h3, h4, h5, h6 {
    color: var(--heading-secondary);
}

/* Existující CSS */
body {
    padding-top: 200px;
}
h2, p {
	margin-bottom: 1.2rem;
}


.btn {
    background-color: white;
    color: var(--heading-secondary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 0.05em;
    min-width: 200px;
}

.btn.btn-primary {
    background-color: var(--button);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.btn.btn-primary:hover {
	background-color: var(--button-hover);
}

.btn.btn-xs {
	font-size: 0.8em;
	padding: 0.5rem 1.5rem;
	margin-top: 0.1rem;
}


/* Hero tlačítka */
.btn.btn-secondary {
	font-family: var(--serif);
    background-color: var(--box-bg);
    color: white;
    border: none;
    padding: .7rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    font-size: 1.2rem;
    text-align: center;
}

.btn.btn-secondary:hover {
    background-color: var(--button-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 27, 89, 0.3);
    text-decoration: none;
}

/* Responzivní úpravy pro tlačítka */
@media (max-width: 768px) {
    .btn.btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    

}





.nav-link.social-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    
    background-color: var(--button); 
    color: white;
    text-decoration: none;
    transition: all 0.6s ease;
    padding: 0 !important;
    margin: 0 5px !important;
    padding-left: 2px !important;
}

.nav-link.social-icons:hover {
 background-color: var(--button-hover); 
}

.nav-link.social-icons i {
    font-size: 30px;
    color: white;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: #fff;
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
    padding: 1rem 0 0 0; /* Výchozí padding */
    padding-top: 2rem;
}



/* Logo styling */
.navbar-brand {
	max-width: 110px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-primary) !important;
    text-decoration: none;
    margin: 0 !important;
        transition: all .6s ease;
}

.desktop-menu-grid {
	/*display: grid !important; */
	grid-template-columns: 1fr 160px 1fr; 
	   grid-template-rows: 80px; 
	   transition: all 0.6s ease;
}

.desktop-menu-col {
/*	padding-top: 60px;*/
	transition: all 0.6s ease;
}

.navbar.navbar-scrolled {
    padding: 0.5rem 0; /* Menší padding po scrollu */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-scrolled .desktop-menu-col {
	/*padding-top: 20px;*/
	    transition: all 0.6s ease;
}



.navbar.navbar-scrolled .desktop-menu-grid
 {
  
	grid-template-rows: 60px;
	transition: all 0.6s ease;
}


.modal-title {
 
    font-size: 1.8rem;
 
}
.img-fluid {
    max-width: 100%;
    height: auto;
    max-height: 100%;
}


.navbar.navbar-scrolled .navbar-brand {
    height: 100%;
}

/* Menu položky */
.nav-link {
	letter-spacing: 0.1em;
    padding: 0.75rem 1.3rem !important;
    transition: color 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--serif);
        
}

.nav-link:hover, .nav-link.active {
    color: var(--hover) !important;
}

/* Hamburger menu animace
.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
}


.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 16px;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-muted);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}


.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
*/

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1050;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-icon {
  width: 30px;
  height: 24px;
  position: relative;
  margin: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.navbar-toggler .hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--heading-secondary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.navbar-toggler .hamburger-icon span:nth-child(1) {
  top: 0px;
}

.navbar-toggler .hamburger-icon span:nth-child(2),
.navbar-toggler .hamburger-icon span:nth-child(3) {
  top: 10px;
}

.navbar-toggler .hamburger-icon span:nth-child(4) {
  top: 20px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}


/* Sociální ikony */
/*.social-icons .nav-link {
    padding: 0.5rem !important;
    font-size: 1.2rem;
}

.social-icons .nav-link:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}*/



/* Overlap Section - univerzální komponenta pro překrývající karty */
.overlap-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 580px;
    /*overflow: hidden;*/
    margin: 4rem 0;
    
}

.overlap-section.sm {
    min-height: 480px;
}

/* Pozadí s obrázkem */
.overlap-background {
    position: absolute;
    top: 0;
    width: 75%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 10px 0 0 10px;
}

/* Text karta */
.overlap-card {
    position: relative;
    background: none;
    padding: 3.5rem 3rem;
    max-width: 520px;
    min-height: 490px;
    z-index: 10;
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
    border-radius: 10px;
    transition: all 0.3s ease;
}

 .overlap-hero {
 	min-height: 500px;
 }


 .overlap-hero .overlap-card {
	max-width: unset;
	min-width: 50%;
	max-width: 50%;
	min-height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;	
}

.overlap-content {
	max-width: 75%;
}

.overlap-hero .overlap-background {
	width: 65%;
}
.overlap-hero .subtitle {
    color: white;
    font-size: 26px;
    margin-top: 30px;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    border-top: 2px solid white;
    padding-top: 20px;
    display: inline-block;
 	
}


.overlap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../../images/smouhy.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
       background-size: 100% 100%;
    z-index: -1;
    border-radius: 10px; /* aby respektovalo zaoblení rodiče */
}
.overlap-card.pink {
	background: #EC9BB6;
}
.overlap-card.green {
	background: #086D65;
}
.big {
	font-size: 2rem;
	font-weight: bold;
}

.bigger-text p{
	font-size: 1.1rem;
	line-height: 2rem;
	}

.overlap-section.sm .overlap-card {
	min-height: unset;
}


.lupinek-zeleny-vlevo {
	background-image: url(../../images/lupinek-zeleny-zleva.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    position: absolute;
    left: -80px;
    top: -50px;
    width: 180px;
    height: 100px;
}
.lupinek-fialovy-vpravo {
	background-image: url(../../images/lupinek-fialovy-zprava.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    position: absolute;
    right: -80px;
    top: -50px;
    width: 180px;
    height: 100px;
}
.lupinek-zeleny-vpravo {
	background-image: url(../../images/lupinek-zeleny-zprava.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    position: absolute;
    right: -80px;
    top: -50px;
    width: 180px;
    height: 100px;
}

/* Text vlevo, obrázek vpravo */
.overlap-section-left .overlap-background {
    right: 0;
    background-position: center left;
}

.overlap-section-left .overlap-card {
   
    margin-right: auto;
}

/* Text vpravo, obrázek vlevo */
.overlap-section-right .overlap-background {
    left: 0;
    background-position: center right;
}

.overlap-section-right .overlap-card {
    margin-left: auto;
    margin-right: 0;
}

/* Styling obsahu karty */
.overlap-card h2 {
    color: white !important;
    font-weight: 500;
    margin-bottom: 0.7rem;
    line-height: 1;

    
}

.overlap-card h2:last-of-type {
    margin-bottom: 1.5rem;
}

.overlap-card p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}


.overlap-card .btn {
    background-color: var(--button);
    color: white;
}

.overlap-card .btn:hover {
    background-color: var(--button-hover);
        background-color: white;
    color: var(--button);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mg-left {
	margin-left: 80px ;
}
.mg-right {
	margin-left: 80px ;
}
.pd-left {
	padding-left: 80px ;
}
.pd-right {
	padding-right: 80px ;
}
.pd-left-sm {
	padding-left: 40px ;
}
.pd-right-sm {
	padding-right: 40px ;
}


/* Responsivní design - tablet */
@media (max-width: 992px) {
h2, p {
    margin-bottom: 1.2rem;
}
	.pd-left{
		padding-left: 10px;
	}
	
	.pd-right {
		padding-right: 10px ;
	}
	
	.pd-left-sm {
		padding-left: 10px ;
	}
	.pd-right-sm {
		padding-right: 10px ;
	}	
	
	
	
	.navbar-collapse {
		height: 100vh;
	}
	
    .overlap-section {
        min-height: 450px;
        margin: 3rem 0;
    }
    
    .overlap-background {
        width: 70%;
    }
    
    .overlap-card {
        max-width: 450px;
        padding: 3rem 2.5rem;
    }
    
    .overlap-card h2 {
                font-size: 2.6rem;
    }
}

/* Responsivní design - mobil */
@media (max-width: 768px) {
    .overlap-section {
        min-height: auto;
        margin: 2rem 0;
        flex-direction: column;
    }
    
       .overlap-hero .overlap-background, .overlap-background {
        position: static;
        width: 100%;
        height: 280px;
        border-radius: 10px 10px 0 0;
    }
    
   .overlap-hero  .overlap-card,  .overlap-card {
    	min-height: unset;
        max-width: 100%;
        min-width: 100%;
        margin: -80px 1rem 0 !important;
        padding: 2.5rem 2rem;
        border-radius: 10px;
      
    }
    
    .overlap-card h2 {
     /*   font-size: 1.2rem;
        margin-bottom: 0.4rem;*/
    }
    
    .overlap-card h2:last-of-type {
        margin-bottom: 1.2rem;
    }
    
    .overlap-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .overlap-card .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Malé mobily */
@media (max-width: 576px) {
    .overlap-background {
        height: 250px;
    }
    
    .overlap-card {
        margin: -60px 0.5rem 0 !important;
        padding: 2rem 1.5rem;
    }
    
    .overlap-card h2 {
     /*   font-size: 1.1rem;*/
    }
}

/* Hover efekty pro desktop */
@media (min-width: 769px) {
    .overlap-section:hover .overlap-card {
        transform: translateX(15px);
    }
    
    .overlap-section-right:hover .overlap-card {
        transform: translateX(-15px);
    }
    
    .overlap-section:hover .overlap-background {
        transform: scale(1.02);
    }
}

@media (max-width: 992px) {
.lupinek-zeleny-vlevo {
left: 0px;
        top: -60px;
        width: 100px;
        height: 60px;
}
.lupinek-fialovy-vpravo {
        right: 0;
        top: -60px;
        width: 100px;
        height: 60px;
}
.lupinek-zeleny-vpravo {
    right: 0px;
    top: -60px;
    width: 100px;
    height: 60px;
}
}



/* ============================================
   MOBILNÍ NAVBAR - LOGO UPROSTŘED
   ============================================ */

/* Body padding - menší pro mobil */
body {
    padding-top: 120px; /* Menší než původních 200px pro mobil */
}

@media (min-width: 992px) {
    body {
        padding-top: 80px; /* Desktop zůstává stejný */
    }
}

/* Navbar - menší padding pro mobil */
.navbar {
    padding: 0.8rem 0; /* Menší padding pro mobil */
}

@media (min-width: 992px) {
    .navbar {
        padding: 1rem 0 0 0; /* Desktop zůstává stejný */
        padding-top: 2rem;
    }
}

/* Mobilní navbar layout */
.mobile-navbar-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px; /* Fixní výška pro mobilní navbar */
}

.mobile-navbar-left {
    flex: 1; /* Levý prostor - prázdný ale zabírá místo */
}

.mobile-navbar-center {
    flex: 0 0 auto; /* Střed - nepružný, jen kolik potřebuje */
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-navbar-right {
    flex: 1; /* Pravý prostor pro hamburger */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mobile-nav {
	padding-top: 60px;
	text-align: center;
}

/* Kulatý div pro mobilní logo */
.mobile-logo-circle {
margin-top: 0 !important; 
    width: 160px;
    /* height: 120px; */
	max-width: 160px;
    background-color: var(--background-light);
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 8px;
}

.mobile-logo-circle:hover {
    transform: scale(1.05);
    border-color: var(--hover);
    box-shadow: 0 4px 15px rgba(157, 27, 89, 0.2);
}

.mobile-logo-circle img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Hamburger pro mobilní layout - zůstává stejný */
.mobile-navbar-right .navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1050;
    outline: none !important;
    box-shadow: none !important;
}

/* Scrolled navbar - menší logo */
.navbar.navbar-scrolled .mobile-logo-circle {

    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    padding: 0.4rem 0; /* Ještě menší při scrollu */
}

.navbar.navbar-scrolled .mobile-navbar-layout {
  /*  height: 60px; /* Menší výška při scrollu */
}





/* Zajistíme, že starý mobilní brand se nezobrazí */
.navbar-brand.d-lg-none:not(.mobile-logo-circle) {
    display: none !important;
}

/* CSS pro galerii */
/* Fotogalerie - jednoduchy grid */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 0;
	width: 100%;
	height: 1200px;
	margin: 3rem auto 0;
}

.gallery-item {
	display: block;
	overflow: hidden;
	border-radius: 0;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.02);
	z-index: 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    color: white;
}

/* Responsivni */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 1fr);
		height: 450px;
	}
}

@media (max-width: 480px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 200px);
		height: auto;
	}
}



/* Footer styly */
.bg-primary {
	background-color: var(--box-bg) !important;
}
.bg-dark {
	background-color: var(--bg-dark) !important;
}

.footer-logo {
	max-width: 300px;
}

footer h5 {
    font-family: var(--open-sans);
    color: white;
    letter-spacing: 0.1rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p, footer a {
	color: white;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: .9rem;
	font-weight: 100;
}

.footer-copyright p, .footer-copyright a	 {
	color: #444;
	text-decoration: none;
}

.social-links {
	margin-top: 1.5rem;
}

.social-links a {
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: rgba(255, 255, 255, 0.7) !important;
}

.partner-item {
	margin-bottom: 1rem;
	
	 letter-spacing: 0.1rem;
}

.partner-item strong {
	color: white;
}

.partner-item a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.partner-item a:hover {
	color: white !important;
}

/* Responsivní úpravy */
@media (max-width: 992px) {
	.container.bg-primary {
		text-align: center;
	}
	
	.footer-logo {
		margin-bottom: 2rem;
padding-right: 10px;
	}
	
	.partner-links {
		margin-top: 2rem;
	}
}


footer .social-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--box-bg) !important;
    background-color: white; 
    color: white;
    text-decoration: none;
    transition: all 0.6s ease;
    padding: 0 !important;
    margin: 0 5px !important;
    padding-left: 2px !important;
}

footer .social-icons:hover {
 background-color: var(--button-hover); 
}
footer .social-icons:hover i {
 color: white !important; 
}

footer .social-icons i {
	 transition: all 0.6s ease;
    font-size: 30px;
    color: var(--box-bg) !important;
}

/* ============================================
   HERO SEKCE - SVATEBNÍ SERVIS
   ============================================ */

.hero-section {
    position: relative;
    margin-bottom: 0rem;
}

/* ========== OBRÁZKOVÁ ČÁST ========== */
.hero-image-part {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background obrázek */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay pro lepší čitelnost */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(157, 27, 89, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(157, 27, 89, 0.15) 100%
    );
    z-index: 2;
}

/* Nadpisy přes obrázek */
.hero-titles {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-titles-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Hlavní nadpis */
.hero-title {
	font-size: 5rem;
    font-weight: 400;
    color: white !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-family: var(--serif);
}

/* Podnadpis */
.hero-subtitle {
	font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
}

.mh-100 {
	min-height: 110px;
}

/* ========== TEXTOVÁ ČÁST POD OBRÁZKEM ========== */
.hero-text-section {
    background-color: white;
    padding: 2rem 0;
    position: relative;
}

.hero-description-center {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

/* Popisný text pod obrázkem */
.hero-description {
    
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

/* ========== DEKORATIVNÍ LÍSTEK ========== */
.hero-decoration-leaf {
    position: absolute;
    bottom: -30px;
    right: 80px;
    width: 120px;
    height: 80px;
    background-image: url('../../images/listek-zeleny-dekorace.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 11;
    opacity: 0.8;
}

/* ========== RESPONSIVNÍ DESIGN ========== */

/* Tablet */
@media (max-width: 992px) {
    .hero-image-part {
        min-height: 50vh;
    }
    
    .hero-titles {
        padding: 3rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text-section {
        padding: 3rem 0;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-decoration-leaf {
        right: 40px;
        bottom: -20px;
        width: 80px;
        height: 50px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .hero-image-part {
        min-height: 45vh;
    }
    
    .hero-titles {
        padding: 2.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text-section {
        padding: 2.5rem 0;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-decoration-leaf {
        right: 20px;
        bottom: -15px;
        width: 60px;
        height: 40px;
    }
}

/* Malé mobily */
@media (max-width: 576px) {
    .hero-image-part {
        min-height: 35vh;
    }
    
    .hero-titles {
        padding: 2rem 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text-section {
        padding: 2rem 0 0 0;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-decoration-leaf {
        right: 15px;
        bottom: -10px;
        width: 50px;
        height: 35px;
    }
}

/* ========== ANIMACE ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-decoration-leaf {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}


/* ============================================
   CO PRO VÁS ZAJISTÍM - SLUŽBY SEKCE
   ============================================ */

.services-section {
    background-color: white;
}

/* Hlavní nadpis */
.services-title {

    margin-bottom: 0rem;

}

/* Jednotlivé služby */
.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-right: 1rem;
}

/* Ikona/šipka */
.service-icon {
    flex: 0 0 50px;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.arrow-icon {
    width: 35px;
    height: 35px;
}

/* Obsah služby */
.service-content {
    flex: 1;
}

.service-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-family: var(--open-sans);
}

.service-description {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
    display: inline;
}

/* Responsivní úpravy */
@media (max-width: 992px) {
    .services-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .service-item {
        margin-bottom: 2rem;
        padding-right: 0;
    }
    
    .service-icon {
        margin-right: 1.2rem;
    }
    
    .arrow-icon {
        width: 35px;
        height: 35px;
    }
    
    .service-title {
        font-size: 1.05rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
        margin-bottom: 0rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        font-size: 3.8rem;
        text-align: left;
    }
    
    .service-item {
        margin-bottom: 1.8rem;
    }
    
    .service-icon {
        margin-right: 1rem;
        flex: 0 0 40px;
    }
    
    .arrow-icon {
        width: 30px;
        height: 30px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
	
	.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}


.overlap-hero .subtitle {
 
    font-size: 20px;
}

.mb-5

 {
    margin-bottom: 1rem !important;
}
    .services-title, h2 {
              font-size: 2.8rem;
    }
    
    .service-item {
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        margin-right: 0.8rem;
        flex: 0 0 35px;
        margin-top: 0.1rem;
    }
    
    .arrow-icon {
        width: 25px;
        height: 25px;
    }
}

.nopad {
	padding: 0 !important;
}

/* Request Form Styles */
.request-form-section {
    padding: 60px 0;
    
}

.request-form-title {
    color: var(--heading-secondary);
    font-size: 2rem !important;
    font-weight: 600 !important;
    padding: .8rem 5rem !important;
    margin-bottom: 0.5rem;
}

.request-form-subtitle {
    
    font-size: 1.1rem;
    margin-bottom: 0;
}

.request-form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    
}

/* Layout Grid */
.request-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.request-two-columns .request-col {
    flex: 1;
    min-width: 300px;
}

.request-full-width .request-col {
    flex: 1;
    width: 100%;
}

.request-files {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.request-files .request-col {
    flex: none;
}

/* Field Wrapper */
.request-field-wrapper {
    width: 100%;
}

/* Labels */
.request-label {
    display: block;
    color: var(--heading-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Input Fields */
.request-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #666;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.request-input:focus {
    outline: none;
    border-color: var(--heading-secondary);
    box-shadow: 0 0 0 3px rgba(161, 70, 139, 0.1);
}

.request-input::placeholder {
    color: #999;
    font-style: italic;
}

/* Textarea */
textarea.request-input {
    resize: vertical;
    min-height: 120px;
}

/* Error Messages */
.request-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.has-error .request-input {
    border-color: #dc3545;
}

/* RequestItems Section */
.request-items-section {
    width: 100%;
}

.request-items-title {
    color: var(--heading-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.request-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 10px;
}

/* Custom Checkboxes */
.request-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    margin: 0;
    font-weight: normal;
}

.request-checkbox-label:hover {
    background-color: #f8f9fa;
}

.request-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.request-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    background: white;
}

.request-checkbox:checked + .request-checkbox-custom {
    background-color: var(--heading-secondary);
    border-color: var(--heading-secondary);
}

.request-checkbox:checked + .request-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.request-checkbox-text {
    flex: 1;
    line-height: 1.4;
    color: #333;
}

.request-item-price {
    color: #666;
    font-style: italic;
    display: block;
    margin-top: 2px;
}

/* Consent Checkbox */
.request-consent-wrapper {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.request-consent-label {
    padding: 0;
}

.request-consent-label .request-checkbox-text {
    font-size: 0.95rem;
    color: #555;
}

/* Submit Section */
.request-submit {
    margin-top: 30px;
    text-align: center;
}

.request-submit-btn {
    background: var(--heading-secondary);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 200px;
}

.request-submit-btn:hover {
    background: #8b4a6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(161, 70, 139, 0.3);
}

.request-submit-btn:active {
    transform: translateY(0);
}

/* File Upload Styling */
input[type="file"].request-input {
    padding: 8px 12px;
    border: 2px dashed #d0d0d0;
    background: #fafafa;
    cursor: pointer;
}

input[type="file"].request-input:hover {
    border-color: var(--heading-secondary);
    background: #f5f5f5;
}

/* Honeypot - hide completely */
.request-honeypot {
    position: absolute;
    left: -5000px;
    top: -5000px;
    visibility: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .request-form-container {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .request-two-columns {
        flex-direction: column;
    }
    
    .request-two-columns .request-col {
        min-width: auto;
    }
    
    .request-items-grid {
        grid-template-columns: 1fr;
    }
    
    .request-files {
        grid-template-columns: 1fr;
    }
    
    .request-form-title {
        font-size: 1.75rem;
    }
    
    .request-row {
        gap: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .request-form-container {
        padding: 20px 15px;
    }
    
    .request-submit-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Focus States for Accessibility */
.request-checkbox:focus + .request-checkbox-custom {
    box-shadow: 0 0 0 3px rgba(161, 70, 139, 0.2);
}

.request-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(161, 70, 139, 0.3);
}

/* Smuteční služba prvek */
.smutecni-sluzba-item {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    padding: 0 2rem;
}

.smutecni-sluzba-image {
    flex: 0 0 350px;
    margin-right: 3rem;
    position: relative;
}

.smutecni-sluzba-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 30px rgba(157, 27, 89, 0.15);
}

.smutecni-sluzba-image:hover img {
    transform: scale(1.03);
}

.smutecni-sluzba-content {
    flex: 1;
    padding: 1rem 0;
}

.smutecni-sluzba-title {
    font-family: var(--header-font);
    
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.smutecni-sluzba-subtitle {
    /* color: var(--heading-secondary); */
   /* font-size: 1.2rem;*/
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--open-sans);
}

.smutecni-sluzba-description {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--open-sans);
}

/* Tablet - 992px a méně */
@media (max-width: 992px) {
    .smutecni-sluzba-item {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    
    .smutecni-sluzba-image {
        flex: none;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .smutecni-sluzba-image img {
        width: 280px;
        height: 280px;
    }
    
    .smutecni-sluzba-title {
        font-size: 2.8rem;
    }
    
    .smutecni-sluzba-subtitle {
        font-size: 1.2rem;
    }
}

/* Mobil - 768px a méně */
@media (max-width: 768px) {
    .smutecni-sluzba-item {
        margin: 2rem 0;
        padding: 0 0.5rem;
    }
    
    .smutecni-sluzba-image {
        margin-bottom: 1.5rem;
    }
    
    .smutecni-sluzba-image img {
        width: 250px;
        height: 250px;
    }
    
    .smutecni-sluzba-title {
        font-size: 2.4rem;
        margin-bottom: 0.8rem;
    }
    
    .smutecni-sluzba-subtitle {
        font-size: 1.1rem;
    }
    
    .smutecni-sluzba-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Malé mobily - 576px a méně */
@media (max-width: 576px) {
    .smutecni-sluzba-image img {
        width: 220px;
        height: 220px;
    }
    
    .smutecni-sluzba-title {
        font-size: 2rem;
    }
    
    .smutecni-sluzba-subtitle {
        font-size: 1rem;
    }
    
    .smutecni-sluzba-description {
        font-size: 0.9rem;
    }
}


/* Cenové tabulky */
.cenik-tabulka {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-family: var(--open-sans);
}

.cenik-tabulka th {
    background-color: var(--heading-secondary);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    letter-spacing: 0.02em;
}

.cenik-tabulka th:first-child {
    border-radius: 8px 0 0 0;
}

.cenik-tabulka th:last-child {
    border-radius: 0 8px 0 0;
    text-align: right;
}

.cenik-tabulka td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cenik-tabulka td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--heading-secondary);
}

.cenik-tabulka tbody tr:hover {
    background-color: #f8f9fa;
}

.cenik-tabulka tbody tr:last-child td {
    border-bottom: none;
}

.cenik-tabulka tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.cenik-tabulka tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

/* Responsivní úpravy */
@media (max-width: 768px) {
    .cenik-tabulka th,
    .cenik-tabulka td {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cenik-tabulka th,
    .cenik-tabulka td {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
}

.decoration-items {
  /*  background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px; */
}

.decoration-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.decoration-item:last-child {
    border-bottom: none;
}

.decoration-item-name {
    min-width: 150px;
    font-weight: 500;
     color: var(--heading-secondary);

}

.decoration-item-controls {
    display: flex;
    gap: 30px;
    flex: 1;
}

.decoration-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.decoration-input {
    width: 400px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.decoration-input.amount-input {
    width: 70px;
}


.request-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.request-radio {
    margin: 0;
}

/* Styly pro hinty */
.help-block {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 5px;
    font-style: italic;
}

.request-hint {
   color: var(--heading-secondary);
   
    line-height: 1.4;
    margin: 5px 0 10px 0;
   
}

@media (max-width: 768px) {
    .decoration-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .decoration-item-controls {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .decoration-input {
        width: 100%;
    }
}

/* ============================================
   BLOG BROWSE STYLY
   ============================================ */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
  /*  box-shadow: 0 8px 25px rgba(0,0,0,0.15);*/
}

.blog-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
        justify-content: center;
    
}

.blog-card-date {
    background-image: url(../../images/bg-date.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    background-size: 100% 100%;
    color: white;
    padding: 12px 22px;
    /* border-radius: 20px; */
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    font-family: var(--open-sans);
    margin-bottom: -40px;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 1;
        border-radius: 10px;
    
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: var(--header-font);
}

.blog-card-title a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--header-font);
    font-size: 1.8rem;
}

.blog-card-title a:hover {
    color: var(--text-primary);
}

.blog-card-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-family: var(--open-sans);
}

.blog-card-footer {
    margin-top: auto;
}

/* ============================================
   BLOG DETAIL STYLY
   ============================================ */
.article-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--heading-primary);
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: var(--header-font);
}

.article-meta {
    font-size: 1rem;
    color: var(--text-muted);
    border-left: 4px solid var(--heading-secondary);
    padding-left: 15px;
    font-family: var(--open-sans);
}

.article-image {
    text-align: center;
}

.article-image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 4px solid var(--border-light);
    padding-left: 20px;
    font-family: var(--serif);
}

.article-body {

    line-height: 1.8;
    text-align: justify;
    color: var(--text-primary);
    font-family: var(--open-sans);
}

.article-body h2 {
	font-size: 2.5rem;
}
.article-body h3 {
	font-size: 2rem;
}
.article-body h2,
.article-body h3 {
    margin-top: 4rem;
    margin-bottom: 1rem;
    color: var(--heading-secondary);
    font-family: var(--header-font);
    text-align: center;
}

.article-body p {
    margin-bottom: 0.5rem;
}

.article-footer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-family: var(--open-sans);
}

/* ============================================
   SIDEBAR STYLY
   ============================================ */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-title {
    color: var(--heading-secondary);
    font-weight: 600;
    border-bottom: 2px solid var(--heading-secondary);
    padding-bottom: 10px;
    font-family: var(--open-sans);
}

.related-article {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    /* border-bottom: 1px solid var(--border-light); */
    align-items: center;
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-image {
    flex: 0 0 50%;
}

.related-image img {
    
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.related-content {
    flex: 1;
}

.related-title {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-title a {
    color: var(--primary);
    font-weight: 400;
    font-family: var(--open-sans);
    font-size: 1rem;
    
}

.related-title a:hover {
    color: var(--hover);
}

.related-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--open-sans);
}

.related-image {
    overflow: hidden;
}

.related-image img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.related-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.related-image a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

/* ============================================
   PAGINATION STYLY
   ============================================ */
.blog-pagination .pagination {
    border-radius: 8px;
    overflow: hidden;
}

.blog-pagination .page-link {
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 12px 18px;
    font-family: var(--open-sans);
}

.blog-pagination .page-item.active .page-link {
    background-color: var(--heading-secondary);
    border-color: var(--heading-secondary);
}

.blog-pagination .page-link:hover {
    background-color: #f8f9fa;
    color: var(--hover);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-card-image {
        height: 200px;
        padding: 15px;
    }
    
    .decoration-control
 {
    display: block;
}
    
    .blog-card-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-body {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
}




@media (max-width: 768px) {

}

@media (max-width: 576px) {
	
	}

/* ============================================
   SEKCE PARTNERŮ - S KÝM SPOLUPRACUJI
   ============================================ */
/* ============================================
   SEKCE PARTNERŮ - S KÝM SPOLUPRACUJI
   ============================================ */

.partners-section {
    
    padding: 4rem 0 5rem 0;
}

.partners-section h2 {
/*    font-family: var(--header-font);
    color: var(--heading-primary);
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 3.5rem; */
    text-align: center;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0rem 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.partner-logo:hover img {
    transform: scale(1.08);
    opacity: 0.85;
}

/* Specifické velikosti pro jednotlivá loga */
.partner-logo img { 
	max-height: 200px; 
	max-width: 190px; 

} 


/* Responsivní úpravy */
@media (max-width: 992px) {
    .partners-section {
        padding: 3.5rem 0 4rem 0;
    }
    
    .partners-section h2 {
        font-size: 3.2rem;
        margin-bottom: 3rem;
    }
    
    .partner-logo img { 
    	max-height: 85px; 
    	max-width: 85px; 
    }

}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
    

    
    .partner-logo {
        padding: 0rem;
    }
    
    .partner-logo img { 
    	max-height: 75px; 
    	max-width: 75px; 
    }

}


/* ============================================
   SWIPER SLIDER PRO PARTNERY (MOBIL)
   ============================================ */
.partners-swiper {
    display: none;
    width: 100%;
    padding: 20px 0;
}

.partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.partners-swiper .partner-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.partners-swiper .partner-logo img {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
}

.partners-swiper .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.partners-swiper .swiper-pagination-bullet {
    background-color: var(--heading-secondary);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.partners-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--button);
}

/* Responzivní přepínání */
@media (max-width: 768px) {
    .partners-row {
        display: none !important;
    }
    
    .partners-swiper {
        display: block;
    }
    
	.partner-logo img {
	    max-height: 220px;
	    max-width: 220px;
	}
    
}