body {
  font-family: 'Kaisei Decol', serif;
  margin: 0;
  background: linear-gradient(rgba(240,255,240,0.95), rgba(240,255,240,0.95)), url("../assets/feedback.jpg") center/contain no-repeat;
  background-color: #e8f5e9;
}

/* --- NAVIGATION --- */
.top-nav {
  background: white;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: auto;
}

.nav-logo {
  width: 100px;      /* 🔧 increase for larger logo */
  height: 100px;
  border-radius: 50%;
  border: 3px solid white;
  transition: transform 0.3s ease;
  padding: 5px;
  background-color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover {
  background: crimson;
  color: white;
  border-radius: 5px;
}

.dropbtn {
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}

/* Dropdown */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  display: none;
  flex-direction: column;
  padding: 5px 0;
  text-align: center;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  padding: 10px 15px;
  display: block;
  font-weight: bold;
  color: black;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background-color: crimson;
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    order: 2;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    background: white;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: white;
    width: 100%;
    padding: 0;
  }

  .dropdown-content li a {
    padding: 12px 20px;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown-content.show {
    display: flex !important;
  }

  .dropbtn {
    width: auto;
    text-align: center;
  }
}

/* --- FORM SECTION --- */
.contact-main {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.feedback-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
}

.feedback-box h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

.feedback-box input, .feedback-box select, .feedback-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.emoji-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.emoji-row label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.emoji-row input[type="radio"] {
  display: none;
}

.emoji-row span {
  font-size: 2rem;
  transition: transform 0.2s;
}

.emoji-row input[type="radio"]:checked + span {
  transform: scale(1.3);
  color: crimson;
}

.feedback-box button {
  width: 100%;
  padding: 12px;
  background: crimson;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* --- FOOTER --- */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
}

footer .socials h3 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-icon {
  background-color: #333;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}

.social-icon:hover {
  background: crimson;
}

.toast {
  visibility: hidden;
  min-width: 200px;
  margin-left: -100px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  padding: 12px 24px;
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 40px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
}
