
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 /*    border: 1px solid red; */
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: #000;
    background-color: #ffffff;

  }
  
  h1, h2, h3, h4, h5 {
    color: #3b3b3b;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin: 1rem 1rem 0;
  }
  
  h3 {
    font-size: 1.4rem;
    margin: 1rem;
  }
  
  h4 {
    font-size: 1.2rem;
    margin: 0 1rem;
  }
  

  
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 2rem 2rem;
    max-width: 600px;
  }
  @media (max-width: 500px) {
    h1{
     font-size: 1.6rem;
    }
    h2{
     font-size: 1.4rem;
    }
  }
 
  #topnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
  }
  
  .logo {
    width: 170px;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle img {
    width: 38px;
    height: 38px;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    text-decoration: none;
    font-family: 'Caveat Brush', cursive;
    font-size: 1.5rem;
    color: #222;
    padding: 5px 8px;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    background: #d0d0d0;
    transform: rotate(-5deg);
    border-radius: 4px;
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      position: absolute;
      top: 5rem;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: #e9e9e9;
      text-align: center;
      padding: 1rem 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a:hover {
      transform: none;
    }
  }
  

 
#banner {
  width: 100vw;
  height: 100vh;
  background: url(images/bg-doris-bw.webp) center center / cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;  
  align-items: center;     
  padding: 0;   
}

@media (min-width: 900px) {
  #banner {
    background-size: contain;
  }
}

.div-transbox {
  display: flex;
  flex-direction: column;  
  align-items: center;     
  width: 60%;
  max-width: 600px;
  background: rgba(248, 236, 243, 0.9);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid #ccc;
 
}

.div-transbox img {
  display: block;
  margin: 0 auto;
  width: 70%;
  height: auto;
}

.div-text h1 {
  font-size: 4.5rem;
  color: #262626;
  font-family: 'Caveat Brush', cursive;
}

.transbox-p {
  font-size: 2.5rem;
  padding: 1rem;
  color: #262626;
  font-family: 'Caveat Brush', cursive;
}

@media (max-width: 800px) {
  .div-transbox img {
    width: 80%;
  }
  .div-transbox {
    width: 90%;
    max-width: 500px;
  }
  .transbox-p {
    font-size: 2rem;
  }
  .logo {
    width: 140px;
  }
}
@media (min-width: 1920px) {
  #banner{
  background-repeat: repeat;

  }
}

   
  #content .content-box {
    display: flex;
    max-width: 1024px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
  }
 

  .single-content {
    flex-basis: 46%;
    background-color: #f5f5f5;
    border-radius: 6px;
    padding-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .single-content img {
    width: 100%;
    cursor: pointer;
    border-radius: 6px;
   
  }
  
  .content-desc {
    padding: 1rem;
    text-align: left;
  }
  
  @media (max-width: 700px) {
    .single-content {
      flex-basis: 100%;
      margin: 0 1rem;
    }
  }
  .space-img {
    display: block;
   text-align: center;
    width: auto;
    margin: 0 auto;
    padding: 0;
  }
  .space-img img{
    max-width: 150px;
  }
    @media (max-width: 700px) {
    .space-img img{
    width: 100px;
    }
  }
  #about{
    
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 2rem 1rem;

  }
  .about-box{
    width: 100%;
    padding: 2rem 2rem;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  #about p{
    align-items: center;
    max-width: 600px;
    margin: 1rem auto 2rem;

  }
  #about h2 {
    max-width: 600px;
   margin: 1.5rem auto 0;
  }
  
  #contact {
    margin: 1rem 3rem 4rem;
 
  }
  
  .contact-box {
    display: flex;

    max-width: 1024px;
    margin: auto;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    background-color: #f5f5f5;
    border-radius: 6px;
    padding-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .contact-text {
    width: 100%;
/*     flex: 1 1 300px; */
    text-align: center;
    padding: 1rem;
  }
  
  .contact-text h3 {
    font-size: 1.5rem;
    margin: 1.5rem;
  }
  
  .contact-text p {
    font-size: 1rem;
  max-width:none;
    margin: 1rem;
text-align: center;
  }
 
  
  @media (max-width: 700px) {
    #contact{
        margin: 1rem;
    }
    .contact-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
   
    }
  
    .contact-text {
      text-align: center;
 
    }
  }
  
  /* === CTA-knappar === */
  .cta-wrapper {
    display: flex;
    width: 100%;
  justify-content: center;
    gap: 1rem;
    margin-top: 20px;
    flex-wrap: wrap;
   align-items: center;
  }
  
  .cta-wrapper a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
 
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    transition: all 0.25s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    top: 0;
  }
  
  .cta-wrapper a:hover {
    top: -2px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
  }
  
  .cta-wrapper a:active {
    top: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(0.98);
  }
  
  .cta-doris {
    background-color: #e27ba8;
  }
  
  .cta-doris:hover {
    background-color: #e785b9;
  }
  
  .cta-luz {
    background-color: #30add3;
    color: #1d3557;
  }
  
  .cta-luz:hover {
    background-color: #75c0d7;
  }
  .cta-sms {
    background-color: #199912;
    color: #1d3557;
  }
  
  .cta-sms:hover {
    background-color: #34ba2d;
  }
  

  .footer-img img {
    width: 80%;
    margin: 3% 10% -10%;
  }
  
  .container-social {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    padding: 1em 0;
  }
  
  .box-social-img {
    width: 30px;
    margin: 1em;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  
  .box-social-img:hover {
    opacity: 0.5;
  }
  
  .copyright {
    margin: 1em;
    text-align: center;
  }
  

  