body {
  font-family: 'Georgia', serif;
  background: #fff4f4;
  color: #333;
  text-align: center;
  padding: 20px;
  margin: 0;
}

.container {
  max-width: 600px;
  margin: auto;
  background: #ffecec;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.2);
}

h1 {
  color: #e60073;
  margin-bottom: 30px;
}

.controls {
  margin: 20px 0;
}

.controls input,
.controls select {
  padding: 12px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.controls button {
  padding: 12px 24px;
  margin: 10px 0;
  background: #e60073;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.controls button:hover {
  background: #cc005c;
}

.shayari-box {
  font-size: 22px;
  color: #222;
  margin-top: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(200, 0, 60, 0.1);
}

/* Beautify the dropdown */
.styled-select {
  width: 200px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #e60073;
  border-radius: 10px;
  background-color: #fff0f5;
  color: #e60073;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205-6z'%20fill%3D'%23e60073'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.ghalib-block {
  font-family: 'Georgia', serif;
  color: #3b3b3b;
  padding: 1rem;
  background: #fff9f0;
  border-left: 4px solid #ff5e5e;
  border-radius: 10px;
  margin-top: 1rem;
  line-height: 1.6;
}

section h2 {
  color: #00bcd4;          /* Deep pink headings */
  font-size: 24px;         /* Larger font size for section titles */
  margin-bottom: 10px;     /* Space between title and content */
}

.footer-sections ul {
  list-style: none;
  padding-left: 0;
}



section p,
section ul {
  font-size: 16px;         /* Good base font size */
  line-height: 1.6;        /* Improves readability */
}

/* 🌟 Welcome Banner */
.site-banner {
  background: linear-gradient(90deg, #c2e9fb, #a1c4fd);
  color: #00334e;
  text-align: center;
  padding: 16px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
  border-bottom: 2px solid #87ceeb;
}

.banner-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}

/* 📂 Navigation Bar */
.menu-bar {
  background: #f0f8ff;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 0;
  border-bottom: 2px solid #d0eaff;
  font-family: 'Poppins', sans-serif;
}

.menu-bar a {
  text-decoration: none;
  color: #00334e;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu-bar a:hover {
  color: #e60073;
}

/* Layout container */
.main-layout {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Sidebar styling */
.sidebar {
  flex: 1 1 300px;
  background: #f0f8ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
  font-size: 17px; /* ⬅️ increased for readability */
  font-family: 'Playfair Display', serif; /* ⬅️ more elegant, poetic font */
  line-height: 1.8; /* ⬅️ better spacing */
  color: #333;
  font-weight: bold;
}

.sidebar h2 {
  color: #0056b3; /* ⬅️ slightly darker for visibility */
  font-size: 22px; /* ⬅️ larger heading */
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.sidebar .popular-shayaris p {
  font-family: 'Georgia', serif;
  font-style: italic;
  background: #fff;
  padding: 12px 16px;
  border-left: 4px solid #0077cc;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: bold;
}

/* Generator content area */
.main-generator {
  flex: 2 1 400px;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
  }
}

.accordion-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
}

.accordion-toggle {
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  background-color: #e6f2ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
  color: #004080;
}

.accordion-toggle:hover {
  background-color: #d0e9ff;
}

.accordion-content {
  display: none;
  padding: 15px 20px;
  background: #fefefe;
  border-left: 4px solid #0077cc;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #333;
}

.accordion-content ul {
  padding-left: 20px;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 10px;
}
