/* =========================================================
   JMG 2025 Template - style.css
   Cleaned + de-duplicated
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root{
  --hero-top-pad: 8rem;
  --hero-gap: 5rem;
  --shell-max: 1100px;

  --gold: #e2af00;
  --gold-hover: #ffd84d;

  --panel: rgba(0,0,0,0.85);
  --panel-dark: rgba(0,0,0,.78);
	--panel-interior: rgba(0,0,0,.5);
}

/* =========================================================
   RESET / BASE
========================================================= */
body{
  background: #000;
  color: #fff;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

/* Anchor offset for fixed header */
section{
  scroll-margin-top: 140px;
}

/* Site-wide background (shows in margins) */
body.site-bg{
  background: url("../images/theater.jpg") center center / cover no-repeat fixed;
}
.interior {background: var(--panel); }

/* Global links */
a{
  color: var(--gold);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}
a:hover,
a:focus{
  color: var(--gold-hover);
}

/* =========================================================
   FOOTER STYLES
========================================================= */
.footer-section {
  background: #232323;
  color: #fff;
}

.footer-section .footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-section .footer-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.footer-section .footer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   JOOMLA PAGINATION STYLES
========================================================= */
.com-content-category-blog__navigation .pagination{
  gap: 6px;
  --bs-pagination-color: #fff;
  --bs-pagination-bg: #0e0e0e;
  --bs-pagination-border-color: #2a2a2a;
  --bs-pagination-hover-color: var(--gold);
  --bs-pagination-hover-bg: #1a1a1a;
  --bs-pagination-hover-border-color: var(--gold);
  --bs-pagination-active-color: #000;
  --bs-pagination-active-bg: var(--gold);
  --bs-pagination-active-border-color: var(--gold);
  --bs-pagination-disabled-color: rgba(255,255,255,0.35);
  --bs-pagination-disabled-bg: #111;
  --bs-pagination-disabled-border-color: #1f1f1f;
}

/* Fallback overrides for Bootstrap pagination */
.com-content-category-blog__navigation .page-link,
.interior .pagination .page-link{
  background: #0e0e0e !important;
  color: #fff !important;
  border: 1px solid #2a2a2a !important;
}

.com-content-category-blog__navigation .page-link:hover,
.com-content-category-blog__navigation .page-link:focus,
.interior .pagination .page-link:hover,
.interior .pagination .page-link:focus{
  background: #1a1a1a !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

.com-content-category-blog__navigation .page-item.active .page-link,
.interior .pagination .page-item.active .page-link{
  background: var(--gold) !important;
  color: #000 !important;
  border-color: var(--gold) !important;
}

.com-content-category-blog__navigation .page-item.disabled .page-link,
.interior .pagination .page-item.disabled .page-link{
  background: #111 !important;
  color: rgba(255,255,255,0.35) !important;
  border-color: #1f1f1f !important;
}

/* Hide disabled prev/next items */
.com-content-category-blog__navigation .pagination .page-item.disabled,
.interior .pagination .page-item.disabled{
  display: none;
}

.com-content-category-blog__navigation .page-link{
  background: #0e0e0e;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 0.35rem 0.6rem;
  font-size: 0.9rem;
  min-width: 34px;
  text-align: center;
}

.com-content-category-blog__navigation .page-link:hover,
.com-content-category-blog__navigation .page-link:focus{
  background: #1a1a1a;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}

.com-content-category-blog__navigation .page-item.active .page-link{
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.com-content-category-blog__navigation .page-item.disabled .page-link{
  background: #111;
  color: rgba(255,255,255,0.35);
  border-color: #1f1f1f;
}

.com-content-category-blog__counter{
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* =========================================================
   FOOTER FORM (ACYM) STYLES
========================================================= */
.footer-section .acym_module_form{
  max-width: 280px;
}

.footer-section .acym_form{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.footer-section .acym_form td{
  padding: 0;
}

.footer-section .acym_form label{
  display: block;
}

.footer-section .acym_form input{
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
}

.footer-section .acym_form .acym__users__creation__fields__title{
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.footer-section .acym_form .subbutton,
.footer-section .acym_form .btn.btn-primary{
  background: var(--gold) !important;
  border: none !important;
  color: #000 !important;
  font-weight: 700;
  padding: 8px 14px;
  width: 100%;
}

.footer-section .acym_form .subbutton:hover,
.footer-section .acym_form .btn.btn-primary:hover{
  background: var(--gold-hover) !important;
  color: #000 !important;
}

/* =========================================================
   HEADER STYLES
========================================================= */
#site-header {
  background: #000 !important;
  border-bottom: 1px solid var(--gold);
  padding: 0;
}

#site-header .container {
  padding: 0;
}

#site-header .header-wrapper {
  align-items: flex-start;
  gap: 2rem;
}

#site-header .logo-img {
  height: 80px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

#site-header .header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#site-header .social-bar a {
  font-size: 1.1rem;
  transition: color .2s ease;
}

#site-header .social-bar a:hover {
  color: var(--gold) !important;
}

#site-header .nav-link {
  color: #fff !important;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color .2s ease;
  margin: 0 1rem;
}

#site-header .nav-link:hover {
  color: var(--gold) !important;
}

#site-header .nav-link:last-child {
  margin-right: 0 !important;
}

/* =========================================================
   HERO SECTION STYLES
========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: initial;
}

/* Mobile height */
@media (max-width: 768px) {
  .hero-section {
    height: 350px;
    background-attachment: scroll;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content .row {
  width: 100%;
}

.hero-title {
  font-family: 'Squada One', cursive;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-section .btn-success {
  background-color: #28a745;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  transition: background-color 0.2s ease;
}

.hero-section .btn-success:hover {
  background-color: #20c997;
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-section .btn-success {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* =========================================================
   IN THE STORE SECTION STYLES
========================================================= */
.store-section {
  background-color: #011008;
  width: 100%;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.album-card {
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  justify-content: space-between;
}

.album-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.album-card:hover {
  transform: translateY(-5px);
}

.album-cover {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.album-title {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.amazon-badge {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.store-section .btn-warning {
  background-color: #ffc107;
  border: none;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
  margin-top: auto;
}

.store-section .btn-warning:hover {
  background-color: #ffb300;
  color: #000;
}

.video-container {
  max-width: 100%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.video-container iframe {
  display: block;
  margin: 0 auto;
}

/* Mobile adjustments for store section */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }

  .video-container iframe {
    height: 300px !important;
  }
}

/* =========================================================
   PARALLAX SECTION STYLES
========================================================= */
.parallax-section {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

/* Mobile - disable parallax attachment */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    height: 220px;
  }
}

/* =========================================================
   MEET MAGS SECTION STYLES
========================================================= */
.meet-mags-section {
  background-color: #011008;
  width: 100%;
}

.meet-mags-row {
  min-height: 520px;
}

.meet-mags-text {
  display: flex;
  align-items: center;
}

.meet-mags-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.meet-mags-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-align: justify;
}

.meet-mags-section .btn-success {
  background-color: #28a745;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  transition: background-color 0.2s ease;
}

.meet-mags-section .btn-success:hover {
  background-color: #20c997;
  color: #fff;
}

.meet-mags-image {
  position: relative;
  min-height: 520px;
}

.bio-image-fill {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: 50% 15%;
  background-repeat: no-repeat;
}

/* Mobile adjustments for meet mags */
@media (max-width: 768px) {
  .meet-mags-title {
    font-size: 1.5rem;
  }

  .meet-mags-bio {
    font-size: 0.95rem;
    text-align: left;
  }

  .meet-mags-section .btn-success {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .meet-mags-row,
  .meet-mags-image,
  .bio-image-fill {
    min-height: 320px;
  }
}

