/* MAIN SECTION START */
body > * {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body.ready > * {
  opacity: 1;
}

body.ready {
  transition: transform 0.3s ease-in-out;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 3rem;
  box-sizing: border-box;
  min-height: 100vh;
  max-width: 100vw;
  font-family: "Lato", sans-serif;
  color: #d3d3d3;
  font-size: 16px;
}

html,
body {
  scroll-behavior: smooth;
}

body,
.video-wrapper,
.media-wrapper {
  background-color: #161616;
}
.purchase-details {
  background-color: rgba(22, 22, 22, 0.8);
}
.offer-section {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 60vw 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "header header"
    "video description"
    "testimonial .";
}
.samples-section {
  width: 100%;
}
/* MAIN SECTION END */

/* TEXT STYLES START */
p, li {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 300;
}

p span, h3 span {
  font-weight: 700;
}
li {
  margin-bottom: 0.5rem;
}
a {
  color: #d9ca7e;
  font-weight: 400;
  text-decoration: underline;
}

a:hover {
  color: #c0b27a;
  text-decoration: none;
}
.hero-description h3 {
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #d9ca7e;
}
/* .hero-description p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
} */
.section .description h3 {
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.01em;
  text-align: left;
}
h4 {
  font-size: 1.5rem;
  line-height: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
/* TEXT STYLES END */

/* SECTION STYLES START */
.section {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  min-height: 90vh;
}

.section.cols-2-60-40 {
  grid-template-columns: 3fr 2fr;
}

.section.cols-2-40-60 {
  grid-template-columns: 2fr 3fr;
}

.section.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.section.cols-3 .media-wrapper {
  width: 80%;
}
.section.cols-3 .media-section {
  justify-content: center;
}
.media-section {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  flex: 0 1 60%;
}

.text-section {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 40%;
}
/* SECTION STYLES END */

/* MEDIA EMBEDS START */
.media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid #d9ca7e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0d0c;
}

.media-wrapper.aspect-ratio-4-5 {
  aspect-ratio: 4 / 5;
}

.media-wrapper.aspect-ratio-1-1 {
  aspect-ratio: 1 / 1;
  width: 50%;
}

.media-wrapper img,
.media-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: 8px;
  object-fit: cover;
}

.linkedin-wrapper {
  width: 80%; /* Set to 80% width */
  max-width: 504px;
  margin: 0 auto;
  height: 600px; /* Fixed height */
  overflow-y: auto; /* Enable vertical scrolling */
  border: 1px solid #d9ca7e; /* Consistent yellow border */
  border-radius: 8px;
  display: flex; /* Added for better iframe centering */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
}
/* Fade-in animation for LinkedIn iframes only, not the wrapper */
.linkedin-wrapper iframe {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.linkedin-wrapper iframe.fade-visible {
  opacity: 1;
}

.linkedin-wrapper iframe,
.instagram-wrapper iframe,
.instagram-wrapper blockquote,
.facebook-wrapper iframe {
  width: 100%;
  height: 100%; /* Changed from auto to 100% */
  min-height: 600px;
  border: none;
  background: #fff;
  border-radius: 8px; /* Consistent border radius */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.instagram-wrapper::-webkit-scrollbar,
.linkedin-wrapper::-webkit-scrollbar,
.facebook-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.instagram-wrapper,
.linkedin-wrapper,
.facebook-wrapper {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.video-embed {
  opacity: 0;
  transition: opacity 0.6s;
}
.video-embed.in-view {
  opacity: 1;
}
/* MEDIA EMBEDS END */

.client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
}

.description {
  max-width: 400px;
}

.mute-button {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(217, 202, 126, 1);
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  font-size: 1.5rem;
  opacity: 1;
}

.mute-button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}
.client-lower-third {
  margin-top: 1rem;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
}
.client-lower-third span {
  display: block;
}
.hero-video {
  grid-area: video;
  width: 100%;
  height: auto;
  transform: scale(2);
  transform-origin: center;
}
.hero-text {
  grid-area: header;
  margin: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  color: #d3d3d3;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-align: left;
  text-align: center;
}
.hero-description {
  grid-area: description;
  align-self: start;
  justify-self: start;
  margin-right: 8rem;
}
.testimonial {
  grid-area: testimonial;
  align-self: end;
  display: flex;
  margin-left: 4rem;
}

/* CLIENT TESTIMONIAL START */
.client-intro {
  display: flex;
  flex-direction: column;
  width: auto;
}
.client-image {
  width: 12vw;
  height: auto;
}
.client-image img {
  width: 100%;
  height: auto;
  border: 1px solid #d9ca7e;
  border-radius: 8px;
  display: block;
  object-fit: contain;
}
.client-quote {
  font-weight: 300;
  margin-left: 2rem;
}
/* .client-quote p {
  font-style: italic;
} */
.client-lower-third {
  font-weight: 500;
}
.client-quote h4 {
  font-size: 1.5rem;
  line-height: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
/* CLIENT TESTIMONIAL END */

/* PURCHASE DETAILS START */
.purchase-details {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border-radius: 8px;
  z-index: 999;
}
.full-price {
  font-size: 3rem;
  color: #d9ca7e;
  font-weight: 700;
  line-height: 2rem;
}
.full-price.charity-footprints, .full-price.kate-reuther {
  text-decoration-line: line-through;
}
.discount-price {
  color: #d3d3d3;
  font-size: 2rem;
  line-height: 2rem;
  display: none;
}
.discount-price.charity-footprints, .discount-price.kate-reuther {
  display: inline-block;
}
.promo-text {
  text-align: center;
  margin-top: 0.25rem;
  display: none;
}

.promo-text.charity-footprints, .promo-text.kate-reuther {
  display: block;
}

.buy-btn {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  background-color: #d9ca7e;
  color: #000;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}
.buy-btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-btn-text img {
  width: 2rem;
}
.buy-btn .button-text {
  display: block;
  font-size: 2rem;
  margin-left: 0.5rem;
}
.buy-btn .button-subtext {
  display: block;
  font-size: 0.8rem;
  line-height: 0.8rem;
  font-weight: 400;
  margin-top: 0.25rem;
}
ul.checkmark-list {
  list-style: none;
  padding-left: 0;
}

ul.checkmark-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}

ul.checkmark-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d9ca7e; /* Your brand color */
  font-weight: bold;
  font-size: 1.2em;
}
.removable-line-item {
  display: none;
}
.removable-line-item.charity-footprints {
  display: list-item;
}
.section.cols-2-60-40.additional {
  grid-template-columns: 3fr 2fr;
}

.section.cols-2-40-60.additional {
  grid-template-columns: 2fr 3fr;
}

.section.cols-3-60-30-30.additional {
  grid-template-columns: 2fr 1.5fr 1.5fr;
}
.video-wrapper.additional {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid #d9ca7e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0d0c;
}

.video-wrapper.additional.aspect-ratio-4-5 {
  aspect-ratio: 4/5;
}

.video-embed.additional {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  opacity: 0;
  transition: opacity 0.6s;
  border-radius: 8px;
}

.video-embed.additional.in-view {
  opacity: 1;
}
.video-section,
.info-section {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section {
  flex: 0 1 60%;
}

.info-section {
  flex: 1 1 40%;
}

.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem;
}
h2, .special-h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d9ca7e;
    text-align: center;
}
.additional h2 {
  text-align: left;
}
/* PURCHASE DETAILS START */
/* ============= */
/* Media Queries */
/* ============= */

@media (max-width: 700px) {
  body {
    padding: 0 2rem;
  }
  .section {
      margin-bottom: 20vh;
  }
 .buy-btn .button-text {
    font-size: 1.5rem;
  }
  .offer-section {
    margin: 0;
    margin-bottom: 20vh;
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "header"
      "video"
      "description"
      "testimonial"
      "purchase-details";
  }
  .hero-description {
    margin: 0;
    padding: 0 1rem;
  }
  .hero-text {
    font-size: 3.5rem;
  }
  .hero-description h3 {
    vertical-align: top;
    margin-top: 0;
  }
  .purchase-details {
    grid-area: purchase-details;
    position: static;
    justify-self: center;
  }
  .testimonial {
    flex-direction: column;
    margin: 5vh 0 10vh 0;
  }
  .client-intro {
    align-items: center;
  }
  .client-image {
    width: 40vw;
    margin-bottom: 1rem;
  }
  .client-quote {
    margin-left: 0;
  }
.client-lower-third {
    margin-left: 0;
    text-align: center;
  }
  .media-wrapper.aspect-ratio-1-1 {
    width: 100%;
    align-items: center;
  }
  .section {
    grid-template-columns: 1fr !important;
    /* flex-direction: column;
    flex-wrap: wrap;
    display: flex !important; */
  }
  .main-content,
  .samples-section {
    max-width: 100vw;
    width: 100%;
  }
  .media-wrapper.client-img {
    width: 50%;
  }
  .client-lower-third {
    margin-left: 1rem;
  }
  .text-section {
    order: 1;
  }
  .media-section {
    order: 2;
  }
}

/* Grid layout for additional work samples */
.cols-3-60-30-30 {
  display: grid;
  grid-template-columns: 6fr 3fr 3fr;
  gap: 20px;
  align-items: start;
}

.aspect-ratio-4-5 {
  aspect-ratio: 4/5;
}
