/* ================================
   GLOBAL STYLES
================================= */
body {
  background-color: #1a2030;
  color: white;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 200px;
  }
}

/* ================================
   NAVBAR
================================= */
.navbar.sticky-top {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* ================================
   MAIN SECTION
================================= */
.main {
  background-color: transparent;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
}

.main p,
.main li {
  color: whitesmoke;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.2px;
  margin-bottom: 1rem;
}

.main h2,
.main h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ================================
   BUTTONS
================================= */
.button,
.btn {
  background-color: #ffc107;
  color: black;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

/* ================================
   CONTACT FORM
================================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 5px;
  border: none;
}

/* ================================
   PROFILE SECTION
================================= */
.profile-link a {
  color: #ffc107;
  text-decoration: none;
  margin: 0 5px;
  font-size: 1.2rem;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.about-person {
  text-align: center;
  margin-bottom: 2rem;
}

/* ================================
   MODAL STYLING
================================= */
.modal-content {
  background: rgba(0, 0, 0, 0.75) !important;
  color: white;
  padding: 2rem;
  font-family: 'Open Sans', sans-serif;
  border: none !important;
  margin: auto;
  display: block;
  width: 80%;
  
}

.modal-body {
  padding: 0 !important;
}

.modal-body img {
  object-fit: contain !important;
  width: 80% !important;
  height: 80% !important;
}

.modal-content p,
.modal-content h2 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}


.modal-content-window {
  background: transparent;
  border: none;
  box-shadow: none;

}
/* ================================
   MODAL: Success Message
================================= */
.custom-success-modal {
  background-color: #ffc107 !important;
  border: 1px solid white;
  border-radius: 12px;
  color: #212529;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  padding: 8px 12px 12px;
}

.custom-success-modal .modal-header {
  border-bottom: 2px solid #333;
}

.custom-red-x {
  filter: invert(30%) sepia(89%) saturate(7485%) hue-rotate(350deg) brightness(100%) contrast(101%);
}

/* ================================
   BACK BUTTON
================================= */
.back-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: red;
  font-size: 2rem;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.back-button:hover {
  color: darkred;
}

/* ================================
   IMAGE STYLING
================================= */
img.img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid white;
  border-radius: 15px;
}

.screenshot {
  width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
}

/* ================================
   PRICING SECTION
================================= */
.card {
  border-radius: 12px;
}

.card .btn {
  margin-top: auto;
}

/* ================================
   GLASS BOX
================================= */
.glass-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}



/* Checkout Page Styles */
.checkout-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
}

.input_container {
  margin-bottom: 1rem;
}

.input_label {
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.input_field {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
}

.payment--options {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.payment--options button {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  background-color: #ffc107;
  color: #000;
  font-weight: 500;
  cursor: pointer;
}

.payment--options button:hover {
  background-color: #e0a800;
}

.separator {
  text-align: center;
  margin: 1rem 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.purchase--btn {
  width: 100%;
  background-color: #ffc107;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: bold;
  color: black;
}

.back-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: red;
  font-size: 2rem;
  text-decoration: none;
  font-weight: bold;
  z-index: 10;
}

.back-button:hover {
  color: darkred;
}


/* Gold glow animation */
@keyframes goldPulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 193, 7, 0.7);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
  }
}

/* Red glow on hover */
@keyframes redGlow {
  0% {
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 77, 77, 0.7);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
  }
}

/* PLAN glow only */
.glow-gold {
  color: #ffc107;
  text-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
  animation: textGoldPulse 1s ease-in-out infinite;
}

@keyframes textGoldPulse {
  0% {
    text-shadow: 0 0 6px rgba(255, 193, 7, 0.4);
  }
  50% {
    text-shadow: 0 0 14px rgba(255, 193, 7, 0.8);
  }
  100% {
    text-shadow: 0 0 6px rgba(255, 193, 7, 0.4);
  }
}

/* BUTTON default: gold pulsing */
.purchase--btn {
  font-weight: bold;
  background-color: #ffc107;
  color: black;
  animation: goldPulse 1s infinite;
  transition: all 0.3s ease-in-out;
}

/* BUTTON hover: red glow and color */
.purchase--btn:hover {
  background-color: #ff4d4d;
  color: white;
  animation: redGlow 1s infinite;
  transform: scale(1.05);
}


.cta-button {
  font-weight: bold;
  background-color: #ffc107;
  color: black;
  animation: goldPulse 1s infinite;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #ff4d4d;
  color: white;
  animation: redGlow 1s infinite;
  transform: scale(1.05);
}


.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.3), 0 0 8px rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.5);
}


