/* ============================================================
   AURAL GALLERY v5.0 — MASTER STYLESHEET
   Author: Code GPT
   Purpose: Final unified design system with accessibility,
            gradients, animations, and editorial layout
============================================================ */


/* ============================================================
   SECTION 1: GLOBAL SETTINGS & BASE TYPOGRAPHY
============================================================ */

@font-face {
  font-family: "OpusSpecialStd";
  src: url("assets/OpusSpecialStd.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('assets/Orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel Decorative';
  src: url('assets/Cinzel_Decorative/CinzelDecorative-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel Decorative';
  src: url('assets/Cinzel_Decorative/CinzelDecorative-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

.aural {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.sailski {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02rem;
}
/*.sailski { font-family: 'Orbitron', sans-serif; font-weight: 600; letter-spacing: 0.03rem; }
.sailski { font-family: 'Orbitron', sans-serif; font-weight: 600; letter-spacing: 0.03rem; }*/

/* Root color palette and global rules */
:root {
  --lavender-blue: #c5c9ff;
  --soft-lavender: #bfa8ff;
  --soft-blue: #c9e2ff;
  --accent-magenta: #cf8cff;
  --dark-bg: #0b0b1c;
  --text-color: #1a1a1a;
  --muted-text: #555;
  --white: #ffffff;
  --banner-bg: linear-gradient(135deg, #cfd9ff 0%, #d9c6ff 100%);
  /* PREVIOUS GRADIENT (Bluish-Magenta)
     --banner-bg: linear-gradient(135deg, #c6d8ff 0%, #e0c6ff 100%);
  */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}
/* ============================================================
   SECTION 1B: BODY BACKGROUND (Restored Tones)
============================================================ */

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background: linear-gradient(180deg,
    rgba(210, 215, 255, 1) 0%,
    rgba(238, 230, 255, 1) 40%,
    rgba(245, 250, 255, 1) 100%);
  line-height: 1.6;
  scroll-behavior: smooth;
}
/* ============================================================
   SECTION 2: HERO SECTION & TOP BANNER
============================================================ */

/* --- HERO CONTAINER --- */
.hero {
  position: relative;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(210,210,255,0.25) 0%, rgba(200,190,255,0) 60%),
              linear-gradient(135deg, #d4d7ff 0%, #e0d1ff 100%);
  padding-top: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(60, 40, 120, 0.2); /* hero-wide glow */
}


/* --- FLOATING “V” SCROLL INDICATOR --- */
.scroll-indicator {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "OpusSpecialStd";
  font-size: 1.8rem;
  color: rgba(190, 175, 255, 0.75);
  animation: floatV 3s ease-in-out infinite;
}

@keyframes floatV {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 0.4rem);
  }
}

/* --- TOP BANNER --- */
.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(14px);
  padding: 0.6rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
	  transform: translateY(-100%);   /* start hidden above viewport */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease;
  will-change: transform, opacity;
  transform: translateZ(0);         /* Force GPU acceleration */
  backface-visibility: hidden;      /* Prevent flicker */
  isolation: isolate;               /* New stacking context */
}


/* Left and right icon areas */
.banner-left, .banner-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.banner-left a, .banner-right a {
  color: #2a1d52;
  font-size: 1.25rem;
  margin-right: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.banner-left a:hover, .banner-right a:hover {
  color: #b855e2;
  transform: translateY(-2px);
}

/* --- CENTER TEXT (TAGLINE) --- */
.banner-center {
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #2a1d52;
}

.banner-center h1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
	color: #2a1d52;
}

.banner-center p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.2rem;
	color: #695c9a;
  /*font-style: italic;*/
}
.banner-center a {
  text-decoration: none;
  color: inherit;
}

.banner-center .subtext {
  font-style: italic;
  color: #695c9a;
}

/* --- MENU ICON & DROPDOWN --- */
.menu-icon {
  cursor: pointer;
  margin-left: 1rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 3.5rem;
  background: rgba(255,255,255,0.85);
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.dropdown-menu ul {
  list-style: none;
}

.dropdown-menu ul li {
  margin: 0;
}

.dropdown-menu ul li a {
  display: block;
  padding: 0.6rem 1.4rem;
  color: var(--text-color);
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-menu ul li a:hover {
  background-color: var(--soft-blue);
}

/* --- HERO LOGO --- */
/* Hero logo - proportional and centered */
.hero-inner {
  padding: .5rem 0 .5rem;
  display: flex;
  justify-content: center;
}

.hero-inner .logo {
  width: 100%;
  max-width: 900px;
  height: 380px;
  object-fit: fill;
  transition: transform 0.3s ease;
	border-radius: 0.75rem;
  box-shadow: 0 12px 25px rgba(50, 30, 100, 0.25); /* subtle glow beneath */

}

.hero-inner .logo:hover {
  transform: scale(1.01);
}

/* ============================================================
   SECTION 3: FEATURED ARTICLE
============================================================ */

.content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(100, 80, 160, 0.1);
}

.featured-tag {
  text-transform: uppercase;
  color: var(--accent-magenta);
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.featured-title {
  text-align: center;
  font-size: 1.8rem;
  color: #241850;
  margin-bottom: 0.8rem;
}

.featured-subtitle {
  text-align: center;
  font-style: italic;
  color: #6a5e9c;
  margin-bottom: 1.5rem;
}

.album-cover {
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}

.article-body p {
  margin-bottom: 1.2rem;
  color: #2d2d2d;
}

.article-body h2, .article-body h3 {
  margin-top: 2rem;
  color: #37266d;
}

.article-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}
/* ============================================================
   SECTION 3B: PLAYLIST HERO (Mini Article Integration)
============================================================ */
.playlist-hero {
  position: relative;
  text-align: center;
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(220,220,255,0.3) 0%, rgba(245,240,255,0.9) 100%);
  padding: 2rem 1rem 3rem;
  border-radius: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 24px rgba(100,80,160,0.15);
}

.playlist-hero-image {
  width: 70%;
  max-width: 500px;
  border-radius: 14px;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.playlist-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  color: #31205a;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.playlist-hero .subhead {
  font-style: italic;
  color: #5a4b9e;
  font-size: 1rem;
}
/* ============================================================
   SECTION 4: INLINE PLAYLIST BREAK
============================================================ */

.inline-break {
  margin: 3rem 0;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #e6e9ff 0%, #f4efff 100%);
  border-radius: 14px;
  text-align: center;
}

.inline-break h3 {
  color: #2d1c68;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.card {
  text-decoration: none;
  color: var(--text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.card p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #3a2c70;
}

/* ============================================================
   SECTION 5: PLAYLIST GALLERY (BOTTOM SECTION)
============================================================ */

.playlist-gallery {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f3f6ff;
}

.playlist-gallery h2 {
  color: #2b2160;
  margin-bottom: 1.8rem;
}

/* ============================================================
   SECTION 6: FOOTER — REFINED SYMMETRY AND COLOR
============================================================ */

.site-footer {
  background: linear-gradient(180deg, #dcd7ff 0%, #eae3ff 100%);
  color: #2b1f4b;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 3rem 4rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.4);
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 240px;
  margin: 0 1rem;
  text-align: center;
}

/* Footer Headings */
.footer-left h3,
.footer-right h3 {
  color: #533d89;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04rem;
}

/* Links */
.footer-left ul {
  list-style: none;
  padding: 0;
}
.footer-left li {
  margin-bottom: 0.4rem;
}
.footer-left a {
  text-decoration: none;
  color: #2b1f4b;
  transition: color 0.3s ease;
}
.footer-left a:hover {
  color: #8a6bdc;
}

/* Center Section */
.footer-center {
  text-align: center;
}
.footer-center .footer-logo {
  max-width: 140px;
  margin-bottom: 0.8rem;
}
.footer-center p {
  font-size: 0.85rem;
  color: #4d3c72;
}

/* Right Section */
.footer-right {
  text-align: center;
}
.footer-right h3 {
  color: #533d89;
}
.footer-right .socials,
.footer-right .listen {
  margin-bottom: 0.8rem;
}
.footer-right i {
  font-size: 1.3rem;
  color: #2b1f4b;
  margin: 0 0.4rem;
  transition: color 0.3s;
}
.footer-right i:hover {
  color: #8a6bdc;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    margin-bottom: 1.5rem;
  }
}

/* ============================================================
   SECTION 7: ANIMATIONS & TRANSITIONS
============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION 8: RESPONSIVE DESIGN
============================================================ */

@media (max-width: 768px) {
  .top-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .banner-center h1 {
    font-size: 1rem;
  }

  .hero-inner .logo {
    max-width: 90%;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card img {
    width: 80%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
/* ============================================================
   SECTION 9: STREAMING BUTTONS – UNIFIED STYLE
============================================================ */
.streaming-links {
  text-align: center;
  margin: 3rem auto 4rem;
}

.streaming-links h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #4b3b8e;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.streaming-buttons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
}

.streaming-button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,180,255,0.3);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #4b3b8e;
  font-weight: 500;
  font-size: 0.9rem;
}

.streaming-button:hover {
  background: rgba(230,225,255,0.95);
  transform: translateY(-2px);
}

.music-icon {
  width: 20px;
  height: auto;
  display: inline-block;
}
/* ============================================================
   SECTION X: ABOUT PAGE STYLES
============================================================ */

.about-page {
  background: linear-gradient(180deg, rgba(225,220,255,1) 0%, rgba(245,245,255,1) 100%);
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(100,80,160,0.15);
  padding: 3rem 2.5rem;
}

.about-container h1,
.about-container h2 {
  text-align: center;
  font-family: 'Cinzel Decorative', serif;
  color: #3d2e6a; /* soft dark purple tone */
  margin-bottom: 1.2rem;
}

.about-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2d2552;
  margin-bottom: 1.4rem;
}

.about-container em {
  color: #6b5aa0;
}

.about-container strong {
  color: #412d85;
}

.about-highlight {
  background: linear-gradient(90deg, rgba(220,210,255,0.4), rgba(250,240,255,0.7));
  padding: 1rem 1.5rem;
  border-left: 4px solid #b795ff;
  border-radius: 0.5rem;
  margin: 1.8rem 0;
  color: #2d1f55;
  font-style: italic;
}
.mini-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: linear-gradient(135deg, #e4e1ff 0%, #f4f2ff 100%);
  color: #2b2160;
}

.mini-hero h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.mini-hero p {
  font-style: italic;
  color: #5f4e9b;
}