/* 
   World Famous Good Brothers - Phase 1 Landing Page
   Colors: Dark Black background, Gold/Yellow text, Metallic Gold accents
*/

:root {
  --bg-dark: #080808;
  --bg-card: #121212;
  --text-gold: #ffd700;
  --text-gold-sub: #e6c200;
  --text-light: #e0e0e0;
  --text-muted: #a0a0a0;
  --border-metallic: #d4af37;
  --metallic-gradient: linear-gradient(135deg, #d4af37, #ffd700, #aa7c11, #d4af37);
  --gold-glow: rgba(255, 215, 0, 0.25);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-gold);
  font-family: var(--font-family);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 1rem 3rem 1rem;
  line-height: 1.5;
  background-image: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(8, 8, 8, 1) 70%);
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

/* Header & Hero Graphic */
header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  max-width: 100%;
  width: 480px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

/* Section Headings */
.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-gold);
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--metallic-gradient);
  border-radius: 2px;
}

/* Link Cards Layout */
.section-block {
  width: 100%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.brand-card {
  background: var(--bg-card);
  border: 2px solid var(--border-metallic);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--text-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px var(--gold-glow), inset 0 0 15px rgba(255, 215, 0, 0.15);
  background: #181818;
}

.brand-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 0.8rem;
}

.brand-card .cta-btn {
  padding: 0.55rem 1.4rem;
  background: var(--metallic-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

/* Wrestler Social Sections */
.wrestlers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.wrestler-card {
  background: var(--bg-card);
  border: 2px solid var(--border-metallic);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.wrestler-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wrestler-handle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gold-sub);
  margin-top: 0.2rem;
  margin-bottom: 1.2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  width: 100%;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  color: var(--text-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.social-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-btn:hover {
  background: #252525;
  border-color: #ffd700;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

/* Footer */
footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer p {
  color: var(--text-muted);
}

/* Media Queries */
@media (max-width: 600px) {
  body {
    padding: 1.5rem 0.8rem 2rem 0.8rem;
  }

  .hero-logo {
    width: 340px;
  }

  .wrestler-card {
    padding: 1.25rem;
  }

  .social-btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
}
