/*SEKCE DORTY*/
.topbar, header, #domu {

  position: relative;

  z-index: 10;

}



/*TOPBAR*/



.topbar{

  width:100%;

  height:50px;

  border-bottom:1px solid gray;
  background-color: #2b1b17;
  animation:objeveni 4s ease

}

.topbar-container{

  width:100%;

  max-width: 1600px;

  margin:0 auto;

  display:flex;

  justify-content: center;

  align-items: center;

  gap:40px;

  height:100%;

}

.topbar-radek{

  display:flex;

  align-items: center;

  gap:10px;



}

.topbar i{

  color:white;

}



.topbar-text, address{

  font-size: 16px;

  color:white;

  font-family: var(--font-body);

}



.topbar-text{

  color:white;

  cursor: pointer;
  transition: all 350ms ease;

}
.topbar-text:hover{
  cursor: pointer;
  color:pink;
}

.fa-instagram{

  font-size: 30px;
  transition: all 350ms ease;

}
.fa-instagram:hover{
  transform: scale(1.1);
  

}
/* Zrušeno pozadí black na body */
body {
  margin: 0;
  padding: 0;
}

#dorty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2b1b17; /* Tmavě čokoládové pozadí pod úvodním nadpisem sekce */
  padding-top: 40px;
}

/* Střídání pozadí CELÝCH PRUHŮ vnější sekce po 3 dortech */
.dorty-pruh {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

/* Liché pruhy (1, 3, 5...): Teplá vanilkově-krémová barva */
.dorty-pruh:nth-child(odd) {
  background-color: #fcf8f2;
}

/* Sudé pruhy (2, 4, 6...): Hřejivá tmavá čokoládová barva */
.dorty-pruh:nth-child(even) {
  background-color: #2b1b17;
}

.dorty-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px 30px;
  flex-wrap: wrap;
}

.dorty-span {
  font-size: 22px;
  color: pink;
  font-style: italic;
  margin-bottom: 20px;
}

/* Karta dortu */
.dorty-blok {
  width: 100%;
  max-width: 520px;
  height: 500px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 400ms ease;
  background-color: white; /* Bílé karty pro maximální vyniknutí fotky i textu */
  color: #2b1b17;
}

.dorty-blok:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 30px rgba(168, 67, 97, 0.25);
}

.dorty-figure {
  width: 100%;
  max-width: 520px;
  height: 300px;
  overflow: hidden;
  margin: 0;
}

.dorty-image {
  width: 100%;
  height: 100%;
  transition: all 400ms ease;
  object-fit: cover;
}

.dorty-image:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.dorty-text {
  width: 100%;
  max-width: 490px;
  margin: 0 auto;
  margin-top: 30px;
}

.dorty-h3 {
  text-align: left;
  font-size: 20px;
  text-transform: uppercase;
  color: #2b1b17;
}

.dorty-para {
  text-align: left;
  font-size: 20px;
  line-height: 1.4;
  color: #4a3b32;
}

.dorty-cena {
  font-size: 30px;
  font-weight: bold;
  color: #a84361; /* Kontrastní vínově-růžová akcentová barva */
}

.dorty-radek {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 10px;
}

footer {
  background-color: white;
}

.white {
  color: white;
}
.black{
  color:black;
}
.nav-link{
  color:#2b1b17;
}

/* Změněná barva headeru z tmavě šedé na elegantní čokoládovou */
header {
  background-color: #fff0f5;
}

@media(max-width:480px){
  .dorty-blok{
    max-width: 350px;
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .dorty-cena{
    font-size: 22px;
  }
  .dorty-radek{
    flex-direction: column;
  }
  .dorty-para{
    text-align: center;
    font-size: 18px;
  }
  .dorty-text{
    max-width: 340px;
    padding-bottom: 10px;
  }
  .dorty-h3{
    text-align: center;
  }
}
