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/12.png') center center / cover no-repeat;
}

.glass-blur {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
}

.glass-content {
  padding: 2rem;
  width: 100%;
}

@media (max-width: 767.98px) {
  .glass-content h1 {
    font-size: 1.6rem !important;
    text-transform: uppercase;
  }
  .lead {
    font-size: 0.9rem !important;
    text-align: center;
  }
}


  .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;
    }