* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;

  min-height: 100vh;

  overflow-x: hidden;

  color: #243326;

  background:
    linear-gradient(
      135deg,
      #fff9e8 0%,
      #eefbf5 40%,
      #f8fff3 100%
    );

  position: relative;
}



/* =========================
   BACKGROUND GLOW
========================= */

.background-glow {
  position: fixed;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    rgba(124, 182, 92, 0.18);

  filter: blur(120px);

  top: -180px;
  left: -180px;

  z-index: 0;

  pointer-events: none;
}

.background-glow.second {
  background:
    rgba(255, 214, 102, 0.16);

  top: auto;
  left: auto;

  right: -180px;
  bottom: -180px;
}



/* =========================
   CONTAINER
========================= */

.container {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 920px;

  margin: 0 auto;

  padding:
    70px 20px
    100px;
}



/* =========================
   HERO
========================= */

.hero {
  text-align: center;

  margin-bottom: 42px;
}

.badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 16px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.58);

  border:
    1px solid rgba(123,191,89,0.14);

  backdrop-filter: blur(12px);

  color: #5c8f3b;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.08em;

  margin-bottom: 22px;
}

h1 {
  font-size:
    clamp(2.8rem, 7vw, 5rem);

  line-height: 0.95;

  letter-spacing: -0.06em;

  margin-bottom: 18px;

  background:
    linear-gradient(
      135deg,
      #243326,
      #5c8f3b
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 620px;

  margin: 0 auto;

  color:
    rgba(36,51,38,0.72);

  font-size: 16px;

  line-height: 1.7;
}



/* =========================
   CARD
========================= */

.feedback-card,
.success-card {
  background:
    rgba(255,255,255,0.58);

  border:
    1px solid rgba(255,255,255,0.82);

  backdrop-filter: blur(20px);

  border-radius: 34px;

  padding: 34px;

  box-shadow:
    0 20px 50px rgba(124,182,92,0.08);
}



/* =========================
   FORM
========================= */

#feedback-form {
  display: flex;

  flex-direction: column;

  gap: 28px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

label {
  font-size: 15px;

  font-weight: 700;

  color: #243326;
}



/* =========================
   RATING
========================= */

.rating-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.rating-btn {
  width: 74px;
  height: 74px;

  border: none;

  border-radius: 24px;

  background:
    rgba(255,255,255,0.72);

  border:
    1px solid rgba(123,191,89,0.12);

  font-size: 30px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border 0.25s ease,
    background 0.25s ease;
}

.rating-btn:hover {
  transform:
    translateY(-4px)
    scale(1.05);

  box-shadow:
    0 12px 30px rgba(124,182,92,0.12);
}

.rating-btn.active {
  background:
    linear-gradient(
      135deg,
      #7bbf59,
      #5fa86d
    );

  border-color: transparent;

  transform: scale(1.08);
}



/* =========================
   INPUTS
========================= */

select,
textarea {
  width: 100%;

  border: none;

  outline: none;

  resize: vertical;

  background:
    rgba(255,255,255,0.72);

  border:
    1px solid rgba(123,191,89,0.12);

  border-radius: 22px;

  padding: 18px 20px;

  font-family: inherit;

  font-size: 14px;

  color: #243326;

  transition:
    border 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

textarea {
  min-height: 140px;
}

select:focus,
textarea:focus {
  border-color:
    rgba(123,191,89,0.32);

  transform: translateY(-1px);

  box-shadow:
    0 0 0 5px rgba(123,191,89,0.08);
}

textarea::placeholder {
  color:
    rgba(36,51,38,0.4);
}



/* =========================
   MAP BUTTON
========================= */

.map-btn {
  margin-top: 10px;

  border: none;

  border-radius: 18px;

  padding: 14px 18px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.72)
    );

  border:
    1px solid rgba(123,191,89,0.14);

  color: #5c8f3b;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.map-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 26px rgba(124,182,92,0.12);
}



/* =========================
   SUBMIT BUTTON
========================= */

.submit-btn {
  margin-top: 6px;

  border: none;

  border-radius: 22px;

  padding: 18px 24px;

  background:
    linear-gradient(
      135deg,
      #7bbf59,
      #5fa86d
    );

  color: white;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 16px 34px rgba(124,182,92,0.22);
}



/* =========================
   SUCCESS
========================= */

.success-card {
  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 16px;

  padding:
    60px 30px;
}

.success-emoji {
  font-size: 74px;
}

.success-card h2 {
  font-size: 42px;

  color: #243326;
}

.success-card p {
  color:
    rgba(36,51,38,0.72);

  font-size: 16px;
}



/* =========================
   HIDDEN
========================= */

.hidden {
  display: none;
}



/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {

  .container {
    padding-top: 42px;
  }

  .feedback-card,
  .success-card {
    padding: 24px;
  }

  h1 {
    font-size: 3rem;
  }

  .rating-buttons {
    justify-content: center;
  }

  .rating-btn {
    width: 64px;
    height: 64px;

    font-size: 26px;
  }

}

/* oprava navbaru z mapy */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 30px;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
}


.logo {
  font-size: 18px;
  font-weight: 800;
  color: #5c8f3b;
}


.nav-links {
  display: flex;
  gap: 24px;
}


.nav-links a {
  text-decoration: none;
  color: #243326;
  font-weight: 600;
}


.nav-links a.active {
  color: #5fa86d;
}


.menu-toggle {
  display: none;
}
