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;
}

/* contact */

.contact-section {
  background: linear-gradient(135deg, #ffe4ee, #fff5f9);
  padding: 70px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.contact-section h2 {
  font-size: 2.2rem;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-subtitle {
  color: #333333;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-form {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(255, 170, 200, 0.35);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1.5px solid #e6e6e6;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaaaaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff85bc;
  box-shadow: 0 0 0 3px rgba(255, 133, 188, 0.25);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #545454, #333333);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 111, 174, 0.45);
}



/* 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;
}