/* Layout Styles
======================================= */

.hn-cinema-page {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}
.hn-cinema-page * {
  box-sizing: border-box;
}
.hn-cinema-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}
/* HERO */
.hn-cinema-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 600px;
  overflow: hidden;
  border-radius: 14px;
  background:
   linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.68) 32%, rgba(0,0,0,0.18) 68%, rgba(0,0,0,0.05) 100%),
   url("https://hnuk.blob.core.windows.net/hnuk-assets/web-pages/stella-cinema-sofa-hero-page.jpg") center right/cover no-repeat;
}

.hn-cinema-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hn-cinema-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hn-cinema-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hn-cinema-hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 52px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hn-cinema-hero h1 {
  font-size: 56px;
  line-height: 1;
  margin: 0 0 18px;
  font-weight: 900;
  color: #fff;
}
.hn-cinema-hero p {
  font-size: 19px;
  line-height: 1.45;
  color: #fff;
}
.hn-hero-cta {
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid #fff;
  border-radius: 0;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hn-hero-cta:hover {
  background: #fff;
  color: #111;
}
/* SECTION TITLES */
.hn-section-title {
  text-align: center;
  max-width: 680px;
  margin: 28px auto 28px;
}
.hn-section-title h2 {
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 900;
}
.hn-section-title p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin: 0 auto;
}
/* FEATURE SECTION */
.hn-feature-carousel {
  max-width: 1120px;
  margin: 0 auto 60px;
}
.hn-feature-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hn-feature-tile {
  position: relative;
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hn-feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 25%,
    rgba(0, 0, 0, 0.78) 100%
  );
}
.hn-feature-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 28px;
}
.hn-feature-content h3 {
  font-size: 28px;
  margin: 0 0 10px;
  font-weight: 900;
  color: #fff;
}
.hn-feature-content p {
  font-size: 15px;
  margin: 0;
  max-width: 480px;
  color: #fff;
}
/* VIDEO */
.hn-video-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 60px;
  margin-bottom: 60px;
  background: #111;
  padding: 55px 16px;
}
.hn-video-text {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 28px;
}
.hn-video-text h2 {
  font-size: 34px;
  margin: 0 0 12px;
  font-weight: 900;
  color: #fff;
}
.hn-video-text p {
  font-size: 16px;
  color: #ddd;
  margin: 0;
}
.hn-video-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}
/* PRODUCTS */
.hn-product-strip {
  background: #fff;
  padding: 10px 0 20px;
  margin: 45px 0;
}
.hn-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hn-product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hn-product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #f3f3f3;
}
.hn-product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.hn-product-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: capitalize;
}
.hn-product-info p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.hn-button-primary {
  display: inline-block;
  background: #004378;
  padding: 1em;
  margin-top: 24px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #004378;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1em;
  text-align: center;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.hn-button-primary:hover {
  opacity: 90%;
}

.hn-red-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  background: #e30613;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 4px;
  text-decoration: none;
}
/* FINAL CTA */
.hn-wide-cta {
  display: flex;
  width: 100%;
  min-height: 420px;
  margin: 45px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #373737;
}
.hn-wide-cta-image {
  width: 58%;
  min-height: 420px;
  background: url("https://hnuk.blob.core.windows.net/hnuk-assets/hn-landing-pages/cinema-sofas/images/titan-tv-ottoman-marbella-grey-tv-bed-harvey-norman-uk.jpg")
    center center / cover no-repeat;
}
.hn-wide-cta-content {
  width: 42%;
  background: #373737;
  color: #fff;
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}
.hn-wide-cta-content h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 900;
  color: #fff;
}
.hn-wide-cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 30px;
  color: #fff;
}
.hn-wide-cta-btn {
  display: inline-block;
  align-self: center;
  padding: 14px 38px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}
.hn-wide-cta-btn:hover {
  background: #fff;
  color: #005b84;
}

@media (max-width: 989px) {
  .hn-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hn-wide-cta {
    flex-direction: column;
  }
  .hn-wide-cta-image,
  .hn-wide-cta-content {
    width: 100%;
  }
  .hn-wide-cta-image {
    min-height: 280px;
  }
  .hn-product-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .hn-feature-showcase {
  grid-template-columns: repeat(1, 1fr);
}
}



/* Font Styles
======================================= */
.hn-main-container {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  } /* 32px */
  h2 {
    font-size: 1.75rem;
  } /* 28px */
  h3 {
    font-size: 1.5rem;
  } /* 24px */
  h4 {
    font-size: 1.25rem;
  } /* 20px */
  h5 {
    font-size: 1.125rem;
  } /* 18px */
  h6 {
    font-size: 1rem;
  } /* 16px */

  @media (min-width: 768px) {
    h1 {
      font-size: 2.5rem;
    } /* 40px */
    h2 {
      font-size: 2rem;
    } /* 32px */
    h3 {
      font-size: 1.75rem;
    } /* 28px */
    h4 {
      font-size: 1.5rem;
    } /* 24px */
    h5 {
      font-size: 1.25rem;
    } /* 20px */
    h6 {
      font-size: 1rem;
    } /* 16px */
  }
}

/* Media Queries
======================================= */
@media screen and (min-width: 768px) {
}