body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff0f5;
}



/* nav-bari */

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffc0cb;
  padding: 15px 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

.menu-links a:hover {
  background-color: #ffb6c1;
  color: #000;
}


.menu-right {
  position: relative;
}

.dropbtn {
  background-color: #ffc0cb;
  color: white;
  font-weight: bold;
  padding: 8px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropbtn:hover {
  background-color: #ffb6c1;
  color: #000;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffc0cb;
  min-width: 120px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: bold;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ffb6c1;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* qvemota footeri */
.footer {
  background-color: #ffc0cb;
  padding: 40px 20px 30px;
  text-align: center;
  margin-top: 80px;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #333;
}

.footer-copy {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}