* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: url('assets/lander.jpg') center center / cover no-repeat fixed;
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
  margin-top: 100px;
  padding-top: 5px;
}

h1 {
    font-style: italic;
    font-weight: bolder;
    font-size: 34px;
    text-transform: capitalize;
    text-decoration: underline;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

h2 {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0);
    text-decoration: overline underline;
    font-size: 22px;
}

.v1 {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.89);
  text-decoration: underline;
  text-transform: capitalize;
  opacity: 0.89;
}

.v1:hover{
    opacity: 1;
    color: rgba(255, 255, 255, 0.89);
}
.mood-box {
  width: 60%;
  height: 120px;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  resize: none; /* prevents manual resizing */
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}

.mood-box:focus {
  outline: none;
  border-color: #6c63ff;
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.4);
}

.b1 {
    background-color: #6c63ff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.b1.secondary {
  background-color: rgba(108, 99, 255, 0.7);
  margin-left: 10px;
}

.b1.secondary:hover {
  background-color: rgba(108, 99, 255, 0.9);
}

.quote-of-the-day {
    background-color: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    max-width: 80%;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.comfort-message {
    margin-top: 10px;
    font-size: 16px;
    font-style: italic bold;
    text-decoration: underline;
    color: #00ffd5;
}

.ai-response-box {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  width: 60%;
  margin: 20px auto;
  padding: 15px;
  text-align: left;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.ai-response-box h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  color: #4141fa;
}

.response-area {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 12px;
  min-height: 60px;
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-line;
  transition: all 0.4s ease;
}

.response-area.new-response {
  animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  opacity: 0.85;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.logo {
  height: 45px;
  cursor: pointer;
}

.nav-right {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.about-container {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.about-container h1 {
  text-align: center;
  margin-bottom: 25px;
}

.about-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.95;
}

.about-signoff {
  text-align: right;
  margin-top: 30px;
  font-style: italic;
  opacity: 0.85;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin-top: 120px;
  margin-bottom: 30px;
}

.reviews-container h1 {
  text-align: center;
  margin-bottom: 10px;
}

.reviews-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.review-stars {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
  opacity: 0.95;
}

.review-author {
  text-align: right;
  font-weight: bold;
  opacity: 0.8;
  font-size: 14px;
}

.review-submit-section {
  background: rgba(108, 99, 255, 0.1);
  border: 2px solid rgba(108, 99, 255, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.review-submit-section h2 {
  color: #6c63ff;
  margin-bottom: 15px;
}

.submit-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.submit-note {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 25px;
  font-style: italic;
}

.submit-btn {
  background: linear-gradient(135deg, #6c63ff, #00ffd5);
  color: black;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
}

.support-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin: 30px 0;
  align-items: start;
}

.contribution-card {
  background: rgba(108, 99, 255, 0.1);
  border: 2px solid rgba(108, 99, 255, 0.3);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.2);
}

.contribution-header h3 {
  color: #6c63ff;
  margin: 0 0 8px 0;
  font-size: 24px;
}

.contribution-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
  font-size: 16px;
  font-style: italic;
}

.upi-details {
  margin-bottom: 25px;
}

.upi-id-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.upi-id-box strong {
  color: #00ffd5;
}

.upi-id {
  font-family: 'Courier New', monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
}

.copy-btn {
  background: #6c63ff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: auto;
}

.copy-btn:hover {
  background: #574ee8;
  transform: scale(1.05);
}

.safety-notice {
  background: rgba(255, 235, 59, 0.1);
  border: 1px solid rgba(255, 235, 59, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.safety-notice h4 {
  color: #ffeb3b;
  margin: 0 0 15px 0;
  font-size: 18px;
}

.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-list li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  opacity: 0.9;
}

.safety-list li:before {
  content: "✓";
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.thank-you-message {
  text-align: center;
  padding: 20px;
  background: rgba(0, 255, 213, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 213, 0.3);
}

.thank-you-message p {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #00ffd5;
}

.impact-note {
  font-size: 14px;
  opacity: 0.8;
  font-style: italic;
}

.impact-stats {
  background: rgba(0, 255, 213, 0.1);
  border: 2px solid rgba(0, 255, 213, 0.3);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 255, 213, 0.2);
}

.impact-stats h3 {
  color: #00ffd5;
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #00ffd5;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 120px;
  justify-content: center;
}

.social-link.github {
  background: linear-gradient(135deg, #333, #24292e);
  border-color: #24292e;
}

.social-link.github:hover {
  background: linear-gradient(135deg, #24292e, #1a1e22);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(36, 41, 46, 0.4);
}

.social-link.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-color: #cc0000;
}

.social-link.youtube:hover {
  background: linear-gradient(135deg, #cc0000, #aa0000);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.social-icon {
  font-size: 20px;
}

.social-text {
  font-size: 16px;
}

@media (max-width: 768px) {
  .support-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 200px;
  }

  .upi-id-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .copy-btn {
    margin-left: 0;
    align-self: stretch;
  }
}

.contribute-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  margin-top: 120px;
  margin-bottom: 30px;
}

.hero-section {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(108, 99, 255, 0.3);
}

.hero-section h1 {
  font-size: 36px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #6c63ff, #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.support-intro {
  text-align: center;
  margin-bottom: 50px;
}

.intro-text {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.funding-breakdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.funding-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.funding-icon {
  font-size: 24px;
}

.funding-text {
  font-weight: bold;
  color: #00ffd5;
}

.call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: rgba(0, 255, 213, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 213, 0.3);
}

.call-to-action h2 {
  color: #00ffd5;
  margin-bottom: 15px;
}

.call-to-action p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #6c63ff, #00ffd5);
  color: black;
}

.cta-btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.additional-info {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-info h4 {
  color: #ffeb3b;
  margin: 0 0 10px 0;
}

.additional-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.support-cta {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(108, 99, 255, 0.3);
}

.support-link {
  color: #6c63ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #00ffd5;
  text-decoration: underline;
}

.support-banner {
  text-align: center;
  margin: 30px 0;
  padding: 15px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(108, 99, 255, 0.3);
}

.support-banner p {
  margin: 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .contribute-page {
    padding: 20px;
    margin-top: 100px;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .funding-breakdown {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 250px;
  }
}
