/* =================================================
   Nordic Blasting – Minimal svart‑vit stylesheet
   ================================================= */

/************
 * Temafärger
 ************/
 :root {
    --black: #000;
    --white: #fff;
    --gray-light: #f5f5f5;
    --shadow: rgba(0, 0, 0, 0.1);
  }
  
  /************
   * Grundreset
   ************/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
  
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }
  
  h2 {
    margin-bottom: 0.5rem;
  }


/* ===== Hamburgermeny ===== */
.mobile-nav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
  }
  
  .menu-icon {
    font-size: 2rem;
    cursor: pointer;
    color: rgb(255, 255, 255);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    user-select: none;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu {
    display: none;
    position: absolute;
    top: 3rem;
    right: 0;
    background: white;
    list-style: none;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .menu li {
    margin: 0.5rem 0;
  }
  
  .menu a {
    color: black;
    text-decoration: none;
    font-weight: bold;
  }
  
  #menu-toggle:checked + .menu-icon + .menu {
    display: block;
  }
  




  
  /************
   * Banner-top (stor bild i toppen)
   ************/
  .banner-top {
    background: url("foton/banner4.png") center/cover no-repeat;
    width: 100%;
    height: 50vh;
    min-height: 300px;
  }

  .banner-logo {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 120px;
    width: auto;
  }

  
  /************
   * Sektioner
   ************/
  section {
    padding: 3rem 2rem;
  }
  
  .services {
    background: var(--gray-light);
  }
  
  .services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .services li {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px var(--shadow);
  }
  
  /************
   * Kontaktkort
   ************/
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .contact-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px var(--shadow);
  }
  
  .contact-card a {
    color: var(--black);
  }
  
  .role {
    font-style: italic;
    margin-bottom: 0.5rem;
  }
  
  /************
   * Formulär
   ************/
  form input,
  form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--white);
    color: var(--black);
  }
  
  form ::placeholder {
    color: #777;
  }
  
  form button {
    margin-top: 0.75rem;
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
  }
  
  form button:hover {
    opacity: 0.85;
  }
  
  /************
   * Footer
   ************/
  footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1rem 2rem;
    box-shadow: 0 -2px 4px var(--shadow);
  }
  
  footer address {
    font-style: normal;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  