body {
    background: radial-gradient(circle at top left, #f7f0fd, #ffffff);
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  background-color: #6f42c1;
}

/* Normal link rengi */
.navbar .nav-link {
  color: #ffffff; /* Beyaz */
  transition: color 0.25s ease;
}

/* Hover / focus - beyaza çok yakın yumuşak mor */
.navbar.navbar-dark .navbar-nav .nav-link:hover,
.navbar.navbar-dark .navbar-nav .nav-link:focus {
  color: #f5f2ff  /* Çok açık pastel mor, neredeyse beyaz */
}

/* Hamburger ikon (mobil) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
  background: linear-gradient(
    90deg,
    #faf7ff,
    #efe8fb,
    #e1d6f7
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* Logo text hover effect */
.navbar-brand:hover .navbar-logo-text {
  background: linear-gradient(
    90deg,
    #ffffff,
    #f6f1fd,
    #ece3fa
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s ease;
}

/* Main content */
.main-content {
    text-align: center;
    padding: 60px 20px;
    color: #3c3c3c;
}

.main-content h1 {
    color: #6f42c1; /* Mor tonları */
}

.main-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #6f42c1, #8a63d1, #b39de6); /* Mor tonları */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Firefox için ekledik */
    color: transparent;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block; /* Gradientin çalışması için önemli */
}

/* Hero Jumbotron */
.hero-jumbotron {
    background: radial-gradient(circle at top left, #f9f0ff, #f4e8fc); /* Body ile uyumlu mor-mavi tonlar */
    padding: 4rem 2rem;           /* Yeterli iç boşluk */
    margin-bottom: 3rem;          /* Alt içerikten boşluk */
    border-radius: 1rem;          /* Yuvarlatılmış köşeler */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekti (opsiyonel, hoş bir interaktivite için) */
.hero-jumbotron:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Hero Title */
.hero-jumbotron .hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #6f42c1, #8a63d1, #b39de6); /* Gradient mor tonları */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Lead paragraph inside jumbotron */
.hero-jumbotron .lead {
    font-size: 1.25rem;
    color: #3c3c3c;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* CTA Button inside jumbotron */
.hero-jumbotron .btn-purple {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
}


/* Chat room */
.chat-room {
    max-height: 60vh;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: #6f42c1;
    border: none;
}

.btn-primary:hover {
    background-color: #5a33a3;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.5);
}

/* Hero Section */
.hero-section {
    max-width: 1300px;
    margin: 0 auto;
}

/* Headings inside hero-section-detail */
.hero-section-detail h1, h2, h3, h4, h5 {
    color: #6f42c1;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-section-detail p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Highlight */
mark {
    background-color: #ffeb3b;
    color: #000;
    padding: 0 3px;
    border-radius: 2px;
}

/* CTA Button */
.btn-purple {
    background-color: #6f42c1 !important;
    color: white !important;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-purple:hover {
    background-color: #5a33a3 !important;
    color: white !important;
}

.btn-purple:focus,
.btn-purple:active {
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.5);
    outline: none;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    text-align: left;
}

.card-title {
    font-size: 1.25rem;
    color: #6f42c1;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

/* Footer */
.footer {
    background-color: #6f42c1; /* Pastel Mor */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Footer links */
.footer a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer a:hover,
.navbar a:hover {
    color: #ffcc00;
}

.footer p:last-child {
    margin-top: 5px;
}

.hashtag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Ortala */
    margin-top: 50px;
}

.hashtag {
    display: inline-block;
    background-color: #6f42c1; /* Mor ton */
    color: #ffffff;           /* Normal durumda beyaz */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;    /* Alt çizgiyi kaldır */
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hashtag:hover,
.hashtag:focus {
    background-color: #8a63d1; /* Hover daha açık mor */
    color: #ffffff;           /* Hover'da da beyaz kalsın */
    text-decoration: none;    /* Hover’da da alt çizgi yok */
    transform: translateY(-2px) scale(1.05);
}

/* Global Card Style for all pages */
.card {
  border: none;
  border-radius: 60px; /* Daha belirgin radius */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  transition: none; /* Hover hareketi kapalı */
}

/* Donation Reminder Popup */
.donation-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  background: linear-gradient(135deg, #e9d8ff, #f0e6ff); /* pastel mor tonları */
  color: #3f0d75; /* koyu mor metin */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 15px 15px 20px 15px;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(300px); /* başlangıçta gizli */
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.donation-popup.show {
  transform: translateX(0);
  opacity: 1;
}

.donation-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

.popup-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Donate button */
.donation-popup .btn-purple {
  background-color: #b57edc;
  border: none;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  color: white;
  text-align: center;
  transition: background-color 0.3s ease;
}

.donation-popup .btn-purple:hover {
  background-color: #a16be0;
  color: white;
}