@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Noto+Serif+Devanagari:wght@400;700&display=swap');

.vhp-container * { 
  box-sizing: border-box; 
}

.vhp-container {
  font-family: 'Poppins', 'Noto Serif Devanagari', sans-serif;
  background: #f5f1e8 url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  font-size: 19px;
  color: #000;
  line-height: 1.6;
  width: 100%;
}

/* HERO */
.vhp-container .hero {
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da');
  background-size: cover;
  background-position: center;
}

.vhp-container .hero h1 {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 52px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

/* ===== MENU FINAL ===== */
.vhp-container .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #e67e00;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* MENU ITEMS */
.vhp-container .menu a,
.vhp-container .dropdown > a {
  color: #fff;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.3s;
  font-size: 17px;
  cursor: pointer;
}

.vhp-container .menu a:hover,
.vhp-container .dropdown > a:hover {
  background: #fff;
  color: #e67e00;
}

/* ===== MOBILE MENU SCROLL ===== */
@media (max-width: 768px) {
  .vhp-container .menu {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .vhp-container .menu::-webkit-scrollbar {
    display: none;
  }
}

/* ===== DROPDOWN ===== */
.vhp-container .dropdown {
  position: relative;
}

.vhp-container .dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 240px;
  display: none;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 999;
  padding: 5px 0;
}

/* DESKTOP HOVER */
@media (min-width: 769px) {
  .vhp-container .dropdown:hover .dropdown-content {
    display: flex;
  }
}

/* MOBILE CLICK */
.vhp-container .dropdown.active .dropdown-content {
  display: flex;
}

.vhp-container .dropdown-content a {
  padding: 12px 18px !important;
  color: #000 !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 0 !important;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 15px !important;
}

.vhp-container .dropdown-content a:hover {
  background: #e67e00 !important;
  color: #fff !important;
}

/* SECTION */
.vhp-container .section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vhp-container .section h2 {
  color: #e67e00;
  text-align: center;
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 25px;
  font-family: 'Noto Serif Devanagari', serif;
}

.vhp-container .section p {
  line-height: 2;
  margin-bottom: 20px;
  text-align: justify;
}

.vhp-container .section p:last-child {
  margin-bottom: 0;
}

/* GRID */
.vhp-container .editor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vhp-container .editor-card {
  background: #faf7f2;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #eee;
  font-size: 17px;
  font-weight: 500;
}

.vhp-container .icon {
  font-size: 26px;
  color: #e67e00;
  margin-bottom: 8px;
}

/* TABLET */
@media (max-width: 768px) {
  .vhp-container .hero h1 { font-size: 36px; }
  .vhp-container .section { padding: 25px; margin: 30px 15px; }
  .vhp-container .section h2 { font-size: 26px; }
  .vhp-container .section p { font-size: 16px; }

  .vhp-container .editor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .vhp-container .editor-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.vhp-container .footer {
  background: #e67e00;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 16px;
}
