/* 
  COLORS & FONTS:
  - Black: #000
  - White: #fff
  - Accent (yellow/gold): #FFC107 (adjust if needed)
  - Headings: Bebas Neue
  - Body: Open Sans
*/

/* Root variables for easy color management */
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-accent: #FFC107;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Open Sans', sans-serif;
  }
  
  /* Global Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.5;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
  }
  
  /* NAVBAR */
  .header {
    background-color: var(--color-black);
    color: var(--color-white);
    position: relative;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
  }
  
  .nav-links li a:hover {
    opacity: 0.7;
  }
  
  /* HERO SECTION */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    position: relative;
    text-align: center;
    /*background: url("boom-lift.jpg") center/cover no-repeat;*/
    background-color: #222; /* fallback if no background image */
  }
  
  .hero-content {
    color: var(--color-white);
    z-index: 1; /* ensures text is on top if there's an image */
  }
  
  .hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-content h1 span {
    color: var(--color-accent);
  }
  
  .hero-content p {
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  /* BUTTON STYLES */
  .btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e6b800; /* Slightly darker yellow */
  }
  
  /* SERVICES SECTION */
  .services {
    text-align: center;
    padding: 2rem 0;
  }
  
  .services h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .service-list li {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 600;
  }
  
  /* ABOUT SECTION */
  .about {
    text-align: center;
    padding: 2rem 0;
  }
  
  .about h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* CONTACT SECTION */
  .contact {
    text-align: center;
    padding: 2rem 0;
  }
  
  .contact h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .contact p {
    margin-bottom: 1rem;
  }
  
  /* FOOTER */
  .footer {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .footer a {
    color: #fff;
  }
  