/* TM CMS Page */
.sub_h1 {
    font-size: 2vw;
    text-transform: uppercase;
    padding: 0px 0px 10px 0px;
}

@media (max-width: 768px) {
    
}

.about {
    border-top: var(--border-accent);
    border-bottom: var(--border-accent);
    padding: 10vw 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  
  .about__title {
    text-align: center;
    margin-bottom: 90px;
    color: var(--dark-txt-color);
  }
  
  .about__team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
  
  .about__team__member__img {
    border-bottom: var(--border-accent);
    margin-bottom: 30px;
  }
  
  .about__team__member__name {
    text-align: center;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
  }
  
  .about__bio { margin-top: 20px; text-align: center; }
  
  .about__bio > p { color: var(--dark-txt-color); }
  
  .about__bio > p:nth-child(2) {
    
  }
  
  .projects {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10vw 0px;
  }
  
  .projects__img {
    position: absolute;
    filter: brightness(66%);
    width:100%;
    height:100%;
    object-fit: cover;
    overflow: hidden;
  }
  
  .projects__title {
    z-index: 1;
    /* position: absolute; */
    /* top: 4.556vw; */
    color: white;
    text-align: center;
    margin-bottom: 90px;
  }
  
  .projects__examples {
    z-index: 1;
    /* position: absolute; */
    display: grid;
    gap: 100px;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    /* top: 12.028vw; */
  }
  
  /* @media screen and (max-width: 1440px) {
    .projects__img {
      height: 100vh;
    }
  } */
  
  .projects__examples__example button {
    margin-top: 2.472vw;
  }
  
  .projects__examples__example__name {
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  .projects__examples__example__name,
  .projects__examples__examples__bio {
    color: white;
  }
  
  @media screen and (max-width: 840px) {
    
    .banner {
      height: calc(65vh - 0px);
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
  
    h1 {
      font-size: 45px;
      line-height: 54px;
      text-align: center;
  }
  
    .about,
    .projects {
      padding: 6vh 0px;
    }
  
    .projects__title,
    .about__title {
      padding: 0px 0px 6vh 0px;
      margin: 0px;
    }
  
    .about__team,
    .projects__examples {
      grid-template-columns: 1fr;
    }
  
    .about__team {
      gap: 25px;
    }
  
    .about__team__member__img {
      margin-bottom: 10px;
    }
  
    .projects__examples__example__name, 
    .projects__examples__examples__bio {
      margin-bottom: 20px;
    }
  
    .projects__examples {
      gap: 12vh;
    }
    section.banner div.overlay div.tag-line .container h1 {
      padding: 0px;
      margin: 0px;
      font-size: 40px;
      line-height: 50px;
    }
    
  }





  body #bottom-notification {
      position: fixed; 
      bottom: 10px; 
      right: 10px; 
      /* transform: translateX(-50%); */
      z-index: 9999;
      animation: slideUp 0.5s ease-out;
  }
  b { font-weight: bolder; }
.belvedere {
    border-top: var(--border-accent);
    border-bottom: var(--border-accent);
    padding: 10vw 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
video.cover-area {
    width: 100%;
    height: auto;
}

/* Scrolling Ribbon Styles */
.scrolling-ribbon-container {
    width: 100%;
    margin: 40px 0 60px 0;
    position: relative;
}

/* Desktop: Use animation */
@media (hover: hover) and (pointer: fine) {
    .scrolling-ribbon-container {
        overflow: hidden;
    }
    
    .scrolling-ribbon {
        display: flex;
        width: fit-content;
        animation: scroll-left 40s linear infinite;
        transition: transform 0.1s ease-out;
        touch-action: pan-x;
        user-select: none;
    }
}

/* Mobile: Use native scroll */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
    .scrolling-ribbon-container {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .scrolling-ribbon-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .scrolling-ribbon {
        display: flex;
        width: max-content;
        touch-action: pan-x;
        user-select: none;
        animation: none !important;
        transition: none !important;
    }
}

.scrolling-ribbon.paused {
    animation-play-state: paused;
}

.ribbon-image {
    height: 400px;
    width: auto;
    margin-right: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ribbon-image:hover {
    transform: scale(1.05);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    opacity: 0.7;
}

  @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
  }
  
  @keyframes slideUp {
      from { 
          opacity: 0;
          transform: translateY(100px);
      }
      to { 
          opacity: 1;
          transform: translateY(0);
      }
  }

  div#shadowbox {
    height: 90vh;
  }

div.shadowbox-padding {
  height: calc(100% - 80px);
}

div#special-offer {
    padding: 0px;
    text-align: center;
    height: 100%;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
}
div.offer-content-container {
    height: calc(100% - 40px);
    overflow-y: auto;
}
div#special-offer p {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 0px;
    line-height: 1.5;
}
div#special-offer h2 {
    color: var(--accent-color);
    margin-bottom: 0px;
    padding-bottom: 20px;
}
div#special-offer-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 0px;
    font-weight: bold;
}
div#special-offer-content {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}
div#special-offer-list {
    list-style: none;
    padding: 0;
}
ol#special-offer-list li {
    padding: 0px 0px 10px 0px;
    font-size: 18px;
    /* background: #f8f9fa;
    border-left: 4px solid #d4af37; -->
}
ol#special-offer-list li:before {
    /* content: "✓"; */
    margin-right: 10px;
}
div#special-offer-footer {
    margin-top: 20px;
    padding: 15px;
    background: #e8f4f8;
    border-radius: 8px;
    text-align: center;
}
div.offer-option {
    position: relative;
    margin-top: 40px;
    border: 1px solid #535353;
    padding: 40px 0px 20px 0px;
    border-radius: 8px;
}

div.offer-offer-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    border-radius: 9999px;
    font-size: 16px;
    margin: 0px auto;
}
div.offer-option-title {
    font-size: 24px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 0px;
    font-weight: bold;
}
div.offer-option-description-title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 0px;
    font-weight: bold;
}
div.offer-option-description {
    margin-top: 10px;
    text-align: center;
}
div.offer-option-description ol {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 0px;
    font-weight: bold;
    text-align: left;
    width: 60%;
    margin: 0 auto;
}
div.offer-option-description ol li {
    padding: 0px 0px 10px 0px;
    font-size: 16px;
    /* background: #f8f9fa;
    border-left: 4px solid #d4af37; -->
}
div.offer-option-description ol li:before {
    /* content: "✓"; */
    margin-right: 10px;
}
div.offer-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}
div.offer-cta a {
    text-decoration: none;
}
div.offer-cta a.cta.solid {
    margin-right: 10px;
}

div.form .input-area .input input[type="text"],
div.form .input-area .input textarea {
    font-size: 16px;
    border: 1px solid #535353;
    padding: 10px;
}

@media (max-width: 768px) {
    h1 {
      font-size: 30px;
      line-height: 36px;
      text-align: center;
    }

    .sub_h1 {
      font-size: 18px;
    }

    div#shadowbox-bg div#shadowbox div.shadowbox-inner div.shadowbox-padding {
            padding: 40px 20px 10px 20px;
            width: calc(100% - 40px);
        }
    div.shadowbox-padding {
      height: calc(100% - 127px);
    }

    div.offer-cta a.cta {
      width: 100%;
      padding: 10px 0px;
      display: block;
      margin-bottom: 10px;
    }
    div#shadowbox-bg div#shadowbox {
        background-color: #ffffff;
        position: relative;
        height: 100vh !important;
        max-height: 100vh !important;
    }

    div.form Form div.button button {
      width: 100%;
        padding: 10px 0px;
        display: block;
        margin-bottom: 10px;
        font-size: 16px !important;
        text-transform: uppercase;
    }
    div.form Form div.button a.cta {
      width: 100%;
      text-align: center;
      padding: 10px 0px;
      display: block;
      margin-bottom: 20px;
    }

    .ribbon-image {
      height: 100px;
      width: auto;
      margin-right: 10px;
      cursor: pointer;
      transition: transform 0.1s ease-out;
      flex-shrink: 0;
  }

}