
/* ancientfit-frontend/css/schedule.styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: url('../Images/Scheduler/MainCover.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Layout Container */
.main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
}

/* Left Column - Text Section */
.cover-content {
  flex: 1 1 500px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(
  135deg,
  rgba(5, 5, 5, 0.65),
  rgba(18, 18, 20, 0.65),
  rgba(30, 30, 32, 0.65),
  rgba(45, 45, 50, 0.65),
  rgba(80, 80, 85, 0.65),
  rgba(120, 120, 125, 0.65),
  rgba(160, 160, 165, 0.65)
);/* Glassy background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow-y: auto;
  max-height: 85vh;
  transition: box-shadow 0.4s ease;
  user-select: none;
  scrollbar-width: 30px;
  scrollbar-color: #c41515 transparent;
}

.cover-content:hover {
  box-shadow: 0 0 25px rgba(199, 36, 8, 0.6); /* Blue edge glow */
}

.section-content {
  padding: 10px;
  color: #f1f1f1;
}

.cover-content h1 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 20px;
}

.cover-content h2, .cover-content h3 {
  color: white;
  margin-top: 20px;
}

.cover-content p {
  line-height: 1.6;
  text-align: justify;
  color: white;
}

.cover-content ul {
  text-align: justify;
  margin-left: 20px;
  color: white;
  list-style-type: disc;
}

/* Right Column - Cards */
.card-column {
  flex: 1 1 350px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Glassy background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-radius: 16px;

}

.card-column:hover {
  box-shadow: 0 0 25px rgba(199, 36, 8, 0.6);
}

.card-column h2 {
  text-align: center;
  margin-bottom: 20px;
  color:white;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1); /* Glassy background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  user-select: none;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Image-Based Cards */
.card-img {
  background-size: cover;
  background-position: center;
  height: 180px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(199, 36, 8, 0.6);
  
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: white;
}

.card-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card-overlay p {
  margin: 5px 0 0;
  font-size: 0.95rem;
}

/*The last card symbol*/
#unique-album-section {
  text-align: start;
  margin-top: 20px;
  color:white;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1); /* Glassy background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  user-select: none;
}

.unique-album-card {
  background-size: cover;
  height: 180px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-album-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(199, 36, 8, 0.6); 
}

.unique-card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: white;
  
}

.unique-card-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}

.unique-card-overlay p {
  margin: 5px 0 0;
  font-size: 0.95rem;
}

/* Responsive Stacking */
@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
    padding: 20px;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-img {
    flex: 1 1 250px;
    max-width: 100%;
  }
}

/* ---------- Modal Background ---------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Semi-dimmed backdrop */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  padding: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal.hidden {
  display: none;
}

/* ---------- Modal Content ---------- */
.modal-content {
  background: rgba(40, 40, 45, 0.7); /* Space gray w/ glass tint */
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  animation: slideInUp 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
  color: #F0F0F0;
}

/* ---------- Close Button ---------- */
.close-button {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s ease;
}
.close-button:hover {
  color: #fff;
}

/* ---------- Form Fields ---------- */
.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  outline: none;
  transition: border 0.3s ease, background 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #9c6eff;
  background: rgba(255, 255, 255, 0.08);
}

/* Remove number input spinners (optional) */
.modal-content input[type="number"]::-webkit-inner-spin-button,
.modal-content input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---------- Textarea ---------- */
.modal-content textarea {
  resize: vertical;
  min-height: 90px;
}

/* ---------- Glassy Language Select ---------- */
#languageSelect {
  width: 100%;
  padding: 12px 18px;
  font-size: 1rem;
  border-radius: 8px;
  background: rgba(40, 40, 45, 0.7); /* Space gray w/ glass tint */
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-top: 12px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%23ffffff' points='70,100 100,60 40,60'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
    background-color: #2c2c2e; /* Space gray */
}

#languageSelect option {
  background-color: #2c2c2e; /* Graphical space gray */
}

#languageSelect option:Hover {
  background-color: #2c2c2e; /* Graphical space gray */
}

#languageSelect:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- Modal Buttons ---------- */
.modal-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-buttons button {
  flex: 1 1 45%;
  width: auto;
  min-width: 140px;
  padding: 12px 18px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

/* Primary (Purple) Button */
/* ---------- Stripe Button ---------- */
#stripeButton {
  background-color: #635bff;
  color: #ffffff;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.4);
  transition: background-color 0.3s ease;
}

#stripeButton:hover {
  background-color: #7a73ff;
}

/* ---------- PayPal Button ---------- */
#paypalButton {
  background-color: #ffc439;
  color: #111;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 196, 57, 0.4);
  transition: background-color 0.3s ease;
}

#paypalButton:hover {
  background-color: #ffb347;
}

/* Secondary Button */
.modal-buttons button:last-child {
  background: rgba(255, 255, 255, 0.15);
  color: #ddd;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.modal-buttons button:last-child:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 480px) {
  .modal-content {
    padding: 24px 16px;
    font-size: 0.95rem;
  }

  .modal-buttons {
    flex-direction: row;
  }

  .modal-buttons button {
    width: 100%;
  }
}

/* ---------- Animation ---------- */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Unique Album Modal */
.unique-album-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(30, 30, 30, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000; /* ensure on top */
}

.unique-album-modal.hidden {
  display: none;
}

.unique-album-modal-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  max-width: 350px;
  max-height: 600px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-out;
}

.unique-album-modal-content img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
}

.unique-album-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.unique-album-nav button {
  padding: 8px 16px;
  background-color: #4e54c8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.unique-album-nav button:hover {
  background-color: #3b42b5;
}

.unique-close-button {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
  .unique-album-modal-content {
    max-width: 90%;
    padding: 16px;
  }
  .unique-album-nav button {
    flex: 1;
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}









