/* Reset + Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Larsseit', sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    position: relative;
    z-index: 1000;
  }
  
  /* Nav links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
  }
  
  /* Hamburger button */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: black;
    margin: 4px 0;
    transition: 0.3s ease;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background-color: white;
      padding: 1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }

  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
    filter: brightness(60%);
  }
  
  .hero-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    color: #fff;
    max-width: 600px;
  }
  
  .hero-logo {
    width: 240px;
    margin-bottom: rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #fff;
    color: #000;
  }
  
  .scrolling-offer {
    margin-top: 2rem;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    animation: scroll-text 65s linear infinite;
    color: #fff;
    text-transform: uppercase;
  }

  footer {
    background: #fff;
    color: #000;
    padding: 4rem 2rem;
    font-family: 'Larsseit', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
  }
  
  .footer-section {
    flex: 1 1 200px;
    min-width: 200px; 
    text-align: left;
  }
  
  .footer-section h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    text-decoration: none;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-social img {
    width: 32px;
    height: 32px;
    background: #000;
    padding: 6px;
    border-radius: 6px;
    filter: invert(1);
    transition: transform 0.2s ease;
  }
  
  .footer-social img:hover {
    transform: scale(1.1);
  }
  
  
  @keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
  @media screen and (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      background: #fff;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hero-content {
      left: 5%;
      right: 5%;
    }
  
    .hero-logo {
      width: 120px;
    }
  }
  