/* Custom Layout Styles for getbadvibes.com */

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 40px;
}

.hero-notice {
  font-size: 0.9em;
  color: #ff9999;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 20px;
}

/* Social Buttons Grid */
.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  display: inline-block;
  padding: 12px 24px;
  color: white !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-btn.instagram {
  background: #E1306C;
}

.social-btn.tiktok {
  background: #000;
}

.social-btn.x-twitter {
  background: #111;
  border: 1px solid #333;
}

.social-btn.youtube {
  background: #FF0000;
}

/* Content Sections */
.content-section {
  margin-bottom: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  display: inline-block;
  font-size: 1.8em;
  border-bottom: 2px solid #A64847;
  padding-bottom: 8px;
  margin: 0;
}

/* Grid Layout for Media Embeds */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Desktop Grid */
@media (min-width: 992px) {
  .media-grid.two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* Embed Containers */
.embed-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: #1a1a1a;
  transition: transform 0.3s ease;
}

.embed-container:hover {
  transform: translateY(-5px);
}

.embed-container.bandlab-guitars {
  height: 480px;
}

.embed-container.bandlab-synths {
  height: 630px;
}

.embed-container.soundcloud-full {
  height: 600px;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tiktok-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* Support Buttons Inline */
.support-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.support-button.kofi {
  background: linear-gradient(135deg, #6e90c9 0%, #5a7ab8 100%);
  color: white;
}

.support-button.bmc {
  background: linear-gradient(135deg, #4d267d 0%, #3d1f63 100%);
  color: white;
}

/* Aggressively hide third-party widgets */
.bmc-btn-container,
#bmc-wbtn,
.bmc-floating-button,
.bmc-widget,
#ko-fi-widget-root,
.ko-fi-widget-root,
.ko-fi-floating-button,
.ko-fi-overlay,
[class*="floating"],
[id*="floating"],
[class*="widget"],
[id*="widget"],
iframe[src*="ko-fi.com/widget"],
iframe[src*="buymeacoffee.com/widget"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

div[style*="position: fixed"],
div[style*="position: absolute"] {
  z-index: 100 !important;
}

/* Accessibility & Performance */
html {
  scroll-behavior: smooth;
}

a:focus,
button:focus,
iframe:focus {
  outline: 2px solid #A64847;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .embed-container:hover,
  .social-btn:hover,
  .support-button:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .embed-container.bandlab-guitars {
    height: 420px;
  }

  .embed-container.bandlab-synths {
    height: 500px;
  }

  .embed-container.soundcloud-full {
    height: 400px;
  }
}

/* Comment Box */
.commentbox {
  max-width: 800px;
  margin: 0 auto;
}