/* HERO */
.hero-section {
  position: relative;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0px;
  background-image: url("https://www.kanarna.eu/obrazek/3/kanarna-hero/");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
}
.Header {
  font-size: 50px;
  padding: 5vh;
  font-size: 25px;
}
.bruh {
  font-size: 20px;
  padding: 1vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* zatemnění */
  z-index: 1; /* pod textem */
}

.hero-overlay {
  position: relative;
  z-index: 2; /* zajistí, že je nad pozadím a zatemněním */
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.hero-content .sub {
  font-size: 20px;
  margin: 12px 0 22px;
}
.hero-content h2{
  font-weight: bold;
  font-size: 20px;
  margin: 12px 0 22px;
}
.hero-content .btn-primary {
  background: #d4a574;
  border: none;
  min-height: 5vh;
  min-width: 5vh;
  font-size: 20px;
  padding: 14px 26px;
  border-radius: 10px;
}
.hero-content .btn-primary:hover {
  background: #b78352;
}
/* CONTENT */
.content-h2{
  text-align: left;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
}
.content-h3{
  text-align: left;
  font-size: 27px;
  margin-bottom: 15px;
  font-weight: bold;
  margin-left: 10px;
}
.content-p{
  text-align: left;
  background-color: #573400;
  border-radius: 15px;
  font-size: 18px;
  margin-bottom: 2px;
  padding: 14px 26px;
}
/* ABOUT */
.about-section {
  padding: 40px 20px;
  text-align: center;
}
.about-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.about-section .lead {
  font-size: 18px;
  color: #fff;
}
.btn{
  min-height: 5vh;
  min-width: 5vh;
  text-align: center;
  font-size: 20px;
  font-family:verdana;
  padding: 2vh;
    background: #ba9970;
  border-radius: 12px;
}
/* CARDS */
.cards-section{
  background: transparent;
}
.cards .card {
  background: #ba9970;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(59,43,36,0.08);
  overflow: hidden;
  margin-bottom: 20px;
}
.cards .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cards .card-body {
  height: auto;
  padding: 18px;
  text-align: left;
  background: #F5F0E1
}
.cards .card h3 {
  font-size: 22px;
  font-weight: bold;
  margin: auto;
  margin-bottom: 10px;

  color: #7B4A4A;
}
.cards .card p {
  color: #7B4A4A;
}
.cards .btn-dark {
  background: #3b2b24;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  position: center;
}
.cards .btn-dark:hover {
  background: #5c4236;
  position: center;

}

/* GALLERY */
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* CTA */
.cta-section {
  background: #3b2b24;
  color: #fff;
  padding: 60px 20px;
  border-radius: 14px;
}
.cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.cta-section .btn-primary {
  background: #d4a574;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: 600;
}
.cta-section .btn-primary:hover {
  background: #b78352;
}
/*Table*/
table {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

th, td {
  /*border: 1px solid #ddd;*/
  padding: 12px;
  text-align: left;
}
td {
  background-color: #F5F0E1;
  border-top: 1px solid #7B4A4A;
  color: #7B4A4A;
  font-weight: bold;  
}

th {
  background-color: #7B4A4A;
  border: 0px solid #ddd;
  color: #F5F0E1;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #ddd;
}

.category-row {
  background-color: #ba9970;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
myDiv{
  margin-top: 50px;
}

/* Responsive */
@media (max-width:768px) {
  .hero-content h1 { font-size: 36px; }
  .hero-section { height: 340px; }
  .cards .card img { height: 180px; }
}