/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }
  
  .parallax {
    position: absolute;
    top: 0;
    left: 0;
    height: 120%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translateY(0);
    z-index: 1;
    will-change: transform;
  }
  
  .hero-intro {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 5vw;
    color: white;
  }
  
  .hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .styrkja-button.large {
    font-size: 2.5rem;
    padding: 2rem 4rem;
    border-width: 3px;
  }
  
  /* About Section */
  .about-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
  }
  
  .about-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    opacity: 0.9;
    border-radius: 8px;
  }
  
  .about-text {
    flex: 1;
    text-align: left;
    padding: 2rem; /* ⬅️ Add padding inside the text block */
    max-width: 700px; /* ⬅️ Limit the width for easy reading */
    margin: 0 auto; /* ⬅️ Center it if needed */
  }
  
  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #000;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
  }
  
  /* Clean Full-Width Static Banner Section */
  .image-banner-section {
    width: 100%;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .image-banner-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .image-banner-section.with-button {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .image-banner-section.with-button img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .image-banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
  }
  
  .image-banner-overlay .styrkja-button.large {
    font-size: 2.5rem;
    padding: 2rem 4rem;
    border-width: 3px;
    background: white;
    color: black;
    transition: all 0.3s ease;
  }
  
  .image-banner-overlay .styrkja-button.large:hover {
    background: transparent;
    color: white;
    border-color: white;
  }
  /* Second parallax banner (independent from .hero-section) */
.parallax-banner-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    width: 100%;
  }
  
  .parallax-banner-bg {
    position: absolute;
    top: -10%;
    left: 0;
    height: 130%; /* gives us more room to scroll without gaps */
    width: 100%;
    background-image: url("../../assets/images/Hopmynd_DYRID.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 1;
    transform: translateY(0);
  }
  
  
  .parallax-banner-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  }
  
  .parallax-banner-overlay .styrkja-button.large {
    font-size: 2.5rem;
    padding: 2rem 4rem;
    border-width: 3px;
    background: white;
    color: black;
    transition: all 0.3s ease;
  }
  
  .parallax-banner-overlay .styrkja-button.large:hover {
    background: transparent;
    color: white;
    border-color: white;
  }
  