@font-face {
    font-family: 'Trench100';
    src: url('assets/fonts/trench100.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'TT-Firs-Neue-Bold';
    src: url('assets/fonts/TT-Firs-Neue-Bold.ttf') format('truetype');
  }

  html, body {
    margin: 0;
    padding: 0;
  }

  /* General header layout */
header.navbar {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px;
    background-color: #fff;
  }
  
  /* Navbar-left */
  .navbar-left {
    display: flex;
    gap: 20px;
    align-items: center;
    
  }
  
  .navbar-left .nav-item,
  .navbar-right-menu .nav-item {
    cursor: pointer;
    background: linear-gradient(180deg, rgba(92, 66, 32, 1) 6%, rgba(130, 97, 48, 1) 24%, rgba(191, 145, 77, 1) 33%, rgba(209, 178, 25, 1) 41%, rgba(193, 146, 7, 1) 49%, rgba(186, 137, 3, 1) 59%, rgba(161, 112, 0, 1) 69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  
  
  /* Navbar-centre */
  .navbar-centre {
    margin-top: -2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;

  }
  
  .navbar-centre-up .brand-title {
    font-family: 'Trench100', sans-serif;
    font-size: 48px;
    line-height: 1;
  }
  
  .navbar-centre-middle {
    position: relative;
    margin-top: 4.5rem;
    width: 0;
    height: 0;
    overflow: visible;
    z-index: -1;
  }

  .brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    user-select: none;
  }
  
  .navbar-centre-bottom .brand-tagline {
    font-size: 18px;
    margin-top: 2rem;
  }
  
  /* Navbar-right */
  .navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .navbar-right-menu {
    display: flex;
    gap: 20px;
  }
  
  .navbar-right-menu .nav-item {
    cursor: pointer;
  }
  





  

  .header-container {
    position: relative;
    width: 100%;
    height: auto; /* Adjust this if you want a specific height for the header */
    overflow: visible; /* Allow the image to overflow beyond its container */
    margin-bottom: 5rem;
  }
  
  .header-Up img {
    opacity: 0.5;
    filter: blur(0.5px);
  }

  .header-Shadow img {
    opacity: 0.7;
    filter: blur(0.5px);
  }

  .navbar-centre img {
    opacity: initial;
    filter: none;
  }
  
 .header-bg {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
    user-select: none;
  } 


  .navbar {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'TT-Firs-Neue-Bold', sans-serif;
  }

  header.navbar,
.navbar-left,
.navbar-centre,
.navbar-right,
.navbar-centre-up,
.navbar-centre-middle,
.navbar-centre-bottom,
.navbar-right-menu,
.navbar-right-purchase,
.nav-item,
.purchase-button {
  background: transparent;
}

main,
footer {
  background-color: transparent;
}

.main {
    position: relative;
    overflow: hidden;
    padding-bottom: 200px; /* adjust based on footer height */
  }

  .main-bg-video {
    position: fixed; /* Fix the video in place */
    top: 0;
    left: 0;
    width: 100%; /* Stretch the video across the full width of the viewport */
    height: 100%; /* Stretch the video across the full height of the viewport */
    object-fit: cover; /* Make sure the video covers the whole area without distortion */
    z-index: -5; /* Ensure the video stays behind other elements */
    pointer-events: none; /* Prevent the video from blocking interactions with other elements */
    object-position: center; /* Center the video content */
  }

  .main-bg-video-overlay {
    position: fixed; /* make it stick like the video */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.60); /* adjust opacity to taste */
    pointer-events: none;
    z-index: -4; /* just above the video, still behind everything else */
  }

main {
    background: transparent !important;
  }


  .footer {
    background: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
  }

  .footer-left,
.footer-right {
  flex: 1;
}

.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-center-up {
  font-family: 'trench100', sans-serif;
  font-size: 100px;
  font-weight: 1000;
  letter-spacing: 2px;
  margin-top: -6rem;
  background-image: linear-gradient(
    to right,
    #947624 0,
    #cb9b51 22%, 
    #f6e27a 45%,
    #f6f2c0 50%,
    #f6e27a 55%,
    #cb9b51 78%,
    #968e1c 100%
    );
     color:transparent;
     -webkit-background-clip:text;
  z-index: 2;
}

.footer-center-bottom {
  margin-top: -0.5rem;
  font-family: 'TT-Firs-Neue-Bold', sans-serif;
  font-size: 42px;
    background-image: linear-gradient(
        to right,
        #a58a35 0,
        #d4af5a 2%,
        #eccf72 22%,
        #f5df81 39%,
        #f8e88a 45%,
        #fcf8d0 50%,
        #f8e88a 55%,
        #f5df81 61%,
        #eccf72 78%,
        #d4af5a 98%,
        #a89e2a 100%
    );
     color:transparent;
     -webkit-background-clip:text;
}

  /* Main section */
  main {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the content horizontally */
    justify-content: center; /* Optional: Centers content vertically */
  }
  
  /* Main Framer Copy Section */
  .main-framer-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'TT-Firs-Neue-Bold', sans-serif;
    max-width: 800px; /* Optional: Set a max-width if desired */
    text-align: center; /* Optional: Center text */
  }
  
  .main-framer-copy div {
    font-size: 45px; /* Adjust this as needed */
    line-height: 1.5;
  }

  .main-framer-copy .main-framer-copy-line-intro,
  .main-framer-copy .main-framer-copy-line-outro {
    font-size: 14px;
  }

  /* New, more visible gradient for the intro/outro lines */
  .main-framer-copy-line-intro,
  .main-framer-copy-line-outro {
    background-image: linear-gradient(
        to right,
        #a58a35 0,
        #d4af5a 2%,
        #eccf72 22%,
        #f5df81 39%,
        #f8e88a 45%,
        #fcf8d0 50%,
        #f8e88a 55%,
        #f5df81 61%,
        #eccf72 78%,
        #d4af5a 98%,
        #a89e2a 100%
    );
    color: transparent;
    -webkit-background-clip: text;
  }

  /* STRONGER shadow for the intro/outro lines */
  .main-framer-copy-line-intro.shadow-copy,
  .main-framer-copy-line-outro.shadow-copy {
    text-shadow: 2px 2px 3px rgba(120, 73, 148, 0.5);
  }

  .main-framer-copy-line-1, .main-framer-copy-line-2, .main-framer-copy-line-3, .main-framer-copy-line-4, .main-framer-copy-line-5 {
    background-image: linear-gradient(
        to right,
        #a58a35 0,
        #d4af5a 2%,
        #eccf72 22%,
        #f5df81 39%,
        #f8e88a 45%,
        #fcf8d0 50%,
        #f8e88a 55%,
        #f5df81 61%,
        #eccf72 78%,
        #d4af5a 98%,
        #a89e2a 100%
    );
       color:transparent;
       -webkit-background-clip:text;
  }
  

  .main-framer-copy {
    position: relative; /* Needed for absolute children to anchor properly */
  }

  .main-framer-copy-line-1,
.main-framer-copy-line-2,
.main-framer-copy-line-3,
.main-framer-copy-line-4,
.main-framer-copy-line-5 {
  position: relative;
  z-index: 1; /* Above the shadow */
}

.text-line-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

/* STRONGER shadow for main text */
.shadow-copy {
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(168, 145, 40);
  text-shadow: 
    0px -1px 2px rgba(120, 73, 148, 0.4),  /* Top shadow - lighter */
    0px 3px 4px rgba(120, 73, 148, 0.9);   /* Bottom shadow - stronger */
  pointer-events: none;
  z-index: 0;
  width: 100%;
}

/* STRONGER shadow for intro text */
.intro-shadow-copy {
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(168, 145, 40);
  text-shadow: 
    0px -1px 2px rgba(85, 74, 238, 0.4),   /* Top shadow - lighter */
    0px 3px 4px rgba(85, 74, 238, 0.9);    /* Bottom shadow - stronger */
  pointer-events: none;
  z-index: -1;
  width: 100%;
}
  
/* STRONGER shadow for benefits */
.benefits-shadow-copy {
  position: absolute;
  top: 0;
  left: 0;
  text-shadow: 1.5px 1.5px 3px rgba(85, 74, 238, 0.9);
  pointer-events: none;
  z-index: -1;

}
  
  /* Main Lower Copy Section */
  .main-lower-copy {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px; /* Optional: Set a max-width if desired */
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Centers the content vertically */
    padding: 20px 15px !important;
  }
  
  /* Left side with image */
  .main-picture-copy {
    flex: 1;
    max-width: 400px; /* Optional: Limit image width */
  }
  
  .main-picture-img {
    border-radius: 10%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Right side layout */
  .main-rightside-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }

  
  
  /* Upper part of the right side (main-rightside-copy-up) */
  .main-rightside-copy-up {
    /* Add any additional styles for content here */
  }
  
  /* Lower part of the right side (main-rightside-copy-down) */
  .main-rightside-copy-down {
    display: flex;
    justify-content: center;
  }

  /* Styling for the new content */
.intro-text {
  font-family: 'TT-Firs-Neue-Bold', sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
    background-image: linear-gradient(
        to right,
        #c7ac5c 0,
        #e4bf68 2%,
        #eccf72 22%,
        #f5df81 39%,
        #f8e88a 45%,
        #fcf8d0 50%,
        #f8e88a 55%,
        #f5df81 61%,
        #eccf72 78%,
        #d4af5a 98%,
        #c7ac5c 100%
    );
     color:transparent;
     -webkit-background-clip:text;
}

.benefits-list {
  list-style-type: disc;
  margin: 0;
  font-size: 30px;
  padding-left: 20px; /* Indentation for list items */
  font-family: 'TT-Firs-Neue-Bold', sans-serif;
    background-image: linear-gradient(
        to right,
        #c7ac5c 0,
        #d4af5a 2%,
        #eccf72 22%,
        #f5df81 39%,
        #f8e88a 45%,
        #fcf8d0 50%,
        #f8e88a 55%,
        #f5df81 61%,
        #eccf72 78%,
        #d4af5a 98%,
        #c7ac5c 100%
    );
     color:transparent;
     -webkit-background-clip:text;
}

.benefits-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}
  
  /* Free Button */
  .free-button {
    width: 300px;
    height: 60px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 25px;
    color: rgb(121, 103, 3);
    font-weight: 300;
    position: relative;
    z-index: 2;
    transition: background-position 3.5s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
    background-size: 200% 200%;
    background-position: left center;
    cursor: pointer;
    font-family: 'TT-Firs-Neue-Bold', sans-serif;
  }

  .free-button:hover {
    transform: scale(1.05);
    background-position: right center;
    color: rgb(94, 80, 2);
  }
  
  .free-button:disabled {
    pointer-events: none;
    opacity: .65;
    color: #7e7e7e;
    background: #dcdcdc;
    box-shadow: none;
  }

  .ampersand {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: bold;
  }

  .shadow-box {
    position: relative;
    padding: 2px 3px; /* Increased padding to make the box larger */
    background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
    border-radius: 8px; /* Optional: Rounded corners for the box */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow around the box */
    z-index: 1; /* Make sure the box is on top */
    backdrop-filter: blur(0.1rem);
    transition: background-color 0.5s ease, box-shadow 0.7s ease;
  }
  
  /* Hover effect for the box itself */
  .shadow-box:hover {
    background-color: rgba(255, 255, 255, 0.6); /* Slightly darker background on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
    transition: background-color 0.5s ease, box-shadow 0.7s ease;
    backdrop-filter: blur(0.2rem);
  }
  
  /* Styling for the anchor tag */
  .shadow-box a.hover-underline {
    text-decoration: none; /* Remove underline */
    color: #d4af37; /* Text color */
    font-weight: bold; /* Optional: Makes the text bold */
  }

  .purchase-button {
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgb(121, 103, 3);
    font-weight: 300;
    position: relative;
    z-index: 2;
    transition-duration: 13s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
    background-size: 200% 200%;
    cursor: pointer;
    font-family: 'TT-Firs-Neue-Bold', sans-serif;
    /*** full width block ***/
    /* width: 100%; */
}

.purchase-button:hover {
  transform: scale(0.95);
  transition-duration: 13s;
  animation: gradient 10s ease infinite;
  background-position: right;
}

.purchase-button:disabled {
  pointer-events: none;
  opacity: .65;
  color: #7e7e7e;
  background: #dcdcdc;
  box-shadow: none;
}


.footer-container {
  margin-top: 15rem;
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
  z-index: 0;
}

.footer-bg {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.footer-Up img {
  position: absolute;
      opacity: 0.7;
    filter: blur(0.5px);
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the image covers the container without distortion */
  transform: translateY(20%);
}

.footer-Shadow img {
    position: relative;
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the image covers the container without distortion */
  transform: translateY(20%);
      opacity: 0.7;
}

.intro-text {
  font-size: 26px; /* Adjusting font size of intro text */
}

/* STRONGER shadow for footer */
.footer-shadow-copy {
  top: 0;
  left: 0;
  color: rgb(168, 145, 40);
  text-shadow: 2px 2px 4px rgba(120, 73, 148, 0.8);
  pointer-events: none;
  z-index: -1;
  width: 100%;
}

/* Ensure the footer-right is placed correctly on the bottom-right side */
.footer-right {
  margin-bottom: -6.5rem;
  position: absolute;
  bottom: 20px;  /* Adjust this for desired space from bottom */
  right: 20px;   /* Adjust this for desired space from right */
  display: flex;
  flex-direction: column;
  gap: 15px; /* Adjust spacing between links */
  align-items: flex-end;  /* Ensure the content is aligned to the right */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Adjust spacing between links */
  align-items: flex-end;  /* Ensure the links are aligned to the right */
}

.footer-link {
  font-family: 'TT-Firs-Neue-Bold';
  font-size: 14px; /* Adjust size as needed */
  color: #000; /* Set text color */
  text-decoration: none; /* Remove underlines */
  cursor: pointer;
    background-image: linear-gradient(
        to right,
        #a58a35 0,
        #d4af5a 2%,
        #eccf72 22%,
        #f5df81 39%,
        #f8e88a 45%,
        #fcf8d0 50%,
        #f8e88a 55%,
        #f5df81 61%,
        #eccf72 78%,
        #d4af5a 98%,
        #a89e2a 100%
    );  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-link:hover {
  color: #d85c23; /* Optional: hover color for links */
}

/* Styling for the non-clickable copyright text */
.footer-link.non-clickable {
  font-family: 'TT-Firs-Neue-Bold';
  font-size: 16px;
  color: #000;
  text-decoration: none;
}



/* Initially hide the dropdown */
.nav-item-programs {
  position: relative;
}

.nav-item-programs:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* This positions the dropdown below the Programs tab */
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* Slight shadow effect */
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(0.2rem);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-20px); /* Initially hidden by offset */
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
  background: linear-gradient(180deg, rgba(92, 66, 32, 1) 6%, rgba(130, 97, 48, 1) 24%, rgba(191, 145, 77, 1) 33%, rgba(209, 178, 25, 1) 41%, rgba(193, 146, 7, 1) 49%, rgba(186, 137, 3, 1) 59%, rgba(161, 112, 0, 1) 69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Style for the additional options */
.dropdown-item {
  font-size: 16px;
  padding: 5px 0;
  cursor: pointer;
  font-family: 'TT-Firs-Neue-Bold';
  text-align: left;
}

.dropdown-item:hover {
  text-decoration: underline;
}

.benefits-list {
  list-style-type: none;
  padding-left: 0;
}








/* COMPANY VALUES */

.pyramid-box {
  width: 60px;
  height: 60px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  backdrop-filter: blur(0.1rem); /* still applied if needed, optional now */
  background: none;
  border: none;
  box-shadow: none;
  z-index: 1;
}

.pyramid-row {
  display: flex;
  justify-content: center;
  gap: 10px; /* Adjusted for closer spacing between the items */
}

.pyramid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85px;  /* Smallest width that still allows for content */
  height: 85px; /* Same height to maintain square shape */
  background-color: rgba(255, 255, 255, 0.3); /* Slight background color */
  border-radius: 10px; /* Rounded corners */
  padding: 18px; /* Padding to keep space around content */
  text-align: center;
  backdrop-filter: blur(0.1rem); /* Blur effect applied */
  box-shadow: none; /* No border or shadow */
  position: relative; /* Allow text to overflow without affecting layout */
  z-index: 1; /* Keeps the div above others if overlapping occurs */
}

.value-icon {
  font-size: 24px; /* Icon size */
  margin-bottom: 5px; /* Space between icon and text */
  background: linear-gradient(180deg, rgba(92, 66, 32, 1) 6%, rgba(130, 97, 48, 1) 24%, rgba(191, 145, 77, 1) 33%, rgba(209, 178, 25, 1) 41%, rgba(193, 146, 7, 1) 49%, rgba(186, 137, 3, 1) 59%, rgba(161, 112, 0, 1) 69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.value-text {
  font-family: 'TT-Firs-Neue-Bold';
  font-size: 18px; /* Slightly smaller text size */
  white-space: nowrap; /* Prevent text from wrapping to a new line */
  text-align: center;

  bottom: 0; /* Align text to the bottom of the div */
  left: 0;
  right: 0;
  z-index: 2; /* Ensure text appears above other divs */

  color: transparent; /* Default color for transparency */
  
  /* Apply gradient text style */
  background: linear-gradient(180deg, rgba(92, 66, 32, 1) 6%, rgba(130, 97, 48, 1) 24%, rgba(191, 145, 77, 1) 33%, rgba(209, 178, 25, 1) 41%, rgba(193, 146, 7, 1) 49%, rgba(186, 137, 3, 1) 59%, rgba(161, 112, 0, 1) 69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}










/* Disclaimer Section beneath Main and above Footer */
.disclaimer-container {
    display: flex;
    justify-content: center; /* Center the text container horizontally */
    width: 100%;
    margin-top: 50px; /* Adjust spacing above the footer container */
    padding: 0 20px; /* Add some horizontal padding */
    box-sizing: border-box;
}

.disclaimer-text {
    font-family: Arial, Helvetica, sans-serif; /* Normal, visible font */
    font-size: 10px; /* Requested size: 10px */
    line-height: 1.5;
    text-align: center;
    max-width: 800px; /* Keeps the line length readable */
    margin: 0;
    
    /* Solid color matching a mid-tone gold from the main gradient */
    color: #cb9b51; 
    
    /* Ensure no residual text-fill-color/background-clip applies */
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}







/* --- NEW MODAL & POP-UP FORM STYLES --- */

/* 1. Modal Overlay (The dimmed background) */
.modal-overlay {
    /* *** CRITICAL FIX: Ensure this is the initial state *** */
    display: none; 
    
    /* Position and Size */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    
    /* Background Dimming Effect */
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
    
    /* Centering the Modal Content - Use visibility: hidden if display: none fails, 
       but display: none is standard and should work if not overridden elsewhere. */
    align-items: center; 
    justify-content: center;
}

/* 2. Modal Content Box */
.modal-content {
    background-color: #f7f7f7; /* Light background for the box */
    margin: auto;
    padding: 30px 40px;
    border: 1px solid #888;
    width: 90%; /* Smaller on mobile */
    max-width: 500px; /* Max width on desktop */
    text-align: center;
    position: relative;
    border-radius: 12px;
    
    /* Reusing shadow-box styling for visual consistency */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* 3. Close Button (X) */
.close-button {
    color: #4b380f; /* Gold tone */
    float: right;
    font-size: 38px;
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: 15px;
    cursor: pointer;
    line-height: 1;
}

.close-button:hover,
.close-button:focus {
    color: #b38728; /* Brighter gold on hover */
    text-decoration: none;
    cursor: pointer;
}

/* 4. Modal Headings */
.modal-headline {
    font-family: 'Trench100', sans-serif;
    font-size: 32px;
    margin-bottom: 5px;
    /* Reusing your gold gradient for the main headline */
    background-image: linear-gradient(to right, #947624, #f6f2c0, #968e1c);
    color: transparent;
    -webkit-background-clip: text;
}

.modal-subtext {
    font-family: 'TT-Firs-Neue-Bold', sans-serif;
    font-size: 16px;
    color: #4b380f;
    margin-bottom: 25px;
}

/* 5. Modal Form and Inputs */
.modal-optin-form {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    width: 100%;
}

.modal-optin-form .input-group {
    width: 100%;
}

.modal-optin-form input[type="text"],
.modal-optin-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 18px;
    font-family: 'TT-Firs-Neue-Bold', sans-serif;
    border: 2px solid #b38728;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    color: #4b380f;
}

/* Make the submit button larger/wider inside the modal */
.modal-submit-button {
    width: 100% !important; /* Override the default 300px for full width */
    height: 70px; /* Make it taller for high visibility */
    font-size: 26px;
}






/* --- MODAL HEADLINE SHADOW EFFECT --- */

.modal-headline-wrapper {
    position: relative;
    display: inline-block; /* Essential to wrap content and allow absolute positioning inside */
    margin-bottom: 5px; /* Adjust as needed */
    width: 100%; /* Take full width of parent to center children */
    text-align: center; /* Center the text inside the wrapper */
}

.modal-headline-main {
    position: relative;
    z-index: 1; /* Ensures the main text is on top */
    font-family: 'Trench100', sans-serif;
    font-size: 32px;
    /* Reusing your gold gradient for the main headline */
    background-image: linear-gradient(to right, #947624, #f6f2c0, #968e1c);
    color: transparent;
    -webkit-background-clip: text;
    display: block; /* Make it a block element to take full width and center text */
}

/* STRONGER shadow for modal headline */
.modal-headline-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Stretch shadow across full width */
    font-family: 'Trench100', sans-serif;
    font-size: 32px; /* Same size as main text */
    text-align: center; /* Center the shadow text */
    color: rgb(168, 145, 40); /* Base color for the shadow */
    text-shadow: 2px 2px 4px rgba(85, 74, 238, 0.9); /* STRONGER shadow effect */
    pointer-events: none; /* Prevent shadow from interfering with clicks */
    z-index: 0; /* Position behind the main text */
    display: block; /* Make it a block element to take full width and center text */
}

/* Remove the old .modal-headline style as it's replaced by the above */
/* DELETE THIS BLOCK (if it exists in your CSS):
.modal-headline {
    font-family: 'Trench100', sans-serif;
    font-size: 32px;
    margin-bottom: 5px;
    background-image: linear-gradient(to right, #947624, #f6f2c0, #968e1c);
    color: transparent;
    -webkit-background-clip: text;
}
*/


.main-picture-img {
    cursor: pointer;
}

.main-framer-copy-line-1 {
    font-size: 35px !important; /* Smaller than the other lines which are 45px */
}

.main-framer-copy-line-2 {
    font-size: 35px !important; /* Smaller than the other lines which are 45px */
}

.main-framer-copy-line-3 {
    font-size: 35px !important; /* Smaller than the other lines which are 45px */
}

.main-framer-copy-line-5 {
    font-size: 35px !important; /* Smaller than the other lines which are 45px */
}
