body {
  font-family: 'Poppins', sans-serif!important;
}

.g-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-item-wrapper {
  aspect-ratio: 4 / 3;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.hero-section {
    min-height: 100vh;
    overflow: hidden;  /* nebo visible, pokud máš efekt s přesahem */
    position: relative;
    background: url('../img/klimatizace.jpg') center center / cover no-repeat;
}

.glass-blur {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
}

.glass-content {
  padding: 1.5rem;
  width: 100%;
}

.glass-content h2 {
  font-size: clamp(1.4rem, 2vw + 1rem, 5rem) !important;
  /*text-transform: uppercase;*/
}

.lead {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.7rem) !important;
}


  .highlight {
    color: #3ee48c;
    font-weight: bold;
  }

    .vlastni-btn {
        transition: 0.4s ease-out;
        background-color: #ff6d5e!important;
    }

    .vlastni-btn:hover {
    background-color: #d86f62!important;
    }

    .cst-dark {
        transition: 0.4s ease-out;
        background: #07304a!important;
    }
    .cst-dark:hover {
        background: #2a445a!important;
    }

    .thankyou-section {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
      background: #f3fbf6;
    }

    .thankyou-box {
      background-color: #fff;
      border-radius: 12px;
      padding: 1.5rem 2rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      max-width: 800px;
      margin-bottom: 2rem;
    }

    .btn-green {
      background-color: #FF6D5E;
      color: white;
      font-weight: 500;
      padding: 0.75rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
    }

    .btn-green:hover {
      background-color: #ff6351;
      color: white;
    }


.review-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.review-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.review-summary-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* ecoMail */
.vy-f-ecomail{
    padding:12px 0 20px;
}
.vy-f-ecomail label{
    cursor:pointer;
    margin-left: 20px;
}
/* GDPR */
.vy-f-gdpr{
    line-height:1.5;
    font-size:0.9rem;
    color:#555555;
    margin-top:1rem;
    font-style:italic;
}
/* GLOBALS */
 #loader{
     display:flex;
     flex-direction:row;
     gap:20px;
     align-items:center;
     margin-top:1rem;
 }
.spinner {
    width: 32px;
    height: 32px;
    border: 4px solid #ddd;
    border-top: 4px solid var(--prim2);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display:block;
}