@media (max-width: 767px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
	 font-family: Arial, sans-serif;
}
 html{
   scroll-behavior: smooth;
 }
html, body {
    height: 100%;       
	width: 100%;	
    background-color: #fff;
	overflow-x: hidden;	
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;     
	line-height: 1.6;
    color: #333;
	background: #071f5c;
}


main {
    flex: 1 0 auto; 
  
}

@media (max-width: 760px){
    #burgerMenu.active{
        width:100%;
    }
}
/* Side burger menu */
#burgerMenu {
    position: fixed;
    top: 0;
    right: -30%; /* mimo obrazovku */
    width: 30%; /* max 30 % stránky */
    height: 100%;
    background: rgba(11, 51, 153, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
    transition: left 0.3s ease;
    overflow-y: auto; /* scroll uvnitř menu pokud je obsah delší */
}

/* Aktivní stav */
#burgerMenu.active {
    right: 0;
}

/* Close button */
#burgerClose {
    align-self: flex-end;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Odkazy uvnitř menu */
.burger-menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
.carousel {
  position: relative;
  width: 100%;
	height: 380px;
  
}}
.carousel .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.carousel .nav.prev {
  left: 10px;
}

.carousel .nav.next {
  right: 10px;
}
.carousel{
	position: relative;
  width: 100%;
	height: 520px;
 
}
.carousel-track {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
  position: absolute;
  width: 85%;
  max-width: 360px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  z-index: 1;
	pointer-events: none;
}

/* AKTIVNÍ */
.card.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
	pointer-events: auto;
}

/* LEVÁ */
.card.prev {
  transform: translate(-85%, -50%) scale(0.9);
  opacity: 0.5;
  z-index: 2;
}

/* PRAVÁ */
.card.next {
  transform: translate(-15%, -50%) scale(0.9);
  opacity: 0.5;
  z-index: 2;
}
#cenik {
  padding: 50px 20px;
  text-align: center;

}

#cenik h2 {
  margin-bottom: 40px;
}

.cenik-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cenik-karta {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  padding: 30px;
  text-align: center;
}

.cenik-karta h3 {
  margin-bottom: 10px;
}

.cenik-karta .cena {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
}

.cenik-karta h4 {
  margin: 10px 0 10px 0;
}

.cenik-karta hr {
  margin: 20px 0;
}

.cenik-karta ul {
  text-align: left;
  padding-left: 20px;
}

.cenik-karta ul h4 {
  margin-bottom: 10px;
}

.cenik-karta .dodani {
  margin-top: 20px;
  font-style: italic;
}

/* Barvy balíčků */
.cenik-karta.start h3 { color: #2a9d8f; }
.cenik-karta.standard h3 { color: #e9c46a; }
.cenik-karta.premium h3 { color: #0099ff; }
.cenik-karta.individualni h3 { color:  #FF2A00; }

/* Responsivita */
@media (max-width: 900px) {
  .cenik-karta { flex: 1 1 45%; }
}

@media (max-width: 600px) {
  .cenik-karta { flex: 1 1 100%; }
}
/* Footer */
footer {
    position: relative; /* nesmí být fixed */
    z-index: 1;
}
.site-footer {
    background: #071f5c;
    color: white;
    padding: 30px 20px 15px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left p {
    margin: 6px 0;
    font-size: 14px;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}
hr{
  margin:5px;
}
/*Telefon */
@media (max-width: 768px) {

  .hero, .hero1 {
    position: relative;
    overflow: hidden;
    min-height: 90vh;   /* celá výška obrazovky */
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;     /* stacked layout */
    justify-content: center;    /* vertikální střed */
    align-items: center;        /* horizontální střed */
    height: 100%;               /* klíčové pro centrování */
    gap: 20px;
    position: relative;
  }
.hero1 .hero-inner{
	top:20%;
}
  .hero-img {
    position: absolute;         /* odděleno od textu */
    top: -30%;
    right: -40%;                /* napůl skrytý */
    transform: translateY(-50%);
    z-index: 0;                 /* pod textem */
    opacity: 0.25;
  }

  .hero-img img {
    max-width: 180px;           /* menší obrázek na mobilu */
    width: auto;
    height: auto;
    display: block;
  }

  .hero-content {
    z-index: 1;                 /* text nad obrázkem */
    text-align: center;
  }

}
.hero {
            min-height: 90vh;
            background: linear-gradient(135deg, #071f5c, #3F5DAB);
            color: white;
            display: flex;
            align-items: center;
			padding-left: 30px;
        }
.hero-img {
  position: relative;
  transition: 
    right 0.6s ease,
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hero-img img {
	max-width: 480px;
	width: 100%;
	height: auto;
  transition: 
    max-width 0.6s ease,
    opacity 0.6s ease;
}
        .hero-content {
            max-width: 700px;
			display: flex;
			flex-direction: column;
			gap: 25px;
        }
.hero .btn {
	width: 180px;
}
.hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 8%;
}
      
			.hero-img img {
    max-width: 480px;
    width: 100%;
    height: auto;
}
.hero1 {
            min-height: 65vh;
            background: linear-gradient(135deg, #071f5c, #3F5DAB);
            color: white;
            display: flex;
            align-items: center;
			padding-left: 30px;
        }

        .hero-content {
            max-width: 700px;
			display: flex;
			flex-direction: column;
			gap: 25px;
        }
.hero1 .btn {
	width: 90px;
}


        

.hero .claim {
  order: 1;
  font-size: 3rem;
  font-weight: 700;
}

.hero h1 {
  order: 2;
  opacity:0.85;
  font-weight: 100;
  font-size: 1rem;
}

.hero .subtitle {
  order: 3;
}

.hero .btn {
  order: 4;
}

.hero p {
	
    margin: 20px 0;
}
.btn-g{
    display: inline-block;
    background: lightgray;
    color: #000;
    padding: 12px 20px;
  margin: 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}
.btn-g:hover{
    color:white;
    background: silver;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);

    transform: scale(1);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-g2{
    display: inline-block;
    background: silver;
    color: #000;
    padding: 12px 20px;
  margin: 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}
.btn-g2:hover{
    color:white;
    background: lightgray;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    transform: scale(1);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-back {
  display: inline-flex;          
  align-items: center;
  gap: 6px;                      
  padding: 8px 16px;             
  background-color: #007BFF;     
  color: white;                  
  text-decoration: none;         
  font-weight: 500;
  border-radius: 6px;            
  transition: background-color 0.3s, transform 0.2s;
}

.btn-back:hover {
  background-color: #0056b3;     
  transform: translateX(-2px);   
}

.btn-back:active {
  transform: translateX(-1px);
}

.btn {
    display: inline-block;
    background: #38bdf8;
    color: #000;
    padding: 12px 20px;
	margin: 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}
.btn:hover{
	color:white;
}
.section {

  scroll-margin-top: 100px;
  padding: 60px 20px;
  width: 100%;
  background: white ;
}
.section h2 {
	margin-left: 8%;
}

.section.light {
    background: #f1f5f9;
	width: 100%;
	padding: 60px 20px;

}
.container {
	max-width: 1100px;
	margin: 0 auto;
}
.cards-r {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card-link-r {
    text-decoration: none; /* odstraní podtržení */
}

.card-r {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #264653; /* text barva */
    cursor: pointer;
}

.card-r:hover {
	background: #ABDEFF;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  gap: 20px;
  margin-top:30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
	text-align: center;
}

/* Kontejner karet */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Obecná karta */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column; /* sloupce */

}

/* Nadpis a cena */
.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.card .price {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
}

/* Seznam služeb */
.card ul {
  text-align: left;
  padding-left: 20px;
  margin-top: 20px;
  list-style-type: disc;
}
.card ul h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Dodací doba */
.card .delivery {
  margin-top: 20px;
  font-style: italic;
}

/* Tlačítko vybrat */
.card .btn-g2 {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #2a9d8f; /* výchozí barva, přepíšeme pro jednotlivé balíčky */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.card .btn-g2:hover {
  background: #21867a;
  transform: translateY(-2px);
}

/* Barevné odlišení balíčků */
.card.start h3 { color: #2a9d8f; }
.card.start .btn-g2 { background: #2a9d8f; }
.card.start .btn-g2:hover { background: #21867a; }


.card.standard h3 { color: #e9c46a; }
.card.standard .btn-g2 { background: #e9c46a; color: #fff; }
.card.standard .btn-g2:hover { background: #d4b84c; }

.card.premium h3 { color: #0099ff; }
.card.premium .btn-g2 { background: #0099ff;}
.card.premium .btn-g2:hover { background: #007acc; }

.card.custom h3 { color: #FF2A00; }
.card.custom .btn-g2 { background: #FF2A00; }
.card.custom .btn-g2:hover { background: #C91E00; }

/* Responsivní zobrazení */
@media(max-width:768px){
  .cards-container { display: flex; flex-wrap: nowrap; }
}



.card-surface {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);

    transform: scale(1);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


}
.card-surface1 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);

    transform: scale(1);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


}
.steps {
    margin-top: 20px;
    padding-left: 20px;
}


.tel {
	width:30px;
  position: relative;
  top: 8px;
}
.copyright {
	text-align: center;

}
#kontakt {
	scroll-margin-top: 80px ;
}
.contact-form {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-family: sans-serif;
}

.contact-form h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-form input {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* Radios inside the contact form should be inline and not full-width */
.contact-form input[type="radio"] {
  width: auto;
  margin-top: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

.radio-group {
  margin: 20px 0;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.radio-group legend {
  font-weight: 700;
  margin-bottom: 10px;
}

.radio-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #1e40af;
}

/* Center inline buttons inside the #proklik section */
#proklik .container {
    text-align: center;
}

/* Burger Menu Styles */
.burger-menu-toggle {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    border: 2px solid white;
    font-size: 32px;
    color: #0B3399;
    cursor: pointer;
    z-index: 1001;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger-menu-toggle:hover {
    background: #38bdf8;
    color: white;
    border-color: #38bdf8;
}

.burger-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background: rgba(11, 51, 153, 0.98);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.burger-menu.active {
    display: flex !important;
}

.burger-menu-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.burger-menu-link {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 6px;
}

.burger-menu-link:hover {
    color: #0B3399;
    background: #38bdf8;
    transform: scale(1.1);
}

.burger-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    font-size: 32px;
    color: #0B3399;
    cursor: pointer;
    z-index: 1002;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger-menu-close:hover {
    background: #38bdf8;
    color: white;
}
@media(max-width 760px;) {
    

    #burgerMenu {
        width: 100%;
    
}

