
:root {
    --primary-color: #ffffff;
    --dark-bg: #002290;
    --mid-bg: #2b2b2b;
    --light-bg: #f4f4f4;
    --text-light: #ffffff;
    --text-dark: #111;
    --text-muted: #ccc;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
  }
  
  .announcement {
    background-color: #ee980c;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
  }
  
  .top-bar {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border-bottom: 2px solid var(--dark-bg);
  }
  
  .top-bar .logo {
    display: flex;
    align-items: center;
  }
  
  .top-bar .logo img {
    height: 50px;
    margin-right: 15px;
  }
  
  .top-bar .contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .top-bar .contact-info div {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  
  .top-bar .contact-info div span {
    margin-left: 8px;
  }
  
  .top-bar .contact-info div a {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
  }
  
  header {
    background-color: var(--dark-bg);
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    color: var(--primary-color);
    margin: 0;
  }
  

  .hero {
    background: url('/img/ps5-teardown.jpeg') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
  }
  
  .hero h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    text-shadow: 1px 1px 5px #000;
  }
  
  .hero p {
    text-shadow: 1px 1px 3px #000;
  }
  
  .content-section {
    padding: 40px 20px;
    background-color: var(--light-bg);
  }
  
  .content-section h3 {
    color: var(--primary-color);
  }
  
  .content-section p {
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
  }
  
  footer {
    background-color: var(--dark-bg);
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
  }

/*  Hamburger  */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 1rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
  }
  
  .hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: #444;
      position: absolute;
      top: 60px;
      right: 0;
      width: 200px;
      padding: 1rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  }


  .banner {
    width: 100%;
    height: 200px;
    background: linear-gradient(to right, #00bfff, #1e90ff); /* Blue gradient */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
}
.banner-text {
    font-size: 30px;
    font-weight: bold;
    padding: 20px;
}
.banner-text h1 {
    margin: 0;
    font-size: 36px;
}
.banner-text p {
    margin: 10px 0;
    font-size: 18px;
}
.cta {
    font-size: 20px;
    font-weight: normal;
    color: #FFD700; /* Gold color */
}

