/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


/* ================= HEADER ================= */
header {
  background: linear-gradient(135deg, #4c98af, #6fb1c7);
  text-align: center;
  padding: 20px;
  position: relative;
  color: white;
}

.logo {
  max-width: 80px;
  margin-bottom: 10px;
}


/* ================= MENU ================= */
.menu {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.menu-links {
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 8px 0;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.25s;
}

.menu-links.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-links a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
}

.menu-links a:hover {
  background: #f0f0f0;
}


/* ================= NAV ================= */
nav {
  background: #222;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s;
}

nav a:hover {
  background: #4c98af;
}


/* ================= MAIN ================= */
main {
  background: #f4f4f4;
  min-height: 80vh;

  display: flex;
  justify-content: center;
  align-items: center;
}


/* ================= CONTAINER ================= */
.feedback-container {
  background: white;
  padding: 40px;

  border-radius: 15px;
  width: 100%;
  max-width: 500px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.subtitle {
  margin-bottom: 20px;
  color: #666;
}


/* ================= FORM ================= */
.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;

  border: 1px solid #ccc;
  border-radius: 10px;
}


/* ================= BUTTON ================= */
.submit-btn {
  width: 100%;
  padding: 12px;

  background: #007BFF;
  color: white;

  border: none;
  border-radius: 10px;

  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0056b3;
}


/* ================= SUCCESS MESSAGE ================= */
.success-text {
  color: green;
  margin-bottom: 10px;
}


/* ================= FOOTER ================= */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px;
}