/* PSAD Performance Solutions Theme */

body {
  font-family: 'Orbitron', sans-serif; /* Motorsport-inspired typeface */
  background-color: #111; /* Deep garage black */
  color: #f5f5f5; /* High-contrast readability */
  margin: 100;
  padding: 0;
}
nav a {
  color: #ffcc00;
  text-decoration: none;   /* <-- removes underline */
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e30613;          /* Porsche red accent */
  text-decoration: none;   /* keep underline off even on hover */
}
.primary_header .title {
  display: flex;              
  align-items: center;        
  justify-content: center;    /* <-- add this */
  gap: 0.75rem;               
  font-family: 'Orbitron', sans-serif;
  color: #f5f5f5;
}

.logo-container {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;     /* Vertically center (if height is set) */
  height: 200px;           /* Optional: set height to center vertically */
}

.logo-container img {
  max-width: 150px;
  height: auto;
}

.primary_header .logo {
  height: 200px;               /* Adjust size to fit header */
  width: auto;                /* Keep aspect ratio */
}
header {
  background: linear-gradient(90deg, #e30613, #ffcc00); /* Racing stripe effect */
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
}
	
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #222;
}

nav a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e30613; /* Porsche red accent */
}

button {
  background-color: #e30613;
  border: none;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ffcc00; /* Motorsport yellow */
  color: #111;
}

/* Ensure the site has breathing room */
body {
  margin: 0;
}

.container {
  max-width: 1200px;        /* prevent overly-wide lines on big screens */
  margin: 0 auto;           /* center the container */
  padding: 0 15px;          /* left/right cushion */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}
