@font-face {
  font-family: 'Ayuthaya';
  src: url('Ayuthaya.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Libre';
  src: url('Barlow-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.row {
  flex-wrap: nowrap;
}
body {
  background-color: #f3ece8;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.main-container {
  background: black;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  animation: wipeDown 1s cubic-bezier(0.42, 0, 1, 1) forwards;
  will-change: clip-path;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  height: auto;
}
.boxed-layout {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.main-section {
  padding: 50px 20px 0px 20px;
}
@media (min-width: 768px) {
  .main-section {
    padding: 50px 70px 0px 70px;
  }
}
@keyframes wipeDown {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

.logo {
  width: 40px;
}
@media (min-width: 768px) {
  .logo {
    width: 50px;
  }
}

.headline {
  font-family: 'Ayuthaya';
  font-weight: 600;
  font-size: 36px;
  color: white;
  letter-spacing: 2px;
  line-height: 90%;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  animation: revealText 1s linear forwards;
  will-change: opacity, transform, clip-path;
}
@media (min-width: 768px) {
  .headline {
    font-size: 50px;
  }
}
.headline-1 {
  animation-delay: 2s;
}
.headline-2 {
  animation-delay: 2.5s;
}
.headline-3 {
  animation-delay: 2.75s;
}
@keyframes revealText {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}
.cta {display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.paragraph {
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  color: white;
  opacity: 0;
  animation: fadeIn 1s ease-out 4.75s forwards;
  margin-top: 0px !important;
}
.paragraphblack {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: rgb(0, 0, 0);
  opacity: 0;
  animation: fadeIn 1s ease-out 4.75s forwards;
}
@media (min-width: 768px) {
  .paragraph {
    font-size: 20px;
  }
}

.second-paragraph {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: white;
  opacity: 0;
  animation: fadeIn 1s ease-out 5s forwards;
}

@media (min-width: 768px) {
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
        display: flex;
        height: 530px;
        flex-direction: column;
        justify-content: flex-end;
    }
}
@media (min-width: 768px) {
  .second-paragraph {
    font-size: 15px;
    line-height: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.right-content {
  padding-top: 0px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .right-content {
    margin-top: 0;
  }
}

.second-container {
  background-color: #c3b795;
}
.second-section {
  padding: 20px 20px 0px 20px;
}
@media (min-width: 768px) {
  .second-section {
    padding: 20px 70px 0px 70px;
  }
}

.pink-headline {
  font-weight: 600;
  font-size: 20px;
  color: #e7168b;
  opacity: 0;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  animation: revealFromBottom 1s ease-in forwards;
  animation-delay: 4.5s;
}
@media (min-width: 768px) {
  .pink-headline {
    font-size: 22px;
  }
}
@keyframes revealFromBottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

.black-copy {
  font-size: 14px;
  line-height: 18px;
  color: black;
  opacity: 0;
  animation: fadeIn 1s ease-out 4.5s forwards;
}
@media (min-width: 768px) {
  .black-copy {
    font-size: 16px;
    line-height: 20px;
  }
}
.grey-text {
  font-size: 14px;
  color: lightgrey;
  opacity: 0;
  animation: fadeIn 2s ease-out 4.5s forwards;
}
@media (min-width: 768px) {
  .grey-text {
    font-size: 15px;
  }
}

.company-description {
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  opacity: 0;
  animation: fadeIn 0.5s ease-in 10s forwards;
}
@media (min-width: 768px) {
  .company-description {
    font-size: 16px;
    line-height: 24px;
  }
}

.copyright {
  opacity: 0;
  font-size: 11px;
  color: #f2ecdc;
  animation: fadeIn 1s ease-out 5.25s forwards;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .copyright {
    font-size: 12px;
    text-align: left;
  }
}

/* Modal styles */
.modal-content {
  background-color: #222;
  border-radius: 10px;
  border: 1px solid #444;
}
.modal-header {
  border-bottom: 1px solid #444;
}
.modal-footer {
  border-top: 1px solid #444;
}
.modal-title {
  color: #e7168b;
}
.form-control {
  background-color: #333;
  border: 1px solid #555;
  color: #fff;
}
.form-control:focus {
  background-color: #444;
  border-color: #e7168b;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(231, 22, 139, 0.25);
}
.form-control::placeholder {
  color: #aaa;
}
.modal-submit-btn {
  background-color: #e7168b;
  border: none;
  color: white;
  border-radius: 20px;
  transition: background-color 0.3s;
  margin-bottom: 10px;
}
.modal-submit-btn:hover {
  background-color: #c41476;
}
.modal-close-btn {
  color: #aaa;
  border: 1px solid #444;
  border-radius: 20px;
  transition: all 0.3s;
}
.modal-close-btn:hover {
  color: #fff;
  border-color: #666;
}
.success-message {
  display: none;
  color: #4bb543;
  text-align: center;
  margin-top: 10px;
}

/* Mobile specific styles */
@media (max-width: 767.98px) {
  .btn-group-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .btn-group-mobile .btn {
    margin-bottom: 10px;
    width: 100%;
  }
  .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
}

/* Safari-specific fixes */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .main-container,
    .headline,
    .paragraph,
    .second-paragraph,
    .pink-headline,
    .black-copy,
    .grey-text,
    .contact-button,
    .circular-image,
    .contact-link,
    .company-description,
    .copyright {
      -webkit-transform-style: preserve-3d;
      transform-style: preserve-3d;
    }
  }
}

#lottieInline {
  max-width: 600px;
  width: 100%;
  display: block;
  height: 650px !important;
  overflow: hidden;
}
@media (min-width: 768px) {
  #lottieInline {
    margin-bottom: -120px;
        margin-top: -120px;
        overflow: auto;
  }
  
}

.contact-link {
  opacity: 0;
  animation: fadeIn 1s ease-out 5.25s forwards;
}
.contact-link a {
  color: #ded3b4;
  text-decoration: none;
}
.contact-link a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Base palette (tuned to screenshot) */
.olo-hero{
  background: #f3ece8 !important;
  margin-bottom: -53px;
  min-width: auto;
  opacity: 0;
  --bg: #f3ece800;
  --ink: #232323;
  --muted: #a7a1a1;
  --accent: #c41476;
  --accent-press:#c41476;
  background: var(--bg);
  color: var(--ink);
  animation: fadeIn 1s ease-out 5s forwards;
}

/* Layout */
.olo-hero__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 0px 20px;
  animation: fadeIn 1s ease-out 5s forwards;
  display: flex;
  flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .olo-hero__wrap {
    padding: 20px 70px 0px 70px;
  }
}

/* "Normal" headline & paragraphs (no fancy tracking) */
.olo-hero__title{
  font-family: 'Libre';
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
  line-height: 1.15;
  color: var(--accent)
}
.olo-hero__brand{ color: var(--accent); font-weight: 800; }

.olo-hero__lede{
  margin: 0 0 14px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
}

.olo-hero__note{
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--muted);
}

/* CTA button */
.olo-hero__cta{
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px #e0129325;
  transition: transform .06s ease, background .12s ease;
}
.olo-hero__cta:active{ transform: translateY(1px); background: var(--accent-press); }

.olo-hero__logo {
  height: 130px;
}

/* Stack on small screens */
@media (max-width: 860px){
  .olo-hero__wrap{ flex-direction: column-reverse; gap: 5px;}
  .row {flex-direction: column;    max-width: 111% !important; }
  .olo-hero__art{ order: -1; }
  #lottieInline {height: 425px !important;}
  .olo-hero__logo{ width: 46vw; max-width: 320px; }
  dotlottie-wc {    padding-left: 183px !important;}
}
