/* ======================================================= */
/*                    TABLE OF CONTENTS                    */
/*                                                         */
/*  1. Main Styles                                         */
/*  2. Pages                                               */
/*  3. Login Form                                          */
/*  4. Signup Form                                         */
/*  5. Mobile                                              */
/*  6. Navigation                                          */
/*  7. Footer                                              */
/*  8. Utilities                                           */
/* ======================================================= */

/* ======================================================= */
/*                   1. MAIN STYLES                        */
/* ======================================================= */

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url(/assets/images/bg4.png);
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center;
}

main {
  flex: 1;
  padding: 2rem;
  text-align: left;
}

section {
  padding: 20px 350px;
  color: rgb(227, 227, 227);
  line-height: 1.8rem;
}

::selection {
  color: var(--background-color);
  background-color: var(--primary-color);
}

* {
  -webkit-tap-highlight-color: transparent !important;
}

/* ========== MESSAGES ========== */

.success-message {
  color: var(--success);
}

.error-message {
  color: var(--error);
}

.js-message {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  margin: 10px 0;
  min-height: 20px;
}
.js-message.success {
  color: var(--success);
}
.js-message.error {
  color: var(--error);
}

/* ========== SEPARATORS ========== */

.separator-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 30px;
}
.separator-line {
  border-top: 1px solid var(--primary-color);
  width: 100%;
}
.separator-text {
  color: var(--primary-color);
  margin: 0 10px;
  font-size: 22px;
  font-family: "Cinzel";
}
/* ========== FONTS ========== */

@font-face {
  font-family: "OldEnglish";
  src: url(/assets/fonts/OldEnglish.ttf);
}

@font-face {
  font-family: "Montserrat";
  src: url(/assets/fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: "Cinzel";
  src: url(/assets/fonts/Cinzel.ttf);
}

@font-face {
  font-family: "Egyptian";
  src: url(/assets/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf);
}

/* ========== COLORS ========== */

:root {
  --text-color: #efeaf0;
  --text-color-darker: #aaaaaa;
  --background-color: #000000;
  --primary-color: #ffd700;
  --secondary-color: #fff799;
  --success: #009f00;
  --error: #e20000;
  --border-color: #4f4300;
  --border2: #fbf9c88f;
  --border2-focus: #fbf9c8;
  --border2-active: #fcf88b;
}
/* ========== MODALS ========== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3666);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.modal {
  background: black;
  color: white;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  filter: drop-shadow(0 0 40px rgb(0, 0, 0));
  box-shadow: 0 0 30px black;
  width: auto;
  border: solid 1px rgba(255, 217, 0, 0.4);
}

.modal button {
  padding: 10px 20px;
  margin: 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
  font-family: "Poppins";
  transition: 0.3s;
  border: none;
  background-color: var(--primary-color);
  color: black;
}

.modal button i {
  margin-right: 8px;
}

.modal button:hover {
  filter: brightness(110%);
}

.modal button:active {
  filter: brightness(90%);
}

/* == IMAGES == */

.image-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.image-overlay img {
  max-width: 90%;
  max-height: 80%;
}

.image-overlay .download-btn {
  margin-top: 20px;
  background: gold;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: black;
  text-decoration: none;
}

.download-btn i {
  margin-right: 8px;
}

.image-overlay .download-btn:active {
  background-color: darkgoldenrod;
}
.image-overlay .download-btn:hover {
  background-color: goldenrod;
}

/* ========== USER EDIT MODAL ========== */

.dashboardUserUpdateModal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.666);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

.dashboardUserUpdateModal-content {
  background-color: var(--background-color);
  box-shadow: 0 0 50px var(--background-color);
  filter: drop-shadow(0 0 20px var(--background-color));
  margin: auto;
  padding: 50px;
  border: 1px solid rgba(255, 217, 0, 0.266);
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
}

.dashboardUserUpdateModal-close {
  color: var(--primary-color);
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: 0.3s;
}

.dashboardUserUpdateModal-close:hover,
.dashboardUserUpdateModal-close:focus {
  color: var(--secondary-color);
  text-decoration: none;
  cursor: pointer;
}

.dashboardUserUpdateModal-input-group {
  margin-bottom: 15px;
}

.dashboardUserUpdateModal-input-group label {
  display: block;
  margin-top: 5px;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.dashboardUserUpdateModal-input-group input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  background: #000;
  color: var(--text-color);
  border: none;
  border-bottom: 2px solid var(--secondary-color);
  box-sizing: border-box;
  font-family: inherit;
  margin-bottom: 20px;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.dashboardUserUpdateModal-input-group input::placeholder {
  color: rgb(255, 255, 255);
  transition: color 0.3s ease;
}

.dashboardUserUpdateModal-input-group input:focus {
  border-bottom: 2px solid var(--primary-color);
  outline: none;
}

.dashboardUserUpdateModal-input-group input:focus + label {
  color: var(--primary-color);
}

.dashboardUserUpdateModal-input-group input:focus::placeholder {
  color: var(--primary-color);
}

.dashboardUserUpdateModal-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dashboardUserUpdateModal-select-styled {
  padding-bottom: 10px;
  background: #000;
  color: var(--text-color);
  cursor: pointer;
  border-bottom: 2px solid var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.dashboardUserUpdateModal-select-styled.focus {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.dashboardUserUpdateModal-select-options {
  display: none;
  position: absolute;
  top: 40px;
  background-color: #000000;
  box-shadow: 0 0 35px rgba(254, 242, 173, 0.273);
  border: solid 1px rgba(254, 242, 173, 0.273);
  z-index: 1000;
  width: 100%;
  transition: 0.2s;
}

.dashboardUserUpdateModal-select-options div {
  padding: 10px;
  cursor: pointer;
  color: var(--primary-color);
  transition: 0.1s;
}

.dashboardUserUpdateModal-select-options div:focus {
  background-color: rgba(255, 241, 159, 0.146);
  color: rgb(251, 233, 115);
}

.dashboardUserUpdateModal-select-hidden {
  display: none;
}

.dashboardUserUpdateModal-button {
  background-color: var(--secondary-color);
  color: var(--background-color);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboardUserUpdateModal-button:hover {
  background-color: var(--primary-color);
}
.dashboardUserUpdateModal-button:hover {
  background-color: goldenrod;
}

.dashboardUserUpdateModal-chevron {
  transition: transform 0.3s ease;
}

.dashboardUserUpdateModal-chevron.rotate {
  transform: rotate(180deg);
}

#dashboardUserUpdateModalForm > button > i {
  font-size: 22px;
  margin-right: 8px;
}

#dashboardUserUpdateModal > div > h2 i {
  margin-right: 8px;
}

#dashboardUserUpdateModal > div > h2 {
  color: var(--primary-color);
  margin-top: 0 !important;
  margin-bottom: 30px;
}
.password-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-container button {
  white-space: nowrap !important;
  margin-bottom: 15px;
}

.dashboardUserUpdateModal-button i {
  margin-right: 8px;
}

#dashboardUserUpdateModal-new-password {
  margin-right: 30px;
}

.dashboardUserUpdateModal-input-group input::placeholder {
  color: rgb(194, 194, 194) !important;
}
/* ========== SCROLL BAR ========== */

/* WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #333; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background-color: #ffd700; /* Gold color for the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
  border: 2px solid #333; /* Border around the thumb, matching the track background */
}

/* Firefox */
html {
  scrollbar-width: thin; /* Thinner scrollbar */
  scrollbar-color: #ffd700 #333; /* Gold thumb and dark track */
}

/* For Internet Explorer and Edge */
body {
  -ms-overflow-style: -ms-autohiding-scrollbar; /* Auto-hiding scrollbar */
}

::-ms-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

::-ms-scrollbar-track {
  background: #333; /* Background of the scrollbar track */
}

::-ms-scrollbar-thumb {
  background-color: #ffd700; /* Gold color for the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
  border: 2px solid #333; /* Border around the thumb, matching the track background */
}

/* ======================================================= */
/*                      2. PAGES                           */
/* ======================================================= */

.background-image {
  background-image: url("/assets/images/background2.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  filter: brightness(150%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7666);
}

.content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.447));
}

.content-main-page {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.447));
}

.btn-gold {
  width: 220px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #77530a,
    #ffd277,
    #77530a,
    #ffd277,
    #77530a,
    #ffd277,
    #77530a
  );
  background-size: 250%;
  background-position: left;
  color: #ffd277;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 1s;
  overflow: hidden;
  margin-top: 110px;
  opacity: 0;
  filter: brightness(120%);
}

.btn-gold::before {
  position: absolute;
  content: "ENTER THE HALL";
  color: #ffd277;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97%;
  height: 90%;
  border-radius: 8px;
  transition-duration: 1s;
  background-color: rgba(0, 0, 0, 0.842);
  background-size: 200%;
}

.btn-gold:hover {
  background-position: right;
  transition-duration: 1s;
}

.btn-gold:hover::before {
  background-position: right;
  transition-duration: 1s;
}

.btn-gold:active {
  transform: scale(0.95);
}

.hidden {
  display: none;
}

/* ======= MAIN SECTION ====== */

.welcome {
  font-size: 22px;
}

.username {
  color: var(--primary-color);
  font-weight: bold;
}

.accent {
  color: var(--secondary-color);
  font-weight: bold;
}

.accent i {
  font-size: 20px;
  margin: 0 3px;
}

h1 {
  font-family: "Cinzel";
  font-size: 30px;
  color: var(--secondary-color);
}

.egyptian {
  font-family: "Egyptian";
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary-color);
}

.subtitles {
  color: var(--primary-color);
  margin: 0;
  margin-top: 20px;
  padding: 0;
}

.subtitles-small {
  color: var(--text-color-darker);
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 15px;
}

/* ======= DONATION PAGE ====== */



.donation-container {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  margin: auto;
  gap: 20px;
  margin-bottom: 80px;
}

.donation-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}

.donation-form input[type="text"],
.donation-form select {
  flex-grow: 1;
  border: none;
  border-bottom: 2px solid #fff799;
  background-color: #080609;
  color: #efeaf0;
  transition: border-bottom-color 0.3s ease;
  text-align: left;
  padding: 10px 0;
  box-sizing: border-box;
}

.donation-form input[type="text"]:focus,
.donation-form select:focus {
  border-bottom-color: #ffd700;
  outline: none;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.custom-select {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.custom-select select {
  display: none;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #080609;
  color: #838383;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 2px solid #fff799;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-select-trigger.active span,
.custom-select-trigger span.selected {
  transition: 0.3s;
  color: #fff;
}

.custom-select-trigger.active {
  border-bottom: 2px solid #ffd700;
}

.custom-select-trigger i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.custom-options {
  position: absolute;
  display: none;
  flex-direction: column;
  background-color: #080609;
  border-bottom: 2px solid #ffd700;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  z-index: 5;
  box-sizing: border-box;
}

.custom-option {
  padding: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 13px;
  color: #d5d5d5;
}

.custom-option:hover,
.custom-option.selected {
  background-color: #ffd700;
  color: #080609;
}

/* Custom scrollbar styles */

.custom-options::-webkit-scrollbar {
  width: 8px;
}

.custom-options::-webkit-scrollbar-thumb {
  background-color: #ffd700;
  border-radius: 5px;
}

.donation-form input[type="file"] {
  display: none;
}

.donation-form .file-label label {
  background-color: var(--secondary-color);
  color: #080609;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-size: 13px;
  margin: 8px auto;
  margin-right: 10px;
  padding: 6px 16px;
  transition: 0.3s;
}

.donation-form .file-label label:hover {
  filter: brightness(90%);
}

.donation-form .file-name {
  color: #838383;
  margin-left: auto;
  font-size: 13px;
}

.filter-buttons button,
.donation-form button {
  padding: 10px 15px;
  border-radius: 20px;
  border: none;
  background-color: #ffd700;
  color: #080609;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  font-size: 13px;
  font-family: "Poppins";
}
.filter-buttons button.active {
  background-color: rgb(255, 255, 176);
}

.filter-buttons button:hover,
.donation-form button:hover {
  background-color: #fff799;
}

.recent-donation .amount,
.recent-donation .coin,
.recent-donation .amount_in_coin {
  margin-bottom: 10px;
}

.recent-donation .date {
  color: var(--secondary-color);
}

.recent-donation .date.verified {
  color: var(--success);
}

.checkmark {
  color: var(--success);
  margin-left: 5px;
}

.pending {
  color: #808080;
}

.proof {
  margin-top: 10px;
}

.proof-image {
  max-width: 100%;
  height: auto;
}

/* ============= DASHBOARD ============ */

/* === USER MANAGEMENT===  */

.um-user-management-container-users,
.um-user-management-container {
  padding: 20px;
  margin-bottom: 30px;
  margin: 0 auto;
  width: 100%;
  font-size: 15px;
}
.um-titles-users,
.um-titles {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.um-message {
  margin-bottom: 20px;
  text-align: left;
}

.um-message.success {
  color: var(--success);
}

.um-message.error {
  color: var(--error);
}
.um-table {
  width: 100%;

  border-collapse: collapse;
  margin-bottom: 20px;
}

.um-table th,
.um-table td {
  padding: 15px;
  text-align: left;
}

.um-table th {
  background: linear-gradient(to bottom, #fbefaf, #ffd54a);
  color: var(--background-color);
  border: solid 1px var(--background-color);
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}
.um-table th:hover {
  filter: brightness(110%);
}
.um-table th:active {
  filter: brightness(90%);
}
.um-table td {
  border-bottom: 1px solid var(--border-color);
}

.um-table td:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.um-table tr {
  transition: 0.3s;
}
.um-table tr:hover {
  background-color: rgba(35, 30, 0, 0.599);
  color: rgb(255, 240, 153);
}

.um-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  display: flex;
  justify-content: center;
}

.um-select-styled {
  padding: 5px 16px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
#sort-tier {
  width: 20%;
}
.um-button:hover,
.um-select-styled:hover {
  color: var(--secondary-color);
}

.um-button:active,
.um-select-styled:active {
  filter: brightness(90%);
}

.um-select-options {
  display: none;
  position: absolute;
  top: 40px;
  background-color: #000000;
  box-shadow: 0 0 35px rgba(254, 242, 173, 0.273);
  border: solid 1px rgba(254, 242, 173, 0.273);
  z-index: 1000;
}

.um-select-options div {
  padding: 10px;
  cursor: pointer;
  color: var(--primary-color);
  transition: 0.1s;
}

.dashboardUserUpdateModal-select-options div:hover,
.um-select-options div:hover {
  background-color: rgba(255, 241, 159, 0.146);
  color: rgb(251, 233, 115);
}

.um-select {
  display: none;
}

.um-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.um-button {
  background-color: transparent;
  color: var(--secondary-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 16px;
  transition: 0.3s;
  border: solid 2px rgba(254, 242, 173, 0.273);
}

.um-button:hover {
  background-color: var(--primary-color);
  color: #222;
}

.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

#toggleTableUsers,
#toggleTablePendUsers {
  font-size: 13px;
  cursor: pointer;
  background-color: #333;
  color: #fafadc;
  padding: 5px 16px;
  border-radius: 16px;
  transition: 0.3s;
  user-select: none;
}

#toggleTableUsers i,
#toggleTablePendUsers i {
  margin-right: 8px;
}

#toggleTableUsers:hover,
#toggleTablePendUsers:hover {
  filter: brightness(120%);
}

#toggleTableUsers:active,
#toggleTablePendUsers:active {
  filter: brightness(90%);
}

.um-user-management-container-users,
.um-titles-users,
.um-user-management-container,
.um-titles {
  transition: margin-bottom 0.5s ease;
}

.margin-zero {
  margin-bottom: 0 !important;
}

.status-banned {
  background-color: rgba(255, 0, 0, 0.08);
}

.clergy-row {
  color: gold;
  font-weight: bold;
  background-color: rgba(0, 85, 255, 0.273);
}
.clergy-row:hover {
  background-color: rgba(0, 85, 255, 0.373) !important;
}
.golden-row {
  color: rgb(255, 243, 177);
  background-color: rgba(254, 219, 24, 0.06);
}

.golden-row:hover {
  background-color: rgba(250, 212, 0, 0.217) !important;
}

.status-suspended {
  background-color: rgba(255, 106, 0, 0.08);
}

.status-banned:hover {
  background-color: rgba(255, 0, 0, 0.15) !important;
}

.status-suspended:hover {
  background-color: rgba(255, 106, 0, 0.15) !important;
}

.um-table tbody tr.verified-row {
  background-color: rgba(0, 128, 0, 0.254);
  color: white;
  transition: 0.3s;
}

.um-table tbody tr.verified-row:hover {
  filter: brightness(120%);
}

#donationsTable > tbody > tr > td:nth-child(6),
#donationsTable > tbody > tr > td:nth-child(5) {
  text-align: center;
}
#donationsTable > tbody > tr > td > a {
  color: var(--secondary-color);
  text-align: center;
  padding: 12px;
  border: solid 2px rgba(254, 242, 173, 0.273);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

#donationsTable > tbody > tr > td > a > i {
  margin-right: 8px;
}
#donationsTable > tbody > tr > td > a:hover {
  border: solid 2px var(--primary-color);
  background-color: var(--primary-color);
  color: black;
}

#donationsTable > tbody > tr > td > a:active {
  filter: brightness(90%);
}
/* ======================================================= */
/*                   3. LOGIN FORM                         */
/* ======================================================= */

.login-container {
  background-color: black;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.login-form {
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
}

.login-form h1 {
  margin-bottom: 80px;
  font-size: 24px;
  color: var(--secondary-color);
}

.input-group {
  position: relative;
  margin-bottom: 60px;
  text-align: left;
  display: flex;
  align-items: center;
}

.input-group:nth-child(5) {
  margin-bottom: 20px;
}

.input-group label {
  position: absolute;
  top: 10px;
  left: 40px;
  font-size: 14px;
  color: #efeaf0;
  transition: 0.2s ease all;
  pointer-events: none;
}

.input-group input {
  width: 100%;
  padding: 10px;
  padding-left: 40px;
  border: none;
  border-bottom: 1px solid var(--secondary-color);
  background: #080609;
  color: #efeaf0;
  outline: none;
  font-size: 16px;
  transition: 0.3s;
  font-family: "Montserrat";
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -20px;
  font-size: 12px;
  color: var(--secondary-color);
}

.input-group i {
  position: absolute;
  left: 10px;
  color: var(--secondary-color);
}

.link-group {
  display: block;
  font-size: 12px;
  color: var(--text-color);
  text-decoration: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
}
.link-group span {
  color: var(--secondary-color);
  margin-left: 10px;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
.link-group span:hover {
  color: var(--primary-color);
}

.login-form button {
  padding: 12px 36px;
  border: none;
  border-radius: 8px;
  border: solid 2px var(--primary-color);
  background-color: var(--background-color);
  color: var(--primary-color);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 26px;
}

.login-form button i {
  margin-right: 5px;
}

.login-form button:hover {
  border: solid 2px var(--primary-color);
  background-color: var(--primary-color);
  color: var(--background-color);
}

/* Style for the messages */
.message-container {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  z-index: 1000;
}

.message-container .message {
  font-size: 12px;
  color: gold;
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
}

.message-container .success-message {
  color: gold;
}

.message-container .warning-message {
  color: orange;
}

.message-container .error-message {
  color: red;
}

/* === FILE MANAGEMENT === */

.upload-container {
  border-radius: 8px;
  margin-bottom: 50px;
  padding: 30px;
  transition: 0.5s;
  border: solid 1px var(--border-color);
}

.upload-container:hover {
  border: solid 1px rgba(248, 232, 140, 0.536);
}

.upload-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upload-container h2 {
  margin-top: 0;
  font-size: 1.5em;
  color: var(--secondary-color);
  padding-bottom: 10px;
  transition: 0.3s;
}

.upload-container label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.upload-container input[type="file"] {
  display: block;
  margin-top: 10px;
}

.upload-container button {
  margin-top: 20px;
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  width: 30%;
  font-family: inherit;
}

.upload-container button:hover {
  background-color: var(--secondary-color);
}

/* ========= EXCLUSIVE CONTENT PAGE ========== */

.category {
  margin-bottom: 40px;
}

.category-header {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 20px 0;
  margin-bottom: 40px;
}

.category-header h2 {
  color: var(--primary-color);
  margin: 0;
  padding: 0 10px;
  white-space: nowrap;
}

.category-header::before,
.category-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--primary-color);
}

.entry {
  background-color: #ffffff0e;
  border: 2px solid #ffffff4c;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  transition: 0.666s;
}

.entry:last-child {
  margin-bottom: 80px;
}

.entry:hover {
  border: 2px solid #f4f089;
  box-shadow: 0 0 25px #fffdb682;
  background-color: #ffdd0013;
}

.entry h4 {
  margin: 0 0 10px;
  color: var(--border2-focus);
  font-size: 20px;
}

.entry p {
  margin: 0 0 30px;
}

.download-button {
  display: inline-block;
  padding: 4px 12px;
  background-color: transparent;
  color: var(--border2-focus) d7;
  text-decoration: none;
  border-radius: 8px;
  border: solid 2px var(--border2);
  transition: 0.3s ease;
}

.download-button i {
  margin-right: 8px;
  font-size: 18px;
}

.download-button:hover {
  color: #fffdb6;
  border: solid 2px #fffdb6;
}
.download-button:active {
  color: var(--border2-active);
  border: solid 2px var(--border2-active);
}
/* =========== EXCLUSIVE CONTENT WIDGET =========== */

.help-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 10000;
}

.widget {
  display: flex;
  flex-direction: column;
  background-color: #151515;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 15px;
  position: absolute;
  right: 55px;
  bottom: 0;
  width: 200px;
  box-shadow: 0 0 4px var(--primary-color);
  display: none;
  align-items: flex-start;
  user-select: none;
}

.widget::after {
  content: "";
  position: absolute;
  top: 270px;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--primary-color);
}

.toggle-button i,
.top-button i {
  font-size: 20px;
  background-color: var(--primary-color);
  color: black;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(255, 217, 0, 0.613);
}

.toggle-button,
.top-button {
  transition: 0.3s;
}

.toggle-button:hover,
.top-button:hover {
  filter: brightness(120%);
}

.toggle-button:active,
.top-button:active {
  filter: brightness(90%);
}

.top-button {
  display: none;
}

.widget .header {
  font-weight: bold;
  margin-bottom: 10px;
  cursor: default;
  color: var(--primary-color);
}

.widget span {
  margin: 5px 0;
  cursor: pointer;
  color: var(--text-color);
  display: block;
  padding: 5px 8px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.widget span:not(.header):hover {
  background-color: rgba(255, 217, 0, 0.101);
}

.active-filter {
  font-weight: bold;
  color: var(--secondary-color) !important;
  text-shadow: 0 0 15px var(--secondary-color) !important;
}

/* ========== DONOR PERKS PAGE =========== */

.perks-container {
  border: solid 2px rgba(255, 217, 0, 0.534);
  padding: 30px 50px;
  border-radius: 16px;
  margin-bottom: 80px;
  transition: 1.666s;
}
.perks-container:hover {
  border: solid 2px var(--primary-color);
  box-shadow: 0 0 50px rgba(255, 217, 0, 0.461);
}

.contentTimestamp h6 {
  margin-top: -10px !important;
  color: red !important;
}

.astrology-inquiries-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.astrology-inquiries-form fieldset {
  border: 2px solid #fffd6f39;
  border-radius: 10px;
  padding: 40px;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 5s;
}

.astrology-inquiries-form legend {
  font-size: 1.4em;
  color: #f1c40f;
  font-weight: bold;
  padding: 0 10px;
}

.astrology-inquiries-form label {
  font-weight: bold;
  color: #f1f1f1;
  display: block;
  transition: color 0.3s;
}

.astrology-inquiries-form label.focused {
  color: var(--border2-focus);
}

.astrology-inquiries-form textarea {
  width: 100%;
  border: none;
  padding: 10px 0;
  font-size: 1em;
  background-color: #000000;
  color: var(--text-color);
  resize: none;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: solid 1px var(--border2);
  transition: border-bottom 0.3s;
  font-family: inherit;
}

.astrology-inquiries-form fieldset:hover {
  border: solid 2px var(--primary-color);
}

.astrology-inquiries-form textarea:focus {
  border-bottom: solid 1px var(--border2-focus);
  outline: none;
}

.astrology-inquiries-form input[type="submit"] {
  align-self: left;
  width: 20%;
  padding: 10px 50px;
  background-color: #f1c40f;
  color: #1a1a1a;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  font-family: inherit;
  transition: 0.3s;
}

.astrology-inquiries-form input[type="submit"]:hover {
  background-color: #d4ac0d;
}
.birth-chart-details {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 20px;
  font-family: inherit;
  color: #fff;
}

.birth-chart-details-input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.birth-chart-details-input-group div {
  display: flex;
  gap: 5px;
  align-items: center;
}

.birth-chart-details-input-group label {
  margin-right: 5px;
  font-family: inherit;
  color: #fff;
}

.birth-chart-details-input-group input[type="text"] {
  border: none;
  border-bottom: 1px solid var(--border2);
  outline: none;
  font-family: inherit;
  padding: 10px 0;
  background-color: transparent;
  color: #fff;
  transition: 0.3s;
}

.birth-chart-details-input-group input[type="text"]:focus {
  border-bottom: 1px solid var(--border2-focus);
}

.birth-chart-details-input-group input[type="radio"] {
  display: none;
}

.radio-label {
  display: inline-block;
  padding: 0 10px;
  border: 2px solid var(--border2);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  background-color: transparent;
  user-select: none;
  font-size: 14px;
  transition: 0.3s !important;
}

.radio-label:hover {
  border: 2px solid var(--border2-focus);
}

.birth-chart-details-input-group input[type="radio"]:checked + .radio-label {
  background-color: var(--secondary-color);
  color: #000;
  border: 2px solid var(--secondary-color);
}

.birth-chart-details-input-group input[type="radio"] + .radio-label {
  margin-left: 10px;
}

#astrology-msg {
  margin-bottom: 30px;
  color: var(--success);
}

#astrology-msg-error {
  margin-bottom: 30px;
  color: var(--error);
}

/* Astrology */

#readings {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
}

.reading {
  border: 2px solid var(--border2);
  padding: 30px;
  border-radius: 15px;
  transition: 0.666s;
  background-color: #ffcc0011 !important;
}

.reading:hover {
  border: 2px solid #f4f089;
  box-shadow: 0 0 25px #fffdb682;
  background-color: #ffdd0013;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.row span {
  font-size: 20px;
  color: var(--border2-focus);
}

.reading button {
  padding: 10px 15px;
  color: var(--text-color);
  border: 2px solid var(--border2);
  background-color: var(--background-color);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: bold;
  transition: 0.3s;
}

.reading button i {
  font-size: 22px;
  margin-left: 8px;
}

.reading button:hover {
  border: 2px solid var(--border2-focus);
}

.reading button:active {
  border: 2px solid var(--border2-active);
}

.reading-text {
  margin-top: 15px;
  color: var(--text-color);
  line-height: 1.6;
  display: none;
}

/* Dashboard Astrology */

.status-delivered {
  color: #28a745;
  font-weight: bold;
}

.status-pending {
  color: #007bff;
  font-weight: bold;
}

.status-delivered i {
  margin-left: 5px;
}

#messagePlaceholder {
  margin: 10px 0;
  padding: 10px;
  display: none;
  border-radius: 5px;
}

#messagePlaceholder.success {
  color: var(--success);
  display: block;
}

#messagePlaceholder.error {
  color: var(--error);
  display: block;
}

.gold-bold {
  font-weight: bold !important;
  color: var(--secondary-color) !important;
}

.gold-separator {
  font-weight: bold !important;
  color: var(--primary-color) !important;
  margin: 0 10px !important;
}

.inquiry-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.666);
  justify-content: center;
  align-items: center;
}

.inquiry-modal-content {
  background-color: rgb(0, 0, 0);
  padding: 20px;
  border: 2px solid var(--border-color);
  width: 80%;
  color: white;
  box-shadow: 0 0 80px rgb(0, 0, 0);
  border-radius: 16px;
  max-height: 80%;
}

.inquiry-content {
  padding: 20px;
  overflow-y: auto;
  max-height: 600px;
}

#addReadingModal .inquiry-modal-content {
  padding: 50px;
  border: 2px solid var(--border2);
  width: 70%;
  color: white;
  box-shadow: 0 0 80px 20px rgba(255, 221, 0, 0.233);
  border-radius: 16px;
  max-height: 80%;
  overflow-y: auto;
}
#toolbar {
  margin-bottom: 10px;
}

#toolbar button {
  background: none;
  border: 2px solid #ccc;
  padding: 5px;
  cursor: pointer;
}

#toolbar button:hover {
  background-color: #ddd;
}

#editor {
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 200px;
}

#addReadingModal > div > h2 {
  color: var(--border2-active);
}
/* Editor */

#addReadingForm
  > div.tox.tox-tinymce
  > div.tox-editor-container
  > div.tox-statusbar
  > div.tox-statusbar__text-container.tox-statusbar__text-container-3-cols.tox-statusbar__text-container--flex-start
  > div.tox-statusbar__right-container
  > span {
  display: none !important;
}

.tox .tox-edit-area__iframe {
  background-color: black !important;
  color: var(--text-color) !important;
}

.mce-content-body {
  background-color: black !important;
  color: var(--text-color) !important;
}

.tox .tox-statusbar {
  display: none !important;
}

.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary {
  background-color: var(--border2-focus) !important;
}

.tox:not(.tox-tinymce-inline) .tox-editor-header {
  background-color: var(--border2-focus) !important;
}

.tox-tinymce {
  border: 2px solid var(--border2-focus) !important;
}

.tox .tox-tbtn:hover {
  background: var(--secondary-color) !important;
  color: #000000 !important;
}
.tox .tox-tbtn:active {
  background: var(--primary-color) !important;
  color: #000000 !important;
}

.tox .tox-tbtn {
  transition: 0.1s;
}

.tox .tox-collection--list .tox-collection__item--active {
  background-color: var(--secondary-color) !important;
}

.tox .tox-tbtn:hover {
  background: var(--secondary-color) !important;
}

.tox .tox-tbtn:focus,
.tox .tox-tbtn:active {
  background: var(--primary-color) !important;
}

.tox .tox-tbtn--enabled,
.tox .tox-tbtn--enabled:hover {
  background: var(--primary-color) !important;
}

.tox .tox-dialog-wrap__backdrop {
  background-color: rgba(0, 0, 0, 0.313) !important;
}

/* ======================================================= */
/*                   4. SIGNUP FORM                        */
/* ======================================================= */

.gold-text {
  font-size: 12px !important;
  width: 300px;
  margin: 100px 0;
  padding: 0 !important;
  text-align: left !important;
  display: none;
}

.signup-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: var(--text-color);
}

.form-container {
  padding: 20px;
  border-radius: 10px;
}

.step {
  margin-bottom: 20px;
}

.label {
  display: block;
  margin-bottom: 30px;
  font-size: 18px;
  color: var(--secondary-color);
}

.input-container {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--secondary-color);
  position: relative;
}

#step2 > div > i,
#step1 > div > i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 20px;
}

.random-button {
  position: absolute;
  right: -8px;
}

.random-button i {
  color: var(--primary-color);
  transition: 0.3s;
  font-size: 20px;
}

.next-button:hover,
.random-button i:hover {
  filter: brightness(120%);
}

.next-button:active,
.random-button i:active {
  filter: brightness(90%);
}

.next-button {
  position: absolute;
  right: -50px;
  padding: 10px;
  border: none;
  background: none;
  color: var(--background-color) !important;
  cursor: pointer;
  transition: color 0.3s;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color) !important;
  border-radius: 8px;
  transition: 0.3s;
}

#register {
  padding: 10px;
  border: none;
  background: none;
  color: var(--primary-color);
  cursor: pointer;
  transition: opacity 0.5s;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color) !important;
  border: solid 2px var(--primary-color);
  border-radius: 8px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  text-transform: uppercase;
}

   #register-buttonContainer {
            position: relative;
            display: flex;
            align-items: center;
              margin-top: 30px;

        }

   #register i {
            margin-right: 8px;
        }

        #register:disabled {
            opacity: 0.7 !important;
            cursor: default;
        }

        .spinner {
            display: none;
            border: 4px solid var(--primary-color);
            border-top: 4px solid var(--background-color);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            animation: spin .5s linear infinite;
            margin-left: 10px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

#register:hover {
  background-color: var(--primary-color) !important;
  color: var(--background-color);
}

#register > i {
  margin-right: 5px;
}

.next-button i {
  font-size: 20px;
}

.input-container input {
  width: 250px;
  padding: 10px;
  border: none;
  background-color: transparent;
  color: var(--text-color);
  outline: none;
  font-family: "Montserrat";
}

.input-container button {
  margin-left: 10px;
  padding: 10px;
  border: none;
  background-color: transparent;
  color: var(--secondary-color);
  cursor: pointer;
}

.input-container button:hover {
  color: var(--text-color);
}

#step3 {
  font-size: 18px;
  width: 50%;
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.primary-btn {
  margin-top: 50px;
  outline: none;
  border: solid 2px var(--primary-color);
  padding: 10px 16px;
  background-color: var(--background-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
}

.primary-btn:active {
  filter: brightness(90%);
}

.message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  color: var(--primary-color);
  text-align: center;
  border-radius: 10px;
  z-index: 1000;
  font-size: 22px;
}

.pop-up:hover {
  filter: brightness(120%);
}

.warning {
  margin-top: 16px;
  font-size: 13px;
  color: rgb(108, 108, 108);
}
/* ======================================================= */
/*                   5. MOBILE                             */
/* ======================================================= */

/* Media queries for responsiveness */
@media (max-width: 600px) {
  .content img {
    width: 300px;
    max-width: 599px !important;
    height: auto;
  }

  #mainTab > div > div > img:nth-child(2) {
    width: 420px;
  }
  .btn-gold {
    font-size: 0.9em;
    margin-top: 88px;
  }

  .signup-container {
    display: flex;
    flex-direction: column !important;
  }
  .login-container {
    padding: 30px;
  }

  .next-button {
    flex-direction: column;
  }

  .form-container {
    margin-left: -40px;
  }

  .step {
    margin-bottom: 20px;
    width: 80% !important;
    margin: 0 auto;
  }
  #step3 {
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 40px;
  }

  #step3 > img {
    width: 300px !important;
    margin-left: -40px;
  }

  .message {
    width: 80%;
  }

  #closeButton {
    margin-left: -40px;
  }

  .background-image {
    background-image: none;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .content img {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .btn-gold {
    font-size: 0.9em;
  }
}

/* ======================================================= */
/*                   6. NAVIGATION BAR                     */
/* ======================================================= */

header {
  background-color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  border-bottom: solid 1px rgba(255, 217, 0, 0.289);
  box-shadow: 0 0 18px 10px rgba(255, 238, 0, 0.157);
  background: linear-gradient(to bottom, #272727, #000000);
}

.unread-count-navbar {
  background-color: red;
  border-radius: 5px;
  color: white !important;
  padding: 2px 5px;
  /*margin-left: 5px !important;*/
  font-size: 13px !important;
  font-weight: bold !important;
  position: relative !important;
  display: inline-block;
  min-width: 15px;
  min-height: 15px;
  line-height: 15px;
  text-align: center;
  font-family: inherit;
  user-select: none;
}


.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.5s;
}

.logo:hover {
  filter: brightness(180%) drop-shadow(0 0 10px rgba(246, 227, 120, 0.401));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-item a {
  color: #ffd700;
    text-decoration: none;
    padding: 1.2rem 0.5rem;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.102);
  border-radius: 5px;
  color: #ffe96e;
}

.nav-item a:active {
  background-color: rgba(131, 131, 131, 0.102);
  border-radius: 5px;
  color: #b99e00;
}

ul > li > a > i {
  margin-right: 0.8rem;
  font-size: 20px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgb(58, 58, 58);
  border: solid 1px gold;
  list-style: none;
  padding: 1rem 0;
  width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu li a {
  padding: 0.5rem 1rem;
  display: block;
  color: #ffd700;
  font-size: 1rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
/* ========== MOBILE NAVIGATION ========== */

.mobile-navbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #333, #000);
  padding: 10px;
  position: relative;
  border-bottom: solid 1px rgba(255, 217, 0, 0.273);
  box-shadow: 0 2px 20px 0 rgba(255, 217, 0, 0.472);
}

.mobile-logo {
  display: flex;
  align-items: center;
}

.mobile-logo-image {
  margin-right: 10px;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: -70%;
  z-index: 1002;
  padding-top: 60px;
  transition: left 0.3s ease;
  border-right: solid 1px rgba(255, 217, 0, 0.45);
  box-shadow: 10px 0 50px 0 rgba(0, 0, 0, 0.785);
  background: linear-gradient(to right, #1f1f1f, #151515);
  overflow: auto;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
}

.mobile-nav-link {
  text-decoration: none;
  padding: 15px;
  display: block;
  width: 100%;
  border-bottom: solid 1px rgb(60, 51, 0);
  color: #ffd700;
  text-decoration: none;
  padding: 1.2rem 1.8em;
  font-size: 1rem;
  transition: background 0.3s;
}
.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.102);
  border-radius: 5px;
  color: #ffe96e;
}

#mobileNavLinks > li > a > span {
  margin-left: 10px;
  background-color: gold;
  color: black;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 30%;
}
.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  text-shadow: 0 0 15px black;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px;
  transition: 0.4s;
}

.hamburger.open .line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.open .line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.overlay--mobile {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3666);
  z-index: 1000;
}

.overlay--mobile.active {
  display: block;
}

@media (max-width: 1200px) {
  .navbar {
    display: none;
  }

  .mobile-navbar {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav-links.active {
    left: 0;
  }

  section {
    padding: 20px 5px !important;
  }

  .perks-container {
    padding: 10px 30px;
    margin-bottom: 30px;
  }

  .row span {
    font-size: 18px;
  }

  .row {
    margin-bottom: 10px;
    flex-direction: column;
    gap: 30px;
  }

  .reading button {
    padding: 10px 10px;
  }

  main {
    padding: 1.5rem;
  }

  .placeholder {
    padding: 20px 0 !important;
  }

  .main-button,
  .placeholder a {
    color: black;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    background-color: var(--primary-color);
    border-radius: 16px;
    transition: 0.3s;
  }
  .titles {
    margin-bottom: 30px !important;
    font-size: 1.6em;
  }

  #sendMessageButton {
    font-size: 14px !important;
    width: 70% !important;
    margin-bottom: 25px;
  }

  .account---form {
    width: 100%;
    padding: 0 10px;
  }

  .account---input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .account---input {
    width: 100% !important;
  }

  .account---button {
    margin-top: 10px;
  }

  #passwordForm > div > div > button:nth-child(2),
  #emailForm > div > div > button {
    margin: 1px 0 0 0 !important;
    width: 100%;
  }

  #password {
    margin-bottom: 20px;
  }

  .img-content img {
    width: 90%;
  }

  .admin-navbar {
    display: none !important;
  }

  .centered-images img {
    width: 98% !important;
  }

  #submitBlessing {
    width: auto !important;
  }

  .card-container {
    width: auto !important;
  }
  .older-announcement {
    margin-bottom: 20px;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.older-announcement a {
    color: var(--primary-color);
    text-decoration: none;
    transition: .3s;
    line-height: 1.5;
}
    .perks-container {
        padding: 10px;
    }

    .birth-chart-details,
    fieldset {
        display: block;
       flex-direction: column !important;
       margin-bottom: 20px;
    }
    
    .astrology-inquiries-form legend {
    font-size: 1.1em;
}
.astrology-inquiries-form input[type="submit"] {
   width: 100%;
       margin-bottom: 80px !important;

}

    .birth-chart-details-input-group,
    .time-group,
    label,
    input[type="text"],
    input[type="radio"],
    textarea,
    #astrologyForm,
    #astrology-msg,
    .row,
    .download-btn {
        width: 100%;
        display: block;
        margin-bottom: 15px;
    }

    .time-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .reading {
        width: 100%;
    }

    .row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .download-link {
        display: block;
        margin-top: 5px;
    }

    input[type="text"],
    textarea {
        padding: 10px;
        font-size: 16px;
    }

    .download-btn {
        font-size: 18px;
        padding: 10px;
    }

    #astrology-msg {
        font-size: 14px;
    }

.perks-container:hover {
    border: none!important;
    box-shadow: none !important;
}
.perks-container {
    border: none !important;
    padding: 0px !important;
        box-shadow: none !important;

}
hr{
    display: block !important;
    border-bottom: none;
    border: solid 1px var(--border-color);
}
.titles:not(first-child) {
    margin-top: 50px;
}
}

/* ========== DASHBOARD NAVIGATION ========== */

.admin-navbar {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 50px;
  border-top: solid 1px rgba(255, 217, 0, 0.289);
  box-shadow: 0 0 18px 10px rgba(255, 238, 0, 0.157);
  background: linear-gradient(to bottom, #272727, #000000);
  position: fixed;
  bottom: 0;
  z-index: 100;
}

.admin-navbar span {
  position: absolute;
  left: 0;
  font-size: 15px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  margin: 0 20px;
  transition: 0.3s;
}

#showNav {
  position: fixed;
  bottom: 25px;
  left: 20px;
  display: none;
  font-size: 20px;
  color: rgb(98, 97, 97);
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  font-size: 14px;
}

#showNav:hover,
.admin-navbar span:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 15px var(--secondary-color);
}
#showNav:active,
.admin-navbar span:active {
  color: var(--primary-color);
  text-shadow: 0 0 15px var(--primary-color);
}

.admin-navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  user-select: none;
}

.admin-navbar ul li {
  display: inline;
  margin: 0 15px;
}

.admin-navbar ul li a {
  text-decoration: none;
  color: rgb(243, 237, 200);
  font-size: 15px;
  transition: 0.3s;
  padding: 15px 8px;
  user-select: none;
}

.admin-navbar ul li a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 15px var(--secondary-color);
}

.admin-navbar ul li a:active {
  color: var(--primary-color);
  text-shadow: 0 0 15px var(--primary-color);
}

.admin-navbar ul li a i {
  margin-right: 8px;
}

.bottomNav-Active {
  color: gold !important;
  text-shadow: 0 0 15px gold;
  font-weight: 666;
}
.bottomNav-Active:hover {
  color: rgb(245, 224, 109) !important;
  text-shadow: 0 0 15px rgb(245, 224, 109) !important;
}
/* ======================================================= */
/*                      7. FOOTER                          */
/* ======================================================= */

footer {
  text-align: center;
  padding: 1rem;
  border-top: solid 1px rgba(255, 217, 0, 0.289);
  box-shadow: 0 0 18px 10px rgba(255, 238, 0, 0.05);
  background: linear-gradient(to bottom, #161616, #000000);
  color: #ffd700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer > img {
  position: absolute;
  top: -50px;
  margin: 0 !important;
}

footer > .footer-links {
  display: flex;
  gap: 30px;
}

footer > .footer-links > a {
  text-decoration: none;
  font-size: 14px;
  color: var(--secondary-color);
  transition: 0.3s;
}

footer > .footer-links > a:hover {
  color: var(--primary-color);
}

footer > .footer-links > a:active {
  filter: brightness(90%);
}

footer > p:nth-child(2) {
  margin-top: 50px;
  font-size: 30px;
  font-family: "Cardo", serif;
  color: var(--primary-color);
}

footer > p:nth-child(4) {
  margin-top: 26px;
  font-size: 13px;
  color: rgb(158, 157, 157);
  line-height: 1.4rem;
}

body > div > footer > p:nth-child(4) > b {
  color: var(--text-color);
  font-size: 15px;
}

.contributors-container {
  margin: 50px 0;
}

.contributor-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px 0;
  padding-bottom: 10px;
}

.contributor-wrapper:not(:last-child) {
  border-bottom: solid 2px var(--border-color);
}

.contributor-card {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.contributor-card a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.contributor-card a:hover {
  color: var(--secondary-color);
}

.contributor-card img {
  border: solid 2px gold;
}

.contributor-card i {
  margin-right: 8px;
}

.notification-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background-color: gold;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.5s ease-in-out;
  z-index: 1000;
}

/* Loader */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#loader:after {
  content: "";
  border-radius: 50%;
  width: 6em;
  height: 6em;
  border-top: 0.3em solid rgba(255, 215, 0, 0.2);
  border-right: 0.3em solid rgba(255, 215, 0, 0.2);
  border-bottom: 0.3em solid rgba(255, 215, 0, 0.2);
  border-left: 0.3em solid #ffd700;
  animation: load8 0.5s infinite linear;
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
