
/* === SUBSCRIBE SECTION STYLES === */
.subscribe-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px 40px;
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  color: #f0f0f0;
  text-align: center;
}

.subscribe-section h2 {
  font-size: 2rem;
  color: white;
  text-shadow: 0 0 8px rgba(255, 214, 107, 0.3);
  user-select: none;
  margin-bottom: 20px;
}

/* == SHARED BUTTON STYLE (Podcast + Social) == */
.subscribe-btn {
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(255, 214, 107, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* == Podcast Buttons == */
.subscribe-btn.apple {
  background: #f0f0f0;
  color: #000;
}
.subscribe-btn.apple:hover {
  background: #000;
  color: #fff;
}

.subscribe-btn.spotify {
  background: #1DB954;
  color: #fff;
}
.subscribe-btn.spotify:hover {
  background: #128c3f;
}

.subscribe-btn.rss {
  background: #FFA500;
  color: #fff;
}
.subscribe-btn.rss:hover {
  background: #cc8400;
}

/* == Social Media Buttons == */
.subscribe-btn.x {
  background: #000;
  color: #fff;
}
.subscribe-btn.x:hover {
  background: #1a1a1a;
}

.subscribe-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.subscribe-btn.instagram:hover {
  opacity: 0.9;
}

.subscribe-btn.pixelfed {
  background: #3a3a3a;
  color: #fff;
}
.subscribe-btn.pixelfed:hover {
  background: #5a5a5a;
}

.subscribe-btn.youtube {
  background: #FF0000;
  color: #fff;
}
.subscribe-btn.youtube:hover {
  background: #cc0000;
}

.subscribe-btn.rumble {
  background: #59C488;
  color: #000;
}
.subscribe-btn.rumble:hover {
  background: #3aa66b;
}

/* === LAYOUT GROUPS === */
.subscribe-links,
.follow-us-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

/* === EXTRA FOOTER BUTTONS (Terms, Contact, Career) === */
.footer-extras {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(255, 214, 107, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .subscribe-section {
    padding: 20px;
    margin: 40px 15px;
  }

  .subscribe-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }

  .footer-btn {
    width: 100%;
    max-width: 300px;
  }

  .subscribe-links,
  .follow-us-links,
  .footer-extras {
    flex-direction: column;
    align-items: center;
  }
}

/* === TERMS MODAL STYLES === */
.terms-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.terms-modal.show {
  display: flex; /* Show modal as flex container when .show is added */
}

.terms-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(255, 214, 107, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.terms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* Glassy "Who We Are >>" link - smaller with nice hover */
a#who-we-are-link {
    display: inline-block;
    text-decoration: none;          
    padding: 8px 16px;                /* smaller padding */
    margin: 5px 0;                    /* smaller margin */
    border-radius: 12px;              /* slightly smaller radius */
    background: rgba(0, 0, 0, 0.35);  /* slightly lighter glass */
    backdrop-filter: blur(6px);       
    -webkit-backdrop-filter: blur(6px); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: white;                     
    font-weight: bold;               
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: 1rem;                  /* smaller font */
    transition: all 0.3s ease;    
}

/* Remove default h2 margin */
a#who-we-are-link h2 {
    margin: 0;
}

/* Hover effect */
a#who-we-are-link:hover {
    background: rgba(0, 0, 0, 0.6);           /* darker glass */
    transform: translateY(-3px) scale(1.03);  /* subtle lift and zoom */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
    color: #fff;                              /* ensure text stays white */
}


#toggleLangBtn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#toggleLangBtn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.terms-body {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 30px;
}

.terms-footer {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.terms-footer button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#agreeBtn {
  background: #1DB954;
  color: #fff;
}
#agreeBtn:hover {
  background: #128c3f;
}

#declineBtn {
  background: #FF3E3E;
  color: #fff;
}
#declineBtn:hover {
  background: #cc2b2b;
}

/* === Scroll to buttom button === */
.scroll-to-bottom-btn {
  position: absolute;
  right: 20px;
  bottom: 90px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ff3b3b; /* red color for arrow */
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: none;
  transition: all 0.3s ease;
}

.scroll-to-bottom-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(2px);
}

/* === CONTACT US MODAL STYLES === */
.contact-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.contact-modal.show {
  display: flex;
}

.contact-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(255, 214, 107, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.contact-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

#closeContactBtn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

#closeContactBtn:hover {
  color: #FF3E3E;
}

/* === Contact Form Styles === */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm input,
#contactForm textarea {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  resize: none;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #ccc;
}

#contactForm button[type="submit"] {
  padding: 12px 20px;
  background: #1DB954;
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contactForm button[type="submit"]:hover {
  background: #128c3f;
}

/* === Responsive Contact Modal === */
@media (max-width: 600px) {
  .contact-content {
    padding: 20px;
  }

  #contactForm input,
  #contactForm textarea {
    font-size: 0.95rem;
  }
}

/* Glassy Frosted Career Modal */
  /* Overlay */
  #careerOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  #careerOverlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Modal */
  /* === CAREER MODAL STYLES === */
#careerModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#careerModal.active {
  display: flex;
}

#careerModal .modal-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(255, 214, 107, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

#careerModal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#careerModal .modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

#closeCareerBtn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

#closeCareerBtn:hover {
  color: #FF3E3E;
}

/* === Career Form Styles === */
#careerForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#careerForm label {
  font-size: 0.95rem;
  color: #ccc;
}

#careerForm input,
#careerForm textarea {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  resize: none;
}

#careerForm input::placeholder,
#careerForm textarea::placeholder {
  color: #ccc;
}

#careerForm button[type="submit"] {
  padding: 12px 20px;
  background: #1DB954;
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#careerForm button[type="submit"]:hover {
  background: #128c3f;
}

/* === Responsive Career Modal === */
@media (max-width: 600px) {
  #careerModal .modal-content {
    padding: 20px;
  }

  #careerForm input,
  #careerForm textarea {
    font-size: 0.95rem;
  }
}

/* --- STYLE 3: Glass Gradient Aurora (Centered & Responsive) --- */
.ancientfit-footer-bottom {
    display: flex;
    justify-content: center;  /* Center horizontally */
    margin: 40px 0 0 0;
    padding: 0;               /* No extra padding, content will define size */

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.45),
        rgba(10, 10, 18, 0.45),
        rgba(0, 0, 0, 0.45)
    );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.55),
                inset 0 0 12px rgba(255, 255, 255, 0.05);

    border-radius: 14px 14px 0 0;

    max-width: 600px;         /* Optional: prevent footer from being too wide */
    margin-left: auto;
    margin-right: auto;        /* Center on large screens */
}

.ancientfit-footer-content-bottom {
    padding: 18px 25px;
    text-align: center;
    font-size: 11.8px;
    font-weight: 300;
    color: #f0f0f0;
    letter-spacing: 0.4px;

    width: 100%;              /* Ensures content fits the parent */
    box-sizing: border-box;   /* Include padding in width */
}

.ancientfit-footer-content-bottom p {
    margin: 4px 0;
    opacity: 0.92;
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
    .ancientfit-footer-content-bottom {
        padding: 14px 10px;
        font-size: 11px;
    }
}


