/* ===== AA GUITAR - Rock & Roll Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #FFB800;
  --gold-dark: #CC9200;
  --red: #FF2D2D;
  --red-dark: #CC0000;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --bg-card: #161616;
  --text: #e8e8e8;
  --text-muted: #888888;
  --border: #2a2a2a;
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img, .nav-logo svg {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(255, 184, 0, 0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(255, 184, 0, 0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover {
  background: var(--red-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 45, 45, 0.3);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0a00 40%, #100008 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,184,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,45,45,0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,184,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
}

.hero-logo {
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(255,184,0,0.4));
}

.hero-logo img, .hero-logo svg {
  width: min(400px, 80vw);
  height: auto;
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  color: white;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(255,184,0,0.3);
}

.hero-tagline span {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 2rem;
}

.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg-3); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  color: white;
}

.section-title span { color: var(--gold); }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS GRID ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ===== NEWS CARDS ===== */
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.12);
}

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg-3);
}

.news-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-3), #1e1200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-source {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.news-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  margin-top: auto;
}

/* ===== MUSICIAN CARDS ===== */
.musician-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.musician-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.15);
}

.musician-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1000, #0a0010);
}

.musician-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.musician-card-body {
  padding: 1.25rem;
}

.musician-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: white;
  letter-spacing: 0.05em;
}

.musician-band {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.musician-guitar {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.musician-bio {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.musician-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.musician-price strong {
  color: var(--gold);
}

.musician-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.875rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.shop-link-gc {
  background: rgba(255, 45, 45, 0.12);
  color: #ff6b6b;
  border: 1px solid rgba(255, 45, 45, 0.25);
}
.shop-link-gc:hover {
  background: rgba(255, 45, 45, 0.22);
  color: #ff8888;
  border-color: var(--red);
}

.shop-link-sw {
  background: rgba(255, 184, 0, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, 0.2);
}
.shop-link-sw:hover {
  background: rgba(255, 184, 0, 0.2);
  border-color: var(--gold);
}

.shop-link-amz {
  background: rgba(255, 153, 0, 0.1);
  color: #ff9900;
  border: 1px solid rgba(255, 153, 0, 0.2);
}
.shop-link-amz:hover {
  background: rgba(255, 153, 0, 0.2);
  border-color: #ff9900;
  color: #ffaa33;
}

.shop-link-icon { font-size: 1rem; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0f0a00, #100008);
  border-top: 1px solid rgba(255,184,0,0.2);
  border-bottom: 1px solid rgba(255,184,0,0.2);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-brand img, .footer-brand svg {
  height: 35px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.affiliate-disclaimer {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.5;
  flex: 1;
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
}

/* ===== NEWS PAGE SPECIFIC ===== */
.news-hero {
  background: linear-gradient(135deg, #0a0a0a, #0f0800);
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
  justify-content: center;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,184,0,0.08);
}

.loading-state {
  text-align: center;
  padding: 4rem;
  color: var(--text-muted);
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ===== SHOP PAGE SPECIFIC ===== */
.shop-hero {
  background: linear-gradient(135deg, #0a0a0a, #080010);
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
  justify-content: center;
}

.search-bar {
  display: flex;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  gap: 0;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-bar input:focus {
  border-color: var(--gold);
}

.search-bar button {
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  color: #0a0a0a;
  font-size: 1rem;
  transition: background 0.2s;
}

.search-bar button:hover {
  background: var(--gold-dark);
}

.shop-count {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.page-btn:hover, .page-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,184,0,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 1rem; gap: 1rem; }
  .nav-links { display: none; }
  
  section { padding: 3rem 1rem; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom { flex-direction: column; }
  .affiliate-disclaimer { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1rem; }
  
  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ===== HOME NEWS FEED (list style) ===== */
.news-view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
}
.news-view-all:hover { color: var(--gold-dark); }

#home-news-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.news-feed-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.news-feed-item:last-child { border-bottom: none; }
.news-feed-item:hover { background: var(--bg-3); }

.news-feed-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.news-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feed-body {
  flex: 1;
  min-width: 0;
}
.news-feed-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}
.news-feed-source {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-feed-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.news-feed-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-feed-item:hover .news-feed-title { color: var(--gold); }
.news-feed-teaser {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .news-feed-thumb { width: 56px; height: 44px; }
  .news-feed-teaser { display: none; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== SELECTION ===== */
::selection { background: rgba(255,184,0,0.3); }
