/* 🌅 Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Noto Serif Devanagari', 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #fff8e1, #fbeec1);
  color: #4e2a00;
  line-height: 1.6;
}

/* 🌺 Header */
.nav {
  background: linear-gradient(to right, #ffb347, #ff7b00);
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: auto;
  padding: 0 1rem;
}
.brand {
  display: flex;
  align-items: center;
}
.logo {
  margin-right: 0.6rem;
}
.brand-text .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #662200;
}
.brand-text .title span {
  color: #ff7b00;
}
.brand-text .tag {
  font-size: 0.9rem;
  color: #8b4c00;
}
.menu a {
  margin-left: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* 🪔 Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: url('https://i.imgur.com/7sZz1Zr.png') no-repeat center top;
  background-size: cover;
 
}
.hero h1 {
  font-size: 2rem;
  color: #4e2a00;
}
.hero span {
  color: #ff7b00;
}
.lead {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.cta {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #ff7b00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* 📜 Summarizer Card */
.card-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.card h2 {
  margin-bottom: 1rem;
  color: #6d3b00;
}
textarea {
  width: 100%;
  height: 120px;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ffcc80;
  font-size: 1rem;
  resize: vertical;
}
.controls {
  margin-top: 1rem;
}
.slider-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
input[type="range"] {
  width: 100%;
}
.btn-row {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
button.primary {
  background: #ff7b00;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}
button.muted {
  background: #ffe0b2;
  color: #6d3b00;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}
.result {
  margin-top: 2rem;
  background: #fff8e1;
  padding: 1rem;
  border-radius: 8px;
  border: 1px dashed #ffcc80;
}

/* 🌟 Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}
.feature {
  background: #fff3e0;
  padding: 1rem;
  border-radius: 8px;
  max-width: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.feature h4 {
  color: #ff7b00;
}

/* 🛕 About */
.about {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff8e1;
}
.about h3 {
  color: #6d3b00;
}

/* 🧘 Footer */
footer {
  background: linear-gradient(to right, #ffb347, #ff7b00);
  padding: 1rem;
  color: #fff;
  text-align: center;
}
.social a {
  margin: 0 0.5rem;
  color: #fff;
  text-decoration: underline;
}

.astra-popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff8e1;
  border: 2px solid #ffb347;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px #ff7b00;
  z-index: 999;
  text-align: center;
}
.astra-card {
  position: relative;
}
.astra-img {
  width: 80px;
  margin: 1rem 0;
}
.sparkle-left, .sparkle-right {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffd27f 0%, transparent 70%);
  animation: sparkle 1.2s infinite alternate;
  position: absolute;
  top: 50%;
}
.sparkle-left { left: -60px; }
.sparkle-right { right: -60px; }

@keyframes sparkle {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 1; }
}


.astra-gallery {
  background: #fff3e0;
  padding: 2rem;
  border-top: 2px solid #ffcc80;
}




