/* {
  outline: 1px solid red;
}*/

.bg-dark {
  background: linear-gradient(to bottom right, #042420, #0b5e55);
}

/* .hero::before {
  content: '';
  background-image: url('../img/LV_05308.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
} */

.lang-flag {
  vertical-align: middle;
  max-width: 1.2rem;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e2e2e2;
}

.about-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #c5c5c5;
  margin-bottom: 1rem;
}

/* informace */
.info-card-dark {
  background: linear-gradient(to bottom right, #0d3a35, #0b5e55);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-dark-2 {
  background: linear-gradient(to bottom right, #0b5e55, #0d3a35);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}
.info-card-dark h4 {
  color: #ffffff;
}
.info-card-dark ul li,
.info-card-dark ol li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.info-card-dark-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}
.info-card-dark-2 h4 {
  color: #ffffff;
}
.info-card-dark-2 ul li,
.info-card-dark-2 ol li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.kontakt-button {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.kontakt-button ul li,
.kontakt-button ol li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #000000;
}

/* Pricing */
.pricing-card-light {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.pricing-card-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.pricing-card-light h4 {
  color: #111;
}

.pricing-card-light h5 {
  color: #000;
}

.pricing-card-light ul {
  padding-left: 0;
}

.pricing-card-light ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #444;
}

.pricing-card-dark {  
  background: linear-gradient(to bottom right, #042420, #0b5e55);
  border-radius: 1rem;
  border: 1px solid rgba(239, 218, 85, 0.08);
  color: #c0b239;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.pricing-card-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 229, 57, 0.6);
}

.pricing-card-dark h4 {
  color: linear-gradient(to right, #fdff9a, #655f14);
  font-size: 1.5rem;
}

.pricing-card-dark h5 {
  color: #e9e9e9;
  font-size: 1.35rem;
}

.pricing-card-dark ul {
  padding-left: 0;
}

.pricing-card-dark ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: #fff48d;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Carousel arrows styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(30%) sepia(40%) saturate(400%) hue-rotate(120deg);
}

.brands-strip {
  background: #fff;
}

.brand-logo {
  max-height: 100px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.btn-light {
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  transition: 0.3s;
}

.btn-light:hover {
  background: #c1c1c1;
}

/*Graduaction  price list*/
.pricing-grid {
  display: grid;
  gap: 1.5rem;

  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}

/* Desired layout */
.item-1 { grid-column: 1; grid-row: 1; }            /* Start */
.item-2 { grid-column: 2; grid-row: 1; }            /* Full Night */
.item-3 { grid-column: 3; grid-row: 1 / span 2; }   /* VIP tall */
.item-4 { grid-column: 1 / span 2; grid-row: 2; }   /* Extras */

@media (max-width: 992px) {
  .pricing-grid {
    display: block;
  }
  .pricing-grid > div {
    margin-bottom: 1.5rem;
  }
}

/*Pricelist - index*/
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Pricelist section styling */
.pricelist-section {
  background: linear-gradient(to bottom right, #0c403a, #0b5e55);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.pricelist-section h2 {
  color: #f0f0f0;
}