* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0b0b0b;
  font-family: Inter, sans-serif;
  color: #eaeaea;
}

.Logo_BrandLabs path,
.nav-link {
  fill: var(--color-primary-Obituary) !important;
  color: var(--color-primary-Obituary) !important;
}

/* SECTION */

.obituary {
  padding-top: 100px;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 0;
}

/* CONTAINER */

.obituary-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  align-items: center;
  position: relative;
}

/* LEFT SIDE */

.obituary-left {
  padding: 0 60px;
  z-index: 2;
}

.centertext {
  width: 100%;
  text-align: center;
  font-family: "Inter_18pt-Medium";
}

h1 {
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 0.5rem;
}

.subtitle {
  display: inline-block;
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 2px;
  color: #aaa;
  padding-bottom: 14px;
  border-bottom: 1px solid #666;
  margin-bottom: 3rem;
}

.obituary-left p {
  font-size: clamp(15px, 1.2vw, 13px);
  line-height: 1.8;
  color: #bfbfbf;
  margin-bottom: 14px;
}

.signature {
  margin-top: 18px;
  font-family: "DancingScript-Variable", serif;
  font-style: italic;
  letter-spacing: 2px;
  font-size: clamp(26px, 3vw, 24px);
  color: #ddd;
}

/* RIGHT SIDE */

.obituary-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

/* IMAGE */

.obituary-right img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
}

/* GRADIENT */

.image-gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(11, 11, 11, 0.95) 0%,
    rgba(11, 11, 11, 0.8) 25%,
    rgba(11, 11, 11, 0.45) 55%,
    rgba(11, 11, 11, 0.15) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* LOGO */

.Log_Obituary {
  max-height: 48px;
  width: 100%;
  transition: transform 0.3s ease;
  margin-bottom: 3rem;
}

.Log_Obituary path {
  fill: #eaeaea;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .obituary-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .Log_Obituary {
    max-height: 50px;
    margin-bottom: 2rem;
  }

  .obituary-left {
    padding: 40px 15px;
  }

  .obituary-right {
    width: 100%;
  }

  .obituary-right img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .obituary {
    padding-top: 50px;
  }

  .nav-link {
    color: var(--color-neutral-1000) !important;
  }
  .Logo_BrandLabs path {
    fill: var(--color-neutral-100) !important;
  }
  #logoopenmenu svg path {
    fill: var(--color-neutral-1000) !important;
  }
}
