/*
 * assets/css/main.css
 *
 * Global styles and section-specific CSS for the So So Def theme.
 */

:root {
  /* Color palette */
  --color-black: #000;
  --color-white: #fff;
  --color-accent: #d4af37; /* Dre Museum gold accent - elegant and sophisticated */

  /* Type scale */
  --font-base: 1rem;
  --font-scale-ratio: 1.25;
  --font-family-sans: "quasimoda", sans-serif;
  --font-family-serif: "neue-haas-grotesk-display", sans-serif;
}

/* Reset & base */
html {
  box-sizing: border-box;
  font-size: var(--font-base);
  margin: 0;
  padding: 0;
  height: 100%;
}
*, *::before, *::after { box-sizing: inherit; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-sans);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  min-height: 100vh;
}

/* Fix white bar at bottom - override WordPress default post/page margins */
.post, .page {
  margin-bottom: 0;
}

/* Remove any bottom margins/padding that could create white bars */
#primary,
.site-main {
  margin-bottom: 0;
  padding-bottom: 0;
}

body, html {
  margin: 0;
  padding: 0;
}

/* Ensure no extra spacing around the entire page */
html {
  height: 100%;
  background-color: #000; /* Match footer to prevent any gaps */
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff; /* Ensure body has proper background */
}

/* Ensure main content starts directly under header with NO OVERLAP */
#content {
  margin: 0;
  padding: 0;
  padding-top: 72px; /* Exact height of fixed header - no gap, no overlap */
}

/* Reset hero section - content padding handles the spacing */
.hero.swiper-container,
.hero.home-video-static {
  margin: 0;
  padding: 0;
  top: 0;
}

body.mobile-menu-open {
  overflow: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-black); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 1rem; font-family: var(--font-family-serif); }
h1 { font-weight: 700; }
h2 { font-weight: 500; }
h3 { font-weight: 500; }
h4 { font-weight: 400; }
h5 { font-weight: 400; }
h6 { font-weight: 400; }
p { margin: 0 0 1rem; }
.button, .link { font-weight: 600; cursor: pointer; }

/* Section header common */
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* Mobile: Global section header layout */
@media (max-width: 767px) {
  .section__header {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.section__header-heading {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile: Global section heading styles */
@media (max-width: 767px) {
  .section__header-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.1;
  }
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Ensure all sections have proper spacing from hero */
.section {
  position: relative;
  z-index: 0;
  padding: 3rem 0;
  clear: both;
}



/* ——— About Section - Black Background Bio ——— */
.about-section {
  background: var(--color-black);
  color: var(--color-white);
  padding: 4rem 0;
  margin: 0;
  position: relative;
}

.about-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-section__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-section__heading {
  font-family: var(--font-family-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-section__text {
  margin-bottom: 3rem;
}

.about-section__text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-section__cta {
  margin-top: 2rem;
}

.about-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 1rem 2rem;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-section__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.about-section__link:visited {
  color: var(--color-white);
  border-color: var(--color-white);
  text-decoration: none;
}

.about-section__link:hover {
  background: transparent;
  color: #ff0000;
  border-color: #ff0000;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(255, 0, 0, 0.3),
    0 0 0 1px rgba(255, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-decoration: none;
  letter-spacing: 1px;
}

.about-section__link:hover::before {
  left: 100%;
}

.about-section__link:active {
  transform: translateY(-2px) scale(1.02);
  transition: all 0.1s ease;
}

.about-section__link .link__icon {
  width: 12px;
  height: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0.8;
}

.about-section__link:hover .link__icon {
  transform: translateX(6px) scale(1.2);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-section__container {
    padding: 0 1.5rem;
  }
  
  .about-section__heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-section__text p {
    font-size: 1rem;
  }
  
  .about-section__link {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Latest Grid Section - TRUE Full Width Edge-to-Edge */
.latest-grid.section {
  margin: 0;
  padding: 0;
  background: none;
  width: calc(100vw - (100vw - 100%));
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-50vw + (100vw - 100%) / 2);
  margin-right: calc(-50vw + (100vw - 100%) / 2);
}

.latest-grid .container,
.latest-grid .section__inner,
.latest-grid .section__main {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
}

/* Announcements Section - TRUE Full Width Edge-to-Edge */
.announcements-section.section {
  margin: 0;
  padding: 0;
  background: none;
  width: calc(100vw - (100vw - 100%));
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-50vw + (100vw - 100%) / 2);
  margin-right: calc(-50vw + (100vw - 100%) / 2);
}

.announcements-section .container,
.announcements-section .section__inner,
.announcements-section .section__main {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
}

/* Talent Spotlight Section */
.talent-spotlight {
  padding: 4rem 0;
}
.talent-spotlight__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}
.talent-spotlight__content {
  background: rgba(255,255,255,0.85);
  padding: 2rem;
  z-index: 2;
}
.talent-spotlight__heading {
  font-size: calc(var(--font-base) * var(--font-scale-ratio) * var(--font-scale-ratio));
  margin-top: 0.5rem;
}
.talent-spotlight__side-block-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.side-block--statistic .side-block__number {
  font-size: 2rem;
  font-weight: 700;
}
.side-block--statistic .side-block__eyebrow {
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.side-block--statistic .side-block__secondary-text,
.side-block--statistic .side-block__tertiary-text {
  font-size: 0.875rem;
}

/* Background image layering */
.talent-spotlight__background-image {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 50%;
  overflow: hidden;
}
.talent-spotlight__background-image .media-container__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .talent-spotlight__main {
    grid-template-columns: 1fr;
  }
  .talent-spotlight__background-image {
    left: 0;
    height: 200px;
  }
  .talent-spotlight__content {
    margin-top: 200px;
  }
}


/* ——— Sticky Header ——— */
.site-header {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  background: var(--color-black);
  z-index: 10000; /* Keep header above overlay */
  padding: 0;
}

/* Old duplicate rules - replaced with consolidated version below */

/* Desktop Navigation - hidden by default */
.desktop-nav {
  display: none;
  flex: 1;
  justify-content: center;
  margin-left: 3rem;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 3rem;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav a {
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-weight: 200;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.desktop-nav a:hover {
  color: var(--color-accent);
}

/* Old mobile-menu-toggle rule - replaced with consolidated version below */

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 72px; /* Position below the header height */
  left: 0;
  right: 0;
  height: calc(100vh - 72px); /* Fill remaining viewport height */
  background: rgba(0, 0, 0, 0.95);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 10001; /* Higher than header z-index (10000) */
  padding-top: 20px; /* Normal padding since we start below header */
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-navigation ul {
  list-style: none;
  padding: 2rem;
  margin: 0;
  padding-bottom: 0; /* Remove bottom padding to reduce gap to social section */
}

.mobile-navigation li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation a {
  display: block;
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-weight: 200;
  font-size: 1.125rem;
  text-decoration: none;
  padding: 1.5rem 0;
  transition: color 0.3s;
}

.mobile-navigation a:hover {
  color: var(--color-accent);
}

/* Mobile Instagram Icon */
.mobile-social-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  padding-left: 2rem;
}

.mobile-instagram-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-family-serif) !important;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 0;
  background: transparent;
}

.mobile-instagram-icon:hover {
  background: #dc3545;
  color: #fff;
  transform: translateX(10px);
}

.mobile-instagram-icon svg {
  width: 24px;
  height: 24px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.mobile-instagram-icon span {
  font-family: var(--font-family-serif);
  font-weight: 200;
  letter-spacing: 1px;
}

/* Reset and fix the header layout completely */
.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.site-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-header__logo a {
  color: var(--color-white);
  font-family: var(--font-family-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.125rem;
  text-decoration: none;
}

/* Mobile hamburger - show on mobile, hide on desktop */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 99999; /* Keep above overlay */
  position: fixed;
  top: 15px;
  right: 15px;
}

/* Override WordPress admin bar if present */
.admin-bar .mobile-menu-toggle {
  top: 47px !important;
}

@media screen and (max-width: 782px) {
  .admin-bar .mobile-menu-toggle {
    top: 47px !important;
  }
}

.mobile-menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.desktop-nav {
  display: flex;
}

/* Header Instagram Icon Styles */
.header-social-icon {
  display: none;
}

@media (min-width: 769px) {
  .header-social-icon {
    display: block;
    margin-left: auto;
  }
}

.header-instagram-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-instagram-icon:hover {
  background: #dc3545;
  transform: translateY(-2px);
}

.header-instagram-icon svg {
  width: 20px;
  height: 20px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #fff;
}

/* Header styling for scrolled state */
.site-header.is-scrolled .header-instagram-icon {
  background: rgba(0, 0, 0, 0.1);
}

.site-header.is-scrolled .header-instagram-icon svg {
  color: #333;
}

.site-header.is-scrolled .header-instagram-icon:hover {
  background: #dc3545;
}

.site-header.is-scrolled .header-instagram-icon:hover svg {
  color: #fff;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .site-header__container {
    padding: 1rem 1.5rem;
  }
  
  .site-header__logo img {
    height: 35px;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  
  .desktop-nav {
    display: none !important;
  }
}

/* Desktop breakpoint */  
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .desktop-nav {
    display: flex !important;
  }
  
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* Legacy logo rule - handled in responsive sections now */


/* ——— Home Hero ——— */
.home-hero {
  background: url('../images/GENERAL-scaled.jpg') center/cover no-repeat;
  height: 100vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 1rem 0 1rem; /* Push content below fixed header */
  margin: 0; /* No margins at all */
  top: 0; /* Start at absolute top */
}

.home-hero h1 {
  font-family: var(--font-family-serif);
  font-size: calc(var(--font-base) * var(--font-scale-ratio) * var(--font-scale-ratio));
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.home-hero p {
  font-family: var(--font-family-sans);
  font-size: calc(var(--font-base) * var(--font-scale-ratio));
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.home-hero .button {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
}


/* ——— Features Grid ——— */
.home-features {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.feature-item h3 {
  font-family: var(--font-family-sans);
  margin-bottom: 1rem;
  font-size: calc(var(--font-base) * var(--font-scale-ratio));
  color: var(--color-white);
}

/* Header scroll effect */
.site-header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header .site-header__logo a,
.site-header .desktop-nav a,
.site-header .mobile-menu-toggle span {
  transition: all 0.3s ease;
}

/* scrolled state */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);     /* switch to white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled .site-header__logo a,
.site-header.is-scrolled .desktop-nav a {
  color: var(--color-black) !important;  /* switch links to dark */
}

.site-header.is-scrolled .mobile-menu-toggle span {
  background-color: var(--color-black) !important;
}

.site-header.is-scrolled .desktop-nav .current-menu-item > a {
  color: var(--color-accent) !important; /* keep accent on current item */
}

/* ——— Logo Switching for Header States ——— */
/* Default state: show white logo, hide black logo */
.site-header .logo-default {
  display: none;
}

.site-header .logo-white {
  display: block;
}

/* Scrolled/light state: hide white logo, show black logo */
.site-header.is-scrolled .logo-default {
  display: block;
}

.site-header.is-scrolled .logo-white {
  display: none;
}

/* Ensure both logos have same styling */
.logo-default img,
.logo-white img {
  height: auto;
  max-height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
}

/* ——— Primary Menu Active States ——— */
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a {
  color: var(--color-accent);
}
/* ——— Swiper Arrow Styling ——— */
.swiper-button-prev,
.swiper-button-next {
  width: 80px !important; /* Increased from 44px */
  height: 80px !important; /* Increased from 44px */
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--color-accent) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transition: color 0.3s, transform 0.3s;
  z-index: 10;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff !important;
}

.swiper-button-next::after,
.swiper-container .swiper-button-next::after {
  content: '\203A' !important;
  font-size: 60px !important; /* Increased font size */
}

.swiper-button-prev::after,
.swiper-container .swiper-button-prev::after {
  content: '\2039' !important;
  font-size: 60px !important; /* Increased font size */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: scale(1.1);
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff !important;
}

/* Position overrides (if needed) */
.swiper-button-prev { left: 1rem; }
.swiper-button-next { right: 1rem; }

/* ——— Pagination Bullet Styling ——— */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent !important;
  border: 2px solid var(--color-accent) !important;
  opacity: 1;
  margin: 0 6px;
  transition: background 0.3s, border-color 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

/* ——— Fix pagination white line artifact ——— */
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, 
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
  background-color: black;
}

/* ——— Responsive Slider Height ——— */
.hero.swiper-container {
  position: relative;
  z-index: 1;
  /* height: calc(100vh - 72px); */ /* Let Swiper's autoHeight manage this */
  padding: 0;
  margin: 0;
  background-color: #000;
}

/* ——— Static Video Hero (No Swiper) ——— */
.hero.home-video-static {
  height: calc(100vh - 72px); /* Full viewport minus header height */
  position: relative;
  z-index: 1;  
  padding: 0;
  margin: 0;
}

.hero.home-video-static .video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure video player container has proper layering */
.hero .slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

/* Ensure video elements have proper layering */
.hero video,
.hero iframe {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}



.jj-aws-ivs-custom-controls {
  z-index: 10 !important;
  position: relative;
}

/* Ensure hero section is always behind header */
.hero + .section,
.home-video-static + .section {
  position: relative;
  z-index: 0;
  margin-top: 0;
}

@media (max-width: 768px) {
  #content {
    padding-top: 60px;
  }
  
  .hero.swiper-container {
    height: auto;
    /* min-height: 300px; */ /* Let Swiper's autoHeight manage this */
  }
  
  .hero.home-video-static {
    height: auto;
    padding: 0;
  }
  
  .home-hero {
    height: auto;
    padding: 0;
  }
}
/* ——— ROC Nation Style Clean Grid ——— */
.latest-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .latest-grid__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}

/* All items have relative positioning for overlays */
.latest-grid__item {
  position: relative;
  overflow: hidden;
  background: #eee;
}

/* Mobile: All items are square */
.latest-grid__item {
  aspect-ratio: 1/1;
}

/* Mobile: Audio player positioning */
.latest-grid__embed {
  position: relative;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 1/1;
}

/* Desktop 2-Row Layout - 3 posts + Spotify */
@media (min-width: 768px) {
  .latest-grid__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  
  /* Row 1: Post 1 - Wide card (spans 2 columns) */
  .latest-grid__item:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
    aspect-ratio: 2/1;
  }
  
  /* Row 1: Post 2 - Square card */
  .latest-grid__item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: 1/1;
  }
  
  /* Row 2: Post 3 - Square card */
  .latest-grid__item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1/1;
  }
  
  /* Row 2: Spotify Embed - Wide card (spans 2 columns) */
  .latest-grid__embed {
    grid-column: 2 / span 2;
    grid-row: 2;
    aspect-ratio: 2/1;
  }
  
  /* Hide posts 4, 5 and beyond on desktop */
  .latest-grid__item:nth-child(n+4) {
    display: none;
  }

  /* Reduce bottom padding for posts 2 and 3 to minimize white space */
  .latest-grid__item:nth-child(2) .card__inner,
  .latest-grid__item:nth-child(3) .card__inner {
    padding: 1.5rem;
  }
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.card__anchor {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  /* Fallback gradient - will be covered by images when present */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Target the element itself when it has media-container classes */
.card__image.media-container,
.card__image.media-container--cover {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Ensure media-container classes don't add spacing (for child elements) */
.card__image .media-container,
.card__image .media-container__media {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Force complete fill - override any WordPress image sizing */
.latest-grid__item img,
.latest-grid__item .wp-post-image,
.latest-grid__item .attachment-large {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: block !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

.card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: block;
  min-width: 100% !important;
  min-height: 100% !important;
}

.card__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card__heading {
  margin: 0;
  font-family: var(--font-family-serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

/* Clean typography for all cards */
@media (min-width: 768px) {
  .card__heading {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .card__inner {
    padding: 1.5rem;
  }
  
  /* Front page mobile: solid black background for latest news cards */
  .home .latest-grid .card__inner {
    background: var(--color-black);
  }
  
  /* Front page mobile: show native image ratios instead of cropping */
  .home .latest-grid__item img,
  .home .latest-grid__item .wp-post-image,
  .home .latest-grid__item .attachment-large,
  .home .latest-grid .card__image img {
    object-fit: contain !important;
    height: auto !important;
  }
  
  /* Front page mobile: remove fixed aspect ratios to auto-fit image content */
  .home .latest-grid__item,
  .home .latest-grid__embed {
    aspect-ratio: auto !important;
  }
  
  /* Front page mobile: ensure audio player is visible and positioned correctly */
  .home .latest-grid__embed .audio-player {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    display: flex !important;
  }
  
  /* Front page mobile: ensure minimum height for image + text overlay */
  .home .latest-grid .card {
    position: relative !important;
    min-height: 300px !important;
    height: auto !important;
  }
  
  /* Front page mobile: make image containers fit content but leave room for text */
  .home .latest-grid .card__image {
    height: auto !important;
    min-height: 250px !important;
  }
}

/* Enhanced Hover Effects with Glow */
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(225, 6, 0, 0.3);
  z-index: 10;
}

/* Special hover for featured post */
.latest-grid__item:first-child .card:hover {
  box-shadow: 0 0 50px rgba(225, 6, 0, 0.5);
}

.card:hover .card__image::before {
  opacity: 1;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card:hover .card__inner {
  transform: translateY(-5px);
}

.card:hover .card__heading {
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Focus states for accessibility */
.card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* Simple header above the grid */
.latest-grid .section__header {
  margin-bottom: 0;
  padding: 2rem;
  text-align: center;
  background: var(--color-white);
}

/* Announcements header - match latest news spacing */
.announcements-section .section__header {
  margin-bottom: 0;
  padding: 2rem;
  text-align: center;
  background: var(--color-white);
}

@media (min-width: 768px) {
  .latest-grid .section__header {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
  }
  
  .announcements-section .section__header {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
  }
}

/* Section header link underline slide */
.section__header-link .link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Mobile: Smaller button */
@media (max-width: 767px) {
  .section__header-link .link {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    gap: 0.25rem;
    letter-spacing: 0.25px;
  }
}

.section__header-link .link:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.link__icon {
  transition: transform 0.3s ease;
  width: 12px;
  height: 8px;
}
.section__header-link .link:hover .link__icon {
  transform: translateX(4px);
}

/* AOS: ensure cards start hidden */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* ——— Latest Grid: Audio/Video embed styling ——— */
.latest-grid__embed .audio-player,
.latest-grid__embed .video-player {
  background: linear-gradient(135deg, var(--color-accent) 0%, #c41e3a 100%);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

/* Mobile: Smaller padding for audio/video player */
@media (max-width: 768px) {
  .latest-grid__embed .audio-player,
  .latest-grid__embed .video-player {
    padding: 1rem;
  }
}

.latest-grid__embed .audio-player::before,
.latest-grid__embed .video-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.latest-grid__embed .audio-player:hover,
.latest-grid__embed .video-player:hover {
  transform: scale(1.02);
}

.latest-grid__embed .audio-player:hover::before,
.latest-grid__embed .video-player:hover::before {
  left: 100%;
}

/* remove any white flash behind the iframe and rounded corners */
.latest-grid__embed .audio-player iframe,
.latest-grid__embed .video-player iframe {
  background: transparent;
  border-radius: 0;
  max-width: 90%;
  height: auto;
  min-height: 152px;
}

/* Video specific styling - narrower for 16:9 video aspect ratio */
.latest-grid__embed .video-player iframe {
  max-width: 65%;
  min-height: 250px;
}

/* Mobile: Responsive iframe */
@media (max-width: 768px) {
  .latest-grid__embed .audio-player iframe,
  .latest-grid__embed .video-player iframe {
    width: 100%;
    max-width: 95%;
  }
  
  .latest-grid__embed .audio-player iframe {
    height: 152px;
  }
  
  .latest-grid__embed .video-player iframe {
    height: 200px;
    max-width: 80%;
  }
}

/* ——— Announcements Single Item (Fixed - No Swiper Conflict) ——— */
.announcements-grid {
  width: 100%;
}

.announcements-wrapper {
  display: block;
  width: 100%;
}

.announcement-item {
  background: var(--color-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

/* Single announcement styling - Large like RocNation */
.announcement-item .text-and-image__item-inner {
  display: flex;
  align-items: center;
  min-height: 500px;
  flex-direction: row-reverse; /* Image on right, text on left for desktop */
}

.announcement-item .media-container {
  flex: 0 0 50vw; /* 50% of viewport width */
  width: 50vw;
  height: 500px;
  aspect-ratio: 1/1;
}

.announcement-item .media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Make featured image link display properly */
.announcement-item .media-container__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.announcement-item .media-container__link:hover {
  opacity: 0.9;
}

.announcement-item .text-and-image__content {
  flex: 1;
  padding: 3rem;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.announcement-item .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.announcement-item .text-and-image__heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.announcement-item .link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 1rem 2rem;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.announcement-item .link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.announcement-item .link:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(225, 6, 0, 0.3),
    0 0 0 1px rgba(225, 6, 0, 0.1);
  text-decoration: none;
  letter-spacing: 1px;
}

.announcement-item .link:active {
  transform: translateY(-2px) scale(1.02);
  transition: all 0.1s ease;
}

.announcement-item .link .link__icon {
  width: 12px;
  height: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0.8;
}

.announcement-item .link:hover .link__icon {
  transform: translateX(6px) scale(1.2);
  opacity: 1;
}

@media (max-width: 768px) {
  .announcement-item .text-and-image__item-inner {
    flex-direction: column; /* Image on top, text below for mobile */
    min-height: auto;
  }
  
  .announcement-item .media-container {
    flex: none;
    width: 100%;
    max-width: none;
    height: 350px;
    aspect-ratio: auto;
    margin: 0;
  }
  
  .announcement-item .text-and-image__content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .announcement-item .text-and-image__heading {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

/* ——— Products Carousel Section - FULL WIDTH LIKE OTHER SECTIONS ——— */
.products-carousel.section {
  margin: 0;
  padding: 0;
  background: none;
  width: calc(100vw - (100vw - 100%));
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-50vw + (100vw - 100%) / 2);
  margin-right: calc(-50vw + (100vw - 100%) / 2);
}

.products-carousel .container,
.products-carousel .section__inner,
.products-carousel .section__main {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
}

/* Products carousel header - match latest news and announcements */
.products-carousel .section__header {
  margin-bottom: 0;
  padding: 2rem;
  text-align: center;
  background: var(--color-white);
}

@media (min-width: 768px) {
  .products-carousel .section__header {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
  }
}

/* Featured slider - full width */
.featured-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.featured-slider .swiper-slide {
  height: auto;
}

.featured-slider .swiper-slide:not(:last-child) .featured-product {
  border-right: 1px solid #e5e5e5;
}

/* Featured product cards */
.featured-product {
  background: var(--color-white);
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: opacity 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-product:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.8;
}

.featured-product .product-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f8f8f8;
  margin-bottom: 0;
}

.featured-product .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.featured-product:hover .product-card__image img {
  transform: none;
}

.featured-product .product-card__content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.featured-product .product-card__title {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-product .product-card__title a {
  color: inherit;
  text-decoration: none;
}

.featured-product .product-card__title a:hover {
  color: inherit;
  opacity: 0.7;
}

.featured-product .product-card__price {
  font-family: var(--font-family-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black);
  margin: 0;
}

/* Products navigation - positioned within slider */
.featured-slider .products-prev,
.featured-slider .products-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--color-black);
  margin-top: 0;
}

.featured-slider .products-prev {
  left: 10px;
}

.featured-slider .products-next {
  right: 10px;
}

.featured-slider .products-prev:hover,
.featured-slider .products-next:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.featured-slider .products-prev::after,
.featured-slider .products-next::after {
  display: none;
}

/* Responsive breakpoints for featured releases */
@media (max-width: 1024px) {
  .featured-releases .container {
    padding: 0 1rem;
  }
  
  .featured-releases .section__header {
    margin-bottom: 2rem;
  }
  
  .featured-releases .section__header-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .featured-releases .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .featured-releases .section__header-heading {
    font-size: 1.75rem;
  }
  
  .featured-product .product-card__title {
    font-size: 0.8125rem;
  }
  
  .featured-product .product-card__price {
    font-size: 0.875rem;
  }
  
  /* Mobile navigation arrows - smaller and better positioned */
  .featured-slider .products-prev,
  .featured-slider .products-next {
    width: 40px;
    height: 40px;
    margin-top: 0;
  }
  
  .featured-slider .products-prev {
    left: 5px;
  }
  
  .featured-slider .products-next {
    right: 5px;
  }
}

.no-products {
  text-align: center;
  padding: 3rem;
  color: #666;
}

/* ——— Footer Styles - Sticky + Main Footer ——— */

/* Sticky Social Icons Bar */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  border: 1px solid #333;
  border-bottom: none;
}

.sticky-footer-bar.visible {
  opacity: 1;
  visibility: visible;
}

/* Main Footer Content */
.site-footer {
  background: #000;
  color: #fff;
  margin-top: 0;
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-main {
  margin-bottom: 3rem;
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  gap: 0;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid #333;
  position: relative;
}

.social-icon:first-child {
  border-left: 1px solid #333;
  border-radius: 0;
}

.social-icon:last-child {
  border-radius: 0;
}

.social-icon {
  color: #fff !important;
}

.social-icon:hover {
  background: #dc3545;
  color: #fff !important;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor !important;
  stroke: none;
}

.social-icon svg[viewBox*="24"] {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 20px;
  height: 20px;
}

/* Remove default button padding that shrinks the search icon */
button.social-icon {
  padding: 0;
}





/* Main Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  color: #fff;
}

.footer-heading {
  font-family: var(--font-family-sans);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-text {
  color: #999;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-logo-section {
  margin-top: 2rem;
}

.footer-logo-large {
  height: 60px;
  width: auto;
  opacity: 0.8;
}

/* Logo styling when in third column */
.footer-column:nth-child(3) .footer-logo-section {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.footer-column:nth-child(3) .footer-logo-large {
  height: 40px;
  opacity: 0.6;
  display: block;
}

/* Logo styling for the second column */
.footer-column:nth-child(2) .footer-logo-section {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.footer-column:nth-child(2) .footer-logo-large {
  height: auto;
  width: 100%;
  max-width: 150px;
  opacity: 0.8;
}

/* Footer Social Links */
.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-social-icon:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Footer Email Signup */
.footer-signup-form {
  margin-top: 1rem;
}

.footer-form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: transparent;
  transition: border-color 0.3s ease;
}

/* Name fields on same row */
.name-fields {
  display: flex;
  gap: 1rem;
}

.footer-name-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff !important;
  padding: 1rem 0;
  font-size: 0.9rem;
  outline: none;
  border-bottom: 1px solid #333;
  transition: border-color 0.3s ease;
}

.footer-name-input::placeholder {
  color: #666 !important;
  font-size: 0.9rem;
}

.footer-name-input:focus {
  color: #fff !important;
  border-bottom-color: #666;
}

.footer-name-input::-webkit-input-placeholder { color: #666 !important; }
.footer-name-input::-moz-placeholder { color: #666 !important; }
.footer-name-input:-ms-input-placeholder { color: #666 !important; }
.footer-name-input:-moz-placeholder { color: #666 !important; }

.footer-email-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff !important;
  padding: 1rem 0;
  font-size: 0.9rem;
  outline: none;
  border-bottom: 1px solid #333;
  transition: border-color 0.3s ease;
}

.footer-email-input::placeholder {
  color: #666 !important;
  font-size: 0.9rem;
}

.footer-email-input:focus {
  color: #fff !important;
  border-bottom-color: #666;
}

.footer-email-input::-webkit-input-placeholder { color: #666 !important; }
.footer-email-input::-moz-placeholder { color: #666 !important; }
.footer-email-input:-ms-input-placeholder { color: #666 !important; }
.footer-email-input:-moz-placeholder { color: #666 !important; }

.footer-submit-btn {
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  align-self: flex-end;
  margin-top: 0;
}

.footer-submit-btn:hover {
  color: #fff;
}

/* Footer Navigation */
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #fff;
}

/* Contact Info */
.contact-info p {
  color: #999;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact-info strong {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fff;
}

.legal-links span {
  color: #333;
}

.copyright p {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  background: #333;
  border-radius: 0;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  position: relative;
  padding-right: 4rem; /* Add space for close button */
}

.search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem; /* Add top margin for better spacing */
}

.search-input {
  flex: 1;
  background: #000;
  border: 1px solid #555;
  color: #fff !important;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0;
  outline: none;
  height: 52px; /* Match search button height */
  box-sizing: border-box;
}

.search-input::placeholder {
  color: #999;
  font-style: italic;
}

.search-input:focus {
  border-color: #fff;
  color: #fff !important;
}

.search-input::-webkit-input-placeholder { color: #999 !important; }
.search-input::-moz-placeholder { color: #999 !important; }
.search-input:-ms-input-placeholder { color: #999 !important; }
.search-input:-moz-placeholder { color: #999 !important; }

.search-submit {
  background: #fff;
  border: none;
  color: #000;
  padding: 1rem;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  height: 52px; /* Match search input height */
  width: 52px; /* Make it square */
  flex-shrink: 0; /* Prevent shrinking */
}

.search-submit:hover {
  background: #ccc;
}

.search-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon svg[viewBox*="24"] {
    width: 20px;
    height: 20px;
  }
  

  
  .name-fields {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .search-modal-content {
    margin: 1rem;
    padding: 1.5rem;
    padding-right: 1.5rem; /* Match padding on all sides */
    width: calc(100% - 2rem); /* Account for margins */
    max-width: none; /* Remove max-width constraint on mobile */
  }
  
  .search-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .search-form {
    flex-direction: row; /* Keep horizontal layout on mobile */
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .search-input {
    flex: 1;
    height: 48px; /* Slightly smaller for mobile */
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .search-submit {
    height: 48px; /* Match input height */
    width: 48px;
    padding: 0.75rem;
    flex-shrink: 0;
  }
}

/* Responsive Design */
@media (min-width: 769px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    padding: 0 3rem;
  }
  
  .footer-grid .footer-column:nth-child(2) {
    padding-left: 2rem;
  }
}

@media (max-width: 768px) {
  .newsletter-heading {
    font-size: 1.875rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-newsletter {
    padding: 3rem 0;
  }
  
  .footer-heading--social {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-heading {
    font-size: 1.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ——— Archive Page Styles ——— */



/* Archive Grid */
.archive-grid {
  padding: 2rem;
  background: var(--color-white);
}

.archive-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Mobile: Stack all posts */
.archive-grid__item {
  width: 100%;
}

/* Desktop: Magazine layout with featured + 2 sidebar posts, then 3-column grid */
@media (min-width: 768px) {
  .archive-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 2rem;
  }
  
  /* First post: Large featured on left, spans 2 rows and 2 columns */
  .archive-grid__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  
  /* Second post: Top right */
  .archive-grid__item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  
  /* Third post: Bottom right */
  .archive-grid__item:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
  }
  
  /* Posts 4, 5, 6: Start new row in 3-column layout */
  .archive-grid__item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  
  .archive-grid__item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
  
  .archive-grid__item:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
  }
  
  /* Posts 7+: Continue in 3-column auto-flow */
  .archive-grid__item:nth-child(n+7) {
    grid-column: auto;
  }
}

/* Large desktop: Enhanced spacing and sizing */
@media (min-width: 1200px) {
  .archive-grid {
    padding: 3rem;
  }
  
  .archive-grid__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(350px, auto);
  }
  
  /* Keep the same layout structure as tablet, just with enhanced sizing */
  .archive-grid__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  
  .archive-grid__item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  
  .archive-grid__item:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
  }
  
  .archive-grid__item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  
  .archive-grid__item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
  
  .archive-grid__item:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
  }
  
  .archive-grid__item:nth-child(n+7) {
    grid-column: auto;
  }
}

/* Archive Card */
.archive-card {
  background: var(--color-white);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.archive-card__anchor {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.archive-card__anchor:hover {
  text-decoration: none;
}

.archive-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

/* Let featured post images maintain natural aspect ratio */
.archive-card--featured .archive-card__image {
  aspect-ratio: unset;
}

.archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.archive-card:hover .archive-card__image img {
  transform: scale(1.05);
}

.archive-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: calc(100% - 200px);
}

/* Large Featured Post (First Post) Styles */
.archive-grid__item:nth-child(1) .archive-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.archive-grid__item:nth-child(1) .archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.archive-grid__item:nth-child(1) .archive-card__image {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: unset;
}

.archive-grid__item:nth-child(1) .archive-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.archive-grid__item:nth-child(1) .archive-card__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-white);
  color: var(--color-black);
}

.archive-grid__item:nth-child(1) .archive-card__category {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  margin: 0;
}

.archive-grid__item:nth-child(1) .archive-card__title {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  font-family: var(--font-family-serif);
}

.archive-grid__item:nth-child(1) .archive-card__excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.archive-grid__item:nth-child(1) .archive-card__meta {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.archive-grid__item:nth-child(1) .archive-card__date {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.archive-grid__item:nth-child(1) .archive-card__read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.archive-grid__item:nth-child(1):hover .archive-card__read-more {
  color: var(--color-accent);
}

.archive-grid__item:nth-child(1):hover .archive-card__icon {
  transform: translateX(3px);
}

/* All posts except the first featured one */
.archive-grid__item:nth-child(n+2) .archive-card {
  height: 100%;
  width: 100%;
}

/* All posts except first - consistent square images */
.archive-grid__item:nth-child(n+2) .archive-card__image {
  aspect-ratio: 1/1;
  height: 280px;
  width: 100%;
}

/* Consistent styling for all posts except first */
.archive-grid__item:nth-child(n+2) .archive-card__image img {
  width: 100%;
  object-fit: cover;
}

.archive-grid__item:nth-child(n+2) .archive-card__title {
  font-size: 1.125rem;
  line-height: 1.3;
}

.archive-grid__item:nth-child(n+2) .archive-card__content {
  padding: 1rem 1.5rem 1rem;
}

@media (min-width: 1200px) {
  .archive-grid__item:nth-child(1) .archive-card__image {
    min-height: 500px;
  }
  
  .archive-grid__item:nth-child(1) .archive-card__content {
    padding: 3rem 2rem 2rem;
  }
  
  .archive-grid__item:nth-child(1) .archive-card__title {
    font-size: 2.5rem;
  }
  
  .archive-grid__item:nth-child(1) .archive-card__excerpt {
    font-size: 1.125rem;
  }
  
  /* All posts except first - desktop sizes */
  .archive-grid__item:nth-child(n+2) .archive-card__image {
    height: 320px;
  }
}

.archive-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  margin: 0;
}

.archive-card__title {
  font-family: var(--font-family-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--color-black);
}

.archive-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  flex-grow: 1;
}

.archive-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.archive-card__date {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.archive-card__read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.archive-card__icon {
  width: 12px;
  height: 8px;
  transition: transform 0.3s ease;
}

.archive-card:hover .archive-card__read-more {
  color: var(--color-accent);
}

.archive-card:hover .archive-card__icon {
  transform: translateX(3px);
}

/* Load More Button */
.archive-grid__load-more {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-serif);
}

.load-more-btn:hover {
  background: transparent;
  color: var(--color-black);
}

/* No Posts Section */
.no-posts {
  padding: 4rem 0;
  text-align: center;
}

.no-posts__inner h2 {
  font-family: var(--font-family-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.no-posts__inner p {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

/* Archive Grid Item Filtering */
.archive-grid__item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.archive-grid__item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

@media (max-width: 768px) {
  .archive-grid {
    padding: 2rem 0;
  }
  
  .archive-grid__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .archive-card__content {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .archive-card__title {
    font-size: 1.125rem;
  }
}

/* ——— Page Hero Swiper - Flexible & Dynamic ——— */
.page-hero-swiper {
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-hero-swiper .slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image Slides */
.page-hero-swiper .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-hero-swiper .slide-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* YouTube Video Slides */
.page-hero-swiper .slide-youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  overflow: hidden;
}

.page-hero-swiper .slide-youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Keep video at reasonable size */
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

/* Slide Overlay Content */
.hero .slide-overlay {
  text-align: center;
  color: white;
  padding: 2rem;
  background: black;
  position: relative;
  z-index: 2;
}

.hero .slide-text-content {
  position: relative;
  z-index: 3;
}

.hero .slide-title {
  font-size: 4rem;
  font-weight: 200;
  margin: 0 0 1.5rem 0; /* Increased bottom margin */
  line-height: 0.9;
  font-family: var(--font-family-serif);
  text-align: center;
}

.hero .slide-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  text-align: center;
}

/* Update responsive styles */
@media (max-width: 768px) {
  .hero .slide-text-content {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .hero .slide-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
  }
  
  .hero .slide-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero .slide-title {
    font-size: 2rem;
  }
  
  .hero .slide-text-content {
    padding: 1rem;
    margin-top: 1.5rem;
  }
}

/* Artist Social Section - Roc Nation Style */
.hero .artist-social-section {
  margin-top: 2rem;
}

.hero .social-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0.9;
}

.hero .slide-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero .slide-social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero .slide-social-icons .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
    min-height: 250px;
    /* max-height: 400px; */
    background-color: #000;
  }
  
  /* Mobile video scaling - keep it reasonable */
  .hero .slide-youtube iframe {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
  }
  
  .hero .slide-title {
    font-size: 2.5rem;
  }
  
  .hero .slide-subtitle {
    font-size: 1rem;
  }
  
  .hero .slide-text-content {
    padding: 0 1rem;
  }
  
  .hero .slide-social-icons .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero .slide-title {
    font-size: 2rem;
  }
  
  .hero .slide-social-icons {
    gap: 0.75rem;
  }
  

}



/* Old page hero styles removed - using new swiper instead */

/* ——— ROC NATION INSPIRED PAGE CONTENT LAYOUT ——— */

/* Page Content Container - Grey Background */
.page-content {
  background-color: #f5f5f5;
  padding: 4rem 0;
  position: relative;
}

.page-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-content__wrapper {
  max-width: 1000px; /* Wider like Roc Nation - was 680px */
  margin: 0 auto;
  background: white;
  border-radius: 0; /* Clean rectangular box */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 200px; /* Main content + sidebar space for DJ graphic */
  gap: 0;
}

/* Elegant Art Studio Easel - Fine Art Theme */
.page-content__wrapper::after {
  content: '';
  position: absolute;
  right: -200px; /* Bring it closer so 2/3 is visible */
  top: 50%; /* Center it vertically */
  width: 1400px; /* Massive size to stretch beyond div */
  height: 1400px; /* Massive size to stretch beyond div */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 1400" fill="none"><defs><pattern id="tessellation" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><g stroke="%23d4af37" stroke-width="1.5" fill="none" opacity="0.15"><path d="M0 100 Q50 50 100 100 Q150 150 200 100 L200 200 Q150 150 100 200 Q50 150 0 200 Z" fill="%23d4af37" opacity="0.03"/><path d="M100 0 Q150 50 200 0 L200 100 Q150 50 100 100 Q50 50 0 100 L0 0 Q50 50 100 0 Z" fill="%23d4af37" opacity="0.03"/></g></pattern><linearGradient id="fadeGradient" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23d4af37;stop-opacity:0.08"/><stop offset="50%" style="stop-color:%23d4af37;stop-opacity:0.12"/><stop offset="100%" style="stop-color:%23d4af37;stop-opacity:0.06"/></linearGradient></defs><rect width="1400" height="1400" fill="url(%23tessellation)"/><g stroke="%23d4af37" stroke-width="2" fill="none" opacity="0.18"><g transform="translate(300,200)"><path d="M0 200 Q100 100 200 200 Q300 100 400 200 Q500 300 400 400 Q300 500 200 400 Q100 300 0 400 Q-100 300 0 200" stroke-width="1.5"/><path d="M200 0 Q300 100 400 0 Q500 100 600 0 Q700 -100 600 -200 Q500 -300 400 -200 Q300 -100 200 -200 Q100 -100 200 0" stroke-width="1.5" transform="translate(0,400)"/><circle cx="200" cy="200" r="80" stroke-width="1" opacity="0.3"/><circle cx="400" cy="200" r="60" stroke-width="1" opacity="0.25"/><circle cx="300" cy="350" r="40" stroke-width="1" opacity="0.2"/><path d="M150 150 Q200 100 250 150 Q300 200 250 250 Q200 300 150 250 Q100 200 150 150" stroke-width="1" opacity="0.4"/><path d="M350 150 Q400 100 450 150 Q500 200 450 250 Q400 300 350 250 Q300 200 350 150" stroke-width="1" opacity="0.4" transform="rotate(45 400 200)"/></g><g transform="translate(600,500) rotate(30)"><path d="M0 0 Q50 -50 100 0 Q150 50 100 100 Q50 150 0 100 Q-50 50 0 0" stroke-width="1" opacity="0.3"/><path d="M100 0 Q150 -50 200 0 Q250 50 200 100 Q150 150 100 100 Q50 50 100 0" stroke-width="1" opacity="0.3"/><path d="M50 50 Q100 0 150 50 Q200 100 150 150 Q100 200 50 150 Q0 100 50 50" stroke-width="1" opacity="0.25"/></g><g transform="translate(800,800) rotate(-20)"><ellipse cx="0" cy="0" rx="120" ry="60" stroke-width="1" opacity="0.2"/><ellipse cx="40" cy="20" rx="80" ry="40" stroke-width="1" opacity="0.15"/><ellipse cx="-30" cy="-15" rx="60" ry="30" stroke-width="1" opacity="0.1"/></g></g><g fill="url(%23fadeGradient)" opacity="0.05"><polygon points="200,300 400,200 600,400 400,500"/><polygon points="600,600 800,500 1000,700 800,800"/><polygon points="100,800 300,700 500,900 300,1000"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  transform: rotate(15deg) translateY(-50%); /* Subtle rotation + perfect vertical centering */
}

/* Content Inside the White Box - Grid Layout */
.page-content__wrapper .entry-content,
.page-content__wrapper > * {
  padding: 4rem 4rem 4rem 4rem;
  grid-column: 1; /* Take first column */
  max-width: 700px; /* Limit text width for readability */
  position: relative;
  z-index: 2;
}

/* Page Title Styling */
.page-content__wrapper h1 {
  font-family: var(--font-family-serif);
  font-size: 9rem;
  font-weight: 200;
  color: var(--color-black);
  margin-bottom: 2rem;
  line-height: 1.1;
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

/* Typography inside content box */
.page-content__wrapper p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.page-content__wrapper h2 {
  font-family: var(--font-family-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 2.5rem 0 1.5rem 0;
  line-height: 1.3;
}

.page-content__wrapper h3 {
  font-family: var(--font-family-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-black);
  margin: 2rem 0 1rem 0;
  line-height: 1.3;
}

.page-content__wrapper h4,
.page-content__wrapper h5,
.page-content__wrapper h6 {
  font-family: var(--font-family-serif);
  font-weight: 500;
  color: var(--color-black);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.3;
}

/* Links styling */
.page-content__wrapper a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.page-content__wrapper a:hover {
  border-bottom-color: var(--color-accent);
  text-decoration: none;
}

/* Lists styling */
.page-content__wrapper ul,
.page-content__wrapper ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.page-content__wrapper li {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
}

/* Images inside content */
.page-content__wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blockquotes */
.page-content__wrapper blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #f9f9f9;
  font-style: italic;
  font-size: 1.125rem;
  color: #555;
}

/* Tables */
.page-content__wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
}

.page-content__wrapper th,
.page-content__wrapper td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.page-content__wrapper th {
  background: #f9f9f9;
  font-weight: 600;
  color: var(--color-black);
}

/* Code blocks */
.page-content__wrapper pre,
.page-content__wrapper code {
  background: #f5f5f5;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.9rem;
}

.page-content__wrapper pre {
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.page-content__wrapper code {
  padding: 0.2rem 0.4rem;
}

/* WordPress alignments */
.page-content__wrapper .alignleft {
  float: left;
  margin: 0 2rem 1rem 0;
}

.page-content__wrapper .alignright {
  float: right;
  margin: 0 0 1rem 2rem;
}

.page-content__wrapper .aligncenter {
  display: block;
  margin: 2rem auto;
}

/* WordPress galleries */
.page-content__wrapper .gallery {
  margin: 2rem 0;
}

.page-content__wrapper .gallery-item {
  display: inline-block;
  margin: 0.5rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-content {
    padding: 4rem 0 2rem 0;
  }
  
  .page-content__container {
    padding: 0 1rem;
  }
  
  .page-content__wrapper {
    display: block; /* Remove grid on mobile */
    max-width: 100%;
  }
  
  .page-content__wrapper::after {
    display: none; /* Hide DJ graphic on mobile */
  }
  
  .page-content__wrapper .entry-content,
  .page-content__wrapper > * {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  
  .page-content__wrapper h1 {
    font-size: 4.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
  }
  
  .page-content__wrapper h2 {
    font-size: 1.5rem;
  }
  
  .page-content__wrapper h3 {
    font-size: 1.25rem;
  }
  
  .page-content__wrapper p,
  .page-content__wrapper li {
    font-size: 1rem;
  }
  
  .page-content__wrapper .alignleft,
  .page-content__wrapper .alignright {
    float: none;
    margin: 1rem 0;
  }
}

@media (max-width: 480px) {
  .page-content__wrapper .entry-content,
  .page-content__wrapper > * {
    padding: 1.5rem 1rem;
  }
  
  .page-content__wrapper h1 {
    font-size: 6rem;
    font-weight: 200;
  }
  
  .page-content__wrapper blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .page-content__wrapper table {
    font-size: 0.9rem;
  }
  
  .page-content__wrapper th,
  .page-content__wrapper td {
    padding: 0.5rem 0.75rem;
  }
}

/* Page Links (pagination) */
.page-content__wrapper .page-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.page-content__wrapper .page-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: var(--color-accent);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-content__wrapper .page-links a:hover {
  background: #c50500;
}

.page-content__wrapper .page-links > span {
  margin-right: 0.5rem;
  font-weight: 600;
  color: #666;
}

/* ——— END ROC NATION INSPIRED LAYOUT ——— */

/* ——— SINGLE POST ADDITIONAL STYLING ——— */

/* Entry Meta (date, author) */
.page-content__wrapper .entry-meta {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

.page-content__wrapper .entry-meta a {
  color: #666;
  text-decoration: none;
}

.page-content__wrapper .entry-meta a:hover {
  color: var(--color-accent);
}

.page-content__wrapper .entry-meta .byline {
  margin-left: 1rem;
}

/* Entry Footer (categories, tags, edit link) */
.page-content__wrapper .entry-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

.page-content__wrapper .entry-footer span {
  display: inline-block;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-content__wrapper .entry-footer a {
  color: #666;
  text-decoration: none;
}

.page-content__wrapper .entry-footer a:hover {
  color: var(--color-accent);
}

/* Post Navigation */
.post-navigation {
  background: #f5f5f5;
  padding: 3rem 0;
  margin-top: 0;
}

.post-navigation .nav-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
  max-width: 45%;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a {
  display: block;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s ease;
}

.post-navigation a:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-navigation .nav-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-black);
}

/* Comments Section */
.comments-area {
  background: #f5f5f5;
  padding: 3rem 0;
}

/* Add proper container constraints like other sections */
.comments-area .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.comments-area .comments-title,
.comments-area .comment-reply-title {
  font-family: var(--font-family-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-black);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-list .comment {
  background: white;
  border-radius: 0;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comment-list .comment-author {
  margin-bottom: 1rem;
}

.comment-list .comment-author .fn {
  font-weight: 600;
  color: var(--color-black);
}

.comment-list .comment-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.comment-list .comment-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.comment-form {
  background: white;
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.comment-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-black);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.comment-form .form-submit {
  margin-top: 1rem;
}

.comment-form .submit {
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comment-form .submit:hover {
  background: #c50500;
}

/* Mobile responsiveness for posts */
@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    max-width: 100%;
  }
  
  .post-navigation .nav-next {
    text-align: left;
  }
  
  .post-navigation a {
    padding: 1rem 1.5rem;
  }
  
  .comments-area {
    padding: 2rem 0;
  }
  
  .comments-area .container {
    padding: 0 1rem;
  }
  
  .comments-area .comment-reply-title {
    padding-left: 0;
  }
  
  .comment-list .comment,
  .comment-form {
    padding: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .page-content__wrapper .entry-meta .byline {
    margin-left: 0;
    display: block;
    margin-top: 0.5rem;
  }
}

/* ——— END SINGLE POST STYLING ——— */

/* ——— Scroll to Top Button ——— */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(225, 6, 0, 0.25);
}

.scroll-to-top svg {
  transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

