/*
Theme Name: Anthony Parsons
Theme URI: https://anthonyparsons.com
Author: Custom Developer
Author URI: https://anthonyparsons.com
Description: Full-width lightweight theme for Anthony Parsons, styled after the NG20 architecture.
Version: 2.0
License: GPL v2 or later
Text Domain: anthony-parsons
*/

/* 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,
.page-slug-links body {
  background: #000000;
}

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

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

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

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

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

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

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

.main-navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  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 - Edge-to-Edge Canvas */
.site-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.page .entry-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

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 Responsiveness */
@media (max-width: 768px) {
  .site-header {
    padding: 20px 15px;
  }
  
  .site-title a {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}