/*
Theme Name: NG20 Custom Theme
Theme URI: https://ng20music.com
Author: NG20
Author URI: https://ng20music.com
Description: Custom lightweight theme built specifically for NG20 music website. Full-width pages, no bloat, optimized for custom HTML content.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ng20-theme
*/

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

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Links page specific - full black background, no header/footer */
.page-template-links-page body {
  background: #000000;
}

.page-template-links-page .site-header,
.page-template-links-page .site-footer {
  display: none;
}

/* Container */
.site-container {
  max-width: 100%;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #000000;
  padding: 20px 40px;
  border-bottom: 3px solid #D4AF37;
}

.site-title {
  margin: 0;
  padding: 0;
}

.site-title a {
  color: #D4AF37;
  text-decoration: none;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 4px;
}

.site-title a:hover {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Navigation */
.main-navigation {
  margin-top: 20px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.main-navigation a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.main-navigation a:hover {
  color: #ffffff;
}

/* Content Area */
.site-content {
  max-width: 100%;
  padding: 0;
  margin: 0 0 0 0;
}

/* Pages get full width with no bottom spacing */
.page .entry-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Remove any default WordPress spacing */
article {
  margin: 0 !important;
  padding: 0 !important;
}

/* Footer */
.site-footer {
  background: #000000;
  border-top: 3px solid #D4AF37;
  padding: 40px 20px;
  text-align: center;
  color: #D4AF37;
  margin-top: 0;
}

.footer-navigation {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-navigation a {
  color: #D4AF37;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-navigation a:hover {
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
  }
  
  .site-title a {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 15px;
  }
}
