
/* Targeting the accordion buttons */
.accordion-button {
    -webkit-tap-highlight-color: transparent !important; /* Remove tap highlight on iOS/WebKit browsers */
    -ms-tap-highlight-color: transparent !important; /* Remove tap highlight on IE 10/11 */
    outline: none !important; /* Remove outline on focus for clicked or tabbed navigation */
  }
  
  
  
  .services-header {
    position: relative;
  }
  
  .services-header span {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #333;
  }
  
  #leftArrow {
    left: 10px;
    cursor:pointer;
    opacity:.25;
  
    font-family: var(--header-font);
    font-weight: 100;
  }
  
  
    
    #rightArrow {
    right: 10px;
    cursor:pointer;
    opacity:.25;
    font-family: var(--header-font);
    font-weight: 100;
  }
  
  
  
  /* -- info accordian-- */
  .accordian-header {
    padding-left: 10px;
    font-family: var(--text-font);
    font-size:12px;
  }
  
  
  .accordion-content {
    display: none; /* Hide content sections by default */
  }
  
  @media only screen and (max-width: 600px) {
    .accordion-content.show {
  
      max-width: 300px;
    }
  }
  
  
  @media only screen and (min-width: 600px) {
    .accordion-content.show {
  
      max-width: 435px;
    }
  }
  
  .accordion-content.show {
    display: block; /* Display content when its corresponding button is clicked */
    padding-left:23px;
    /*margin-bottom:20px;*/
    margin-bottom:15px;
    margin-top:7.5px;
    font-family: var(--text-font);
    font-size:12px;
  }
  
  .accordion-button {
    margin: 5px 0; /* Space between buttons */
    padding-left: 10px;
    background: #f4f0ec;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    line-height: 0px;
    font-family: var(--text-font);
    font-size:12px;
    color:#565656;
  }
  
  
  /* .accordion-button.active {
    margin-top:20px;
  }
  */
  
  
  .accordion-button.active .button-text {
    font-weight: 700; /* Optionally highlight the text of the active button */
    color:#565656;
  }
  
  
  .dot {
    margin-right: 5px; /* Space before the button text */
    font-weight: normal; /* Ensure dot does not become bold */
    visibility: visible; /* Ensure the dot is visible by default */
    color:#565656;
  
  
  }
  
  .accordion-button .dot {
    display: inline; /* Ensure the dot is visible by default */
  }
  
  .accordion-button.active .dot {
    /*display: none; */
    visibility: hidden;
  }
  
  
  
  
  
  
  
  /* -- align recaptcha with form -- */
  .g-recaptcha {
    /*display: ;
    justify-content: ;*/ /* Center horizontally in the container */
    margin: 5px; /*0 auto;*/ /* Another method to center if flex doesn't apply */
  }
       
  
  
  
  
  
  
html {
  -webkit-text-size-adjust: 100%; /* Prevent text scaling */
}
  
  
  
  /* -- email form - mobile -- */
  @media only screen and (max-width: 768px) {
  
    .contact-form {
   
      /*padding: 20px; */
      width: 90% !important; /* Adjust the width as needed */
      max-width: 600px; /* Optional: to ensure it doesn't get too wide on larger screens */
        font-style: normal !important;
        padding-top: 5px !important;
        font-family: var(--ibm-font);
  
    }
  
    .field-title{
      font-size:12px;
      font-family: var(--ibm-font);
      color: #565656;
  
    }
    
    .field-message{
      font-size:12px;
      font-family: var(--ibm-font);
      color: #565656;
  
    }
  
    form {
      display: flex;
      flex-direction: column;
      font-family: var(--ibm-font);
  
    }
    
    .row {
      display: flex;
      justify-content: space-between;
      width: 100%;
    }
    
    .field-container {
      display: flex;
      flex-direction: column;
      margin: 5px;
      font-family: var(--ibm-font);
      font-size: 12px;
      color: #565656;
  
    }
  
     .field-message {
      display: flex;
      flex-direction: column;
      margin: 5px;
      font-family: var(--ibm-font);
      font-size: 12px;
      color: #565656;
  
    }
    
    .field-container:first-child {
      flex: 30%; /* First Name field takes 20% */
      font-size: 12px;
      font-family: var(--ibm-font);
  
    }
    
    .field-container:last-child {
      flex: 70%;  /* Email field takes 80% */
      font-size: 12px;
      font-family: var(--ibm-font);
  
    }
    
    
    
    input, textarea {
      margin-bottom: 10px;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
    font-size: 11pt !important;
    transform: scale(1) !important; /* Prevent auto zoom */

    width: calc(100% - 16px); /* Adjust the width to account for padding */
    font-family: var(--text-font);
  
    /*font-size-adjust: none !important;*/
     /* -webkit-text-size-adjust: 100% !important;*/ /* Prevent zoom on iOS */
  
  
      /* width: 100%; */ /* Ensure inputs and textarea take full width */
        /*font-size: 16pt !important; */ /* Set the font size to 16pt */
    }
    
    textarea {
      min-height: 150px; /* Increase the height of the message box */
      height: 150px; /* Increase the height of the message box */
      resize: vertical; 
      overflow: auto; /* Ensures scrolling is still possible for overflow text */
    }
    
    button {
      cursor: pointer;
      margin-top: 10px; /* Add some space above the button */
      margin: 5px; /* Add space around buttons */
      width: max-content; /* Width according to the content */
      font-family: var(--text-font);
  
  
     /* padding: 10px;
      border: none;
      border-radius: 4px;
      background-color: #007bff;
      color: white;
      */
    }
    
    .button-container {
      display: flex;
      justify-content: center; /* Center the buttons */
      width: 100%; /* Ensure the container takes the full width of the form */
      margin-top: 10px;
    
    }
    
    /*
    button[type="button"] {
     background-color: none;

    }
     */
    
    /* Ensure both buttons have the same width */
    button[type="submit"], button[type="button"] {
  /*width: max-content;*/ /* Width according to the content */
  width: 21%; /* Width according to the content */
    }
  
    
  
  }
  
  .send-button,     button[type="button"]     {
    all: unset; /* Resets all styles */
    appearance: button; /* Applies native button styles */
    font-family: var(--text-font);
    font-size: 14px; /* Adjust for a similar Safari look */
    padding: 5px 12px; /* Adjust as needed */
    border: 1px solid #d1d1d1; /* Matches default button border */
    border-radius: 4px; /* Rounded corners */
    background-color: #f4f4f4; /* Light gray background */
    color: #565656; /* Black text */
    text-align: center;
    cursor: pointer;
    user-select: none; /* Prevents text selection */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5)/*, 0 1px 3px rgba(0, 0, 0, 0.1)*/; /* Subtle shadow */
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .send-button:hover,     button[type="button"]:hover {
    background-color: #e4e4e4; /* Slightly darker gray */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5)/*, 0 1px 4px rgba(0, 0, 0, 0.15)*/; /* Slightly more shadow */
  }
  
  .send-button:active,     button[type="button"]:active  {
    background-color: #dcdcdc; /* Darker gray for active state */
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1); /* Inner shadow */
  }
  
  .send-button:disabled,     button[type="button"]:disabled  {
    background-color: #f9f9f9; /* Very light gray */
    color: #a1a1a1; /* Disabled text color */
    border-color: #e1e1e1;
    cursor: not-allowed;
    box-shadow: none;
  }
  
  
  /* -- email form - desktop -- */
  @media only screen and (min-width: 769px) {
    .contact-form {
    padding: 20px;
  
    width: 50%; /* Adjust the width as needed */
    max-width: 600px; /* Optional: to ensure it doesn't get too wide on larger screens */
      font-style: normal !important;
      padding-top: 15px !important;
      font-family: var(--ibm-font);
  
    }
  
  
    .field-title{
      font-size:12px;
      font-family: var(--ibm-font);
      color: #565656;
  
    }
  
  
  
    form {
    display: flex;
    flex-direction: column;
    }
  
    .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    }
  
    .field-container {
    display: flex;
    flex-direction: column;
    margin: 5px;
    font-family: var(--ibm-font);
    font-size:12px;
    color: #565656;
    }
  
  
    .field-message {
      display: flex;
      flex-direction: column;
      margin: 5px;
      font-family: var(--ibm-font);
      font-size:12px;
      color: #565656;
      }
  
    .field-container:first-child {
    flex: 30%; /* First Name field takes 20% */
    }
  
    .field-container:last-child {
    flex: 70%;  /* Email field takes 80% */
    }
  
  
  
    input, textarea {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11pt !important;
    transform: scale(1) !important; /* Prevent auto zoom */
    -webkit-text-size-adjust: 100% !important; /* Prevent zoom on iOS */
    width: calc(100% - 16px); /* Adjust the width to account for padding */
    /* width: 100%; */ /* Ensure inputs and textarea take full width */
      /*font-size: 16pt !important; */ /* Set the font size to 16pt */
      font-family: var(--text-font);
      
  
    }
  
    textarea {
    min-height: 150px; /* Increase the height of the message box */
    height: 150px; /* Increase the height of the message box */
  
    resize: vertical; /* Disables the resize handle */
    overflow: auto; /* Ensures scrolling is still possible for overflow text */
    }
  
    photo{z-index:1;}
  
    button {
    cursor: pointer;
    margin-top: 10px; /* Add some space above the button */
    margin: 5px; /* Add space around buttons */
    width: max-content; /* Width according to the content */
    z-index:99999;
    font-family: var(--text-font);
  
  
    /* padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    */
    }
  
    .button-container {
    display: flex;
    justify-content: center; /* Center the buttons */
    width: 100%; /* Ensure the container takes the full width of the form */
    margin-top: 10px;
  
    }
  
    /*
    button[type="button"] {
    background-color: none;
    }*/
  
    /* Ensure both buttons have the same width */
    button[type="submit"], button[type="button"] {
    /*width: max-content;*/ /* Width according to the content */
    width: 21%; /* Width according to the content */
  
    }
    }
  
  .button-container {
    display: flex; /* Enables flexbox layout */
    justify-content: space-between; /* Places one item at the start and one at the end */
    width: 100%; /* Ensures the container fills its parent's width */
  }
  
  .spacer {
    flex-grow: 1; /* Makes the spacer grow to fill available space */
  }
  
  
  /*.send-button {
    display: flex; 
    justify-content: center; 
    width: 100px; 
    position: relative; 
  }
  
  .button-text {
    flex-grow: 1;
    text-align: center; 
  }
  
  .button-arrow {
    position: absolute; 
    right: 10px; 
    
  }
  */
  
  
  /*copy button function*/
  /* #message {
    border: 2px solid #ccc; 
    padding: 10px;
    margin: 10px 0;
    width: 300px;
    height: 100px;
  }*/
  
  /* Additional styles for success and error states */
  .success {
    border-color: #007d00;
  }
  
  .error {
    border-color: #8c0000;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  html, body {
    height: 100%; /* Ensure the body takes full height of the viewport */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .header {
    display:flex;
    justify-content: space-between;
    padding: 0px 20px 0px 20px;
    align-items: center;
    
  }
  
  
  .header .leftMenu, .header .logo, .header .rightMenu {
    flex: 1;
    display: flex;
    justify-content: center; /* Center by default */
  }
  
  .header .leftMenu {
    justify-content: flex-start; /* Aligns content to the left */
  }
  
  .header .rightMenu {
    justify-content: flex-end; /* Aligns content to the right */
  }
  
  .header .logo {
    justify-content: center; /* Keeps the logo centered */
    flex: 2; /* Gives the logo more space to ensure it stays centered, adjust as needed */
  }
  
  
  
  #learnLink, #studioLink, #talkLink, #workLink {
    cursor: pointer;
    
  }
  
  
  
  .header p {
    flex: 1;
    text-align: center;
  }
  
  .header p.logo {
    flex: 2; /* Gives the logo more space and ensures it stays centered */
    text-align: center;
  }
  
  
  
  
  .contact-form {
    margin: 0 auto;
    text-align: left;
    /*max-width: 480px;*/
  }
  
  
  
  
  
  
  
  
  
  .spinning {
    /*display:flex;*/
    max-height:50px;
    margin: 0 auto /*50%*/;
    
  }
  
  
  .footer p {
  
    font-size: 11px;
    /*font-weight: 100 !important;*/
    font-family: var(--text-font);
    font-weight: 400;
    font-style: normal;
    text-align: center;
  }
  
  
  
  
  
  @keyframes spin {
      from {
        transform: /*translate(-50%, -50%)*/ rotate(0deg);
      }
      to {
        transform: /*translate(-50%, -50%)*/ rotate(360deg);
      }
    }
    
    .spinning {
      animation: spin 30s linear infinite;
    }
  
    .spinning:hover {
      animation-play-state: paused;
    }
  
  
  
  
  
    
  
  
    /*-- header fonts --*/
  .header .leftMenu {  
    font-family: var(--text-font);
    font-weight: 400;
  font-style: normal;
  font-size:16px;

  
  }


  
  .header .rightMenu {  
    font-family: var(--text-font);
    font-weight: 400;
  font-style: normal;
  font-size:16px;
  
  }
  
  .header .logo  {
    font-family: var(--text-font);
    font-weight: 400 !important;
    font-style: normal;
    font-size:16px;
  
  
  }
  
  
  
  
  
  
  p {
    font-family: var(--text-font);
  font-weight: 400;
  font-style: normal;
  font-size:13px;
  
  /*font-size:16px;*/
  
  }
  
  h6 {
  
    font-family: var(--header-font);
    font-weight: 100;
    font-style: normal;
    /*opacity:%;*/
    font-size: 56px ;
    text-align: center;
  
  }
  
  
  h5 {
    font-family: var(--text-font);
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  font-size:12px;
  padding-top: 15px;
  letter-spacing: px;
  }
  
  h4 {
    font-family: var(--text-font);
  font-weight: 700;
  font-style: normal;
  font-size:12px;
  padding-top: 20px;
  letter-spacing: px;
  }
  
  h3 {
    font-family: var(--header-font);
  font-weight: 700;
  font-style: normal;
  font-size:20px;
  padding-top: 15px;
  letter-spacing: px;
  }
  
  
  h2 {
    font-family: var(--header-font);
  font-weight: 400;
  font-style: normal;
  font-size:20px;
  margin-top: 55px;
  border-bottom: .5px solid #565656; 
  padding-bottom:10px;
  letter-spacing: px;
  text-align: center;
  
  }
  
  /* h2 old {
    font-family: var(--header-font);
  font-weight: 400;
  font-style: normal;
  font-size:38px;
  }
  */
  
  h1 {
    font-family: var(--header-font);
    font-weight: 700;
    font-style: normal;
    font-size: 56px ;
    text-align: center;
  
    }
    
  
  
      
      
    
    
    
  
  
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    h1 {
      font-size: 32px; /* Adjusted for small screens */
    }
    h2 {
      font-size: 24px; /* Adjusted for small screens */
    }
    h3 {
      font-size: 20px; /* Adjusted for small screens */
    }
    h4 {
      font-size: 14px; /* Kept at 16px or slightly adjust if needed */
    }
    p {
      font-size: 14px; /* Optionally adjust for small screens */
    }
  }
  
        
      
    
  p, h1, h2, h3, a {
            color: #565656; 
            text-decoration:none;
  }
    
      
        
      
  body {
            background-color:#f4f0ec;
            margin:0;
            padding:0;
            box-sizing: border-box;
  }
  
  
  
  
        
    
  :root {
          
          --system-ui:  system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  
  
  :root {
          --header-font: "ibm-plex-mono","neue-haas-grotesk-display", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  



  
  :root {
    --ibm-font: "ibm-plex-mono","neue-haas-grotesk-display", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

  
  :root {
          --text-font: "neue-haas-grotesk-text", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  
  
  
  
  
  
  
  
  
  #studioLink {
          background-color: transparent; /* Prevents default highlight on mobile */
          -webkit-tap-highlight-color: transparent; /* Removes the tap highlight on iOS */
          user-select: none; /* Prevents text selection */
          cursor: default; /* Reset cursor */
  
  }
  
  #studioLink span {
    cursor: pointer; /* Apply pointer cursor to the text */
  }
  
  
  
  
  
  
  
  
  /* ---- new learn/info below ---- */
  
  
  
  
  
  
  
  
  
  
  .status-text-available {
    margin: 0; 
  }
  
  
  .status-text-not-available {
    margin: 0; 
    opacity:.75;
  }
   
  
   .available {
    background-color: #007d00;
    /*animation: greenAnimation 1s infinite alternate linear ;*/
    animation: light 1.5s infinite alternate linear !important;
    animation-delay: 1.5s;
  }
   
  .not-available {
   /* background-color: #8c0000; */
     /*box-shadow: 0 0 10px rgba(140, 0, 0, 0.7);*/
    animation: none; 
    animation-delay: 1s;
    background-color: hsla(0, 100%, 27%, .4);
  
  }
  
  .not-available p{
    opacity:.5;
  }
  
  @keyframes light {
   0% { opacity: 1.0;  box-shadow: 0 0 10px rgba(0, 125, 0, 0.7);}
    100% { opacity: .25; }
  }
  
  /*
  .news-text{
    color:green;
  }
  */
  
  /*
  @keyframes greenAnimation  {
  from { background-color: #007d00; }
  
  to {
   background-color: #73d7af ; }
  }
  */
  
  
  
  
  
  /*
  @keyframes flashing {
    from { opacity: 1.0; }
    to { opacity: 0.5; }
  }
    background-color: #6dffc5;
   background-color: #73d7af;
  */
  
  
  
  
  
  
  .about {
    position: absolute;
    /*top: 0px;*/
    top:10px !important;
    left: 0;
    right: 0;
    text-align: center;
    margin-top:0px;
  }
  
  .news-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 480px;
    text-align: center; 
  }
  
  .news-header {
    text-align: center;
    margin-bottom: 0;
  }
  
  .news-text {
   /* text-align: left; */
    margin-top: 0;
    padding-top: 0;
    position: static; 
    flex: 1; /* Allows the section to expand within the available space */
    overflow-y: auto; /* Makes only the vertical overflow scrollable */
    margin: 0px 0; 
    padding: 0 20px; 
    max-height: calc(50vh - 40px); 
  
  }
  
  
  /*
  .learnContainer {
    margin: 0 auto;
    max-width: 480px;
  */
  
  
  
    /*padding: 50px;*/
  /* 
  }
  */
  
  
  
  
  
  .footer {
    /* Ensures the footer stays at the bottom and is not obscured by iOS UI elements */
    padding: 0rem 0;
      padding-bottom: env(safe-area-inset-bottom); /* Adjust for iOS safe area */
  
  }
  
  
  .projectContainer {
    flex: 1; /* Allows the container to expand and fill available space */
    display: flex;
    flex-direction: column; /* Keeps content organized in a column */
    justify-content: space-between; /* Spaces content between header and footer */
    /* Remove min-height: 100vh; */
    padding-bottom: env(safe-area-inset-bottom); /* Adjust for iOS safe area */
  }
  
  
  
  
  
  .learnContainer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 
  
  
  /*
  .news-text{color: blue;}
  */
  
           
  .status-items {
    display: flex;
    justify-content: center; /* Center the status containers horizontally */
    gap: 20px; /* Adds space between the status containers */
    cursor: default;
  }
  
  .status-container {
    display: flex;
    align-items: center; 
  }
  
  .status-indicator {
    width: 5px; 
    height: 5px; 
    border-radius: 25%;
    margin-right: 6px;
  }
  
  
  
  .learnContainer, .info {
    width: 100%;
    max-width: none;
    
  }
  
  .news-section {
    width: 90%; 
    max-width: 600px; 
    margin: 0px auto;
    padding: 0 20px; 
  }
  
  
  @media (max-width: 768px) { 
    .news-section {
      width: 95%;
      padding: 0 0px; 
      max-width: none;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  .hidden {
    display: none !important;
  }
  
  
  
  
  
  
  
  
  /* Top shadow */
  .news-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; /* Height of the shadow */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    display: none; /* Initially hidden */
    width:90%;
    margin:0 auto;
  }
  
  /* Bottom shadow */
  .news-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px; /* Height of the shadow */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    display: none; /* Initially hidden */
    width:90%;
    margin:0 auto;
  }
  
  .news-text::before {
    display: var(--top-shadow-display, none); 
  }
  
  .news-text::after {
    display: var(--bottom-shadow-display, none); 
  }
  
  .news-text {
    text-align: center !important;
  }
  
  
  
  .centered {
    text-align: center;
  }
  
  
  .left-align {
    text-align: left;
  } 
  
  
  /* -- center news  if single line -- */
  /* Initial CSS: Assumes content is not centered by default */
  /*
  .news p {
    text-align: left;
  }
  
  .centered {
    display: flex;
    justify-content: center;
  }
   */
  
  
  
  
  
  
  
  
  ::-moz-selection {
        color: hsla(30,26.7%,94.1%, 0%);
        background: hsla(30,26.7%,94.1%, 0%);
  }
      
  ::selection {
        color: hsla(30,26.7%,94.1%, 0%);
        background: hsla(30,26.7%,94.1%, 0%);
  }
  
  
  
  /* Tooltip container */
  /*
  .tooltip {
    position: relative;
   /* display: inline-block; */
   /*
   animation:none !important;
   opacity: 1 !important;
     animation: none !important;
     animation-name: none !important;
     animation-duration: 0s !important;
     animation-timing-function: ease !important;
     animation-delay: 0s !important;
     animation-iteration-count: 1 !important;
     animation-direction: normal !important;
     animation-fill-mode: none !important;
  }
  
  
  .tooltip .tooltiptext {
    visibility: hidden;
    */
  /*  width: 120px;
    margin-left: -60px;
      padding: 5px 0;
  
  */
  /*
  margin-left: -70% ;
      padding: 5px 10px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    animation:none !important;
    opacity: 1 !important;
    font-family: var(--text-font);
  font-weight: 400;
  font-style: normal;
  font-size:13px;
      animation: none !important;
      animation-name: none !important;
      animation-duration: 0s !important;
      animation-timing-function: ease !important;
      animation-delay: 0s !important;
      animation-iteration-count: 1 !important;
      animation-direction: normal !important;
      animation-fill-mode: none !important;
  }
  
  
  
  .tooltip:hover .tooltiptext {
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-timing-function: ease !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    animation-direction: normal !important;
    animation-fill-mode: none !important;
  }
  
  
  .tooltip-content:hover .tooltiptext {
    visibility: hidden !important;
    opacity: 0 !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  */
  
  /*
  .news-text {
    color: red;
  }
  */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*
  
  .availability-section {
    position: absolute;
    bottom: calc(10px - env(safe-area-inset-bottom)); 
    left: 0;
    right: 0;
    text-align: center;
  margin-bottom:0px;
  padding-bottom: env(safe-area-inset-bottom) ; 
  }
  
  
  
    .learnContainer {
      position: relative; 
      display: flex;
      flex-direction: column;
      overflow: auto; 
      min-height: calc(100vh - 90px - env(safe-area-inset-bottom));
      padding-bottom: env(safe-area-inset-bottom);
    }  
    */
  
  @media (min-width: 768px) {
    .availability-section {
      position: absolute;
      bottom: calc(10px - env(safe-area-inset-bottom)); 
      left: 0;
      right: 0;
      text-align: center;
    margin-bottom:0px;
    padding-bottom: env(safe-area-inset-bottom) ; 
    }
    }
    
    @media (min-width: 768px) {
      .learnContainer {
        position: relative; /* Ensures absolute positioning is relative to this container */
        display: flex;
        flex-direction: column;
        overflow: auto; 
        min-height: calc(100vh - 90px - env(safe-area-inset-bottom)); /* Subtracting total height of header and footer */
        padding-bottom: env(safe-area-inset-bottom); /* Ensure padding at the bottom */
      }  
    }
    
    
    
    
    @media (max-width: 768px) {
      .availability-section {
        position: absolute;
        bottom: calc(10px - env(safe-area-inset-bottom)); 
        left: 0;
        right: 0;
        text-align: center;
      margin-bottom:0px;
      padding-bottom: env(safe-area-inset-bottom) ; 
      }
      }
      
      @media (max-width: 768px) {
        .learnContainer {
          position: relative; /* Ensures absolute positioning is relative to this container */
          display: flex;
          flex-direction: column;
          overflow: auto; 
          /*min-height: calc(100vh - 180px - env(safe-area-inset-bottom));*/
          /* min-height: calc(100vh - 200px - env(safe-area-inset-bottom));  */
        
          /*min-height: calc(100vh - 90px) ; */
  
  
        /*  min-height:  calc(100dvh - 52px - 36px) !important;*/
  
          min-height:  calc(100dvh - 54px - 38px) !important;
  
  
  
         /* padding-bottom: env(safe-area-inset-bottom); */ /* Ensure padding at the bottom */ 
        }  
      }
  
  
  
      
  
  #learnLink::selection, #workLink::selection, #talkLink::selection, #studioLink::selection, #wordLink::selection,
  #shopLink::selection, #copyrightText::selection, .reset-symbol::selection, .inner-content::selection, .toggle-arrow::selection, .filter-button::selection {
    background: none !important; /* Light orange background */
    color: #565656 !important; /* Text color for selection */
  }
  
  
  /*
  .news-text {
    color: teal;
   color: plum;
    }
    
    */
  
    /* Style the 'work' link to match the rest of the menu */
  #workLink {
    /*margin-left: 10px;*/ /* Adjust spacing as needed */
    cursor: pointer;
  }
  

  
  
  /* Style the workContainer (optional, to control the layout and spacing) */
  .workContainer {
   /* padding: 20px;*/
   padding: 0px;
    margin: 0 auto;
    text-align: center; /* Centers content within the container */
  }
  
  
  
  
  
  
  /* Grid layout */
  .workGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    /*gap: 16px;*/
    gap: 2.5px; /* Space between grid items */
    /*max-width: 1200px;*/ /* Optional max-width for layout */
    max-width: 800px ; 
    margin: 0 auto; /* Center the grid */
    padding: 16px 0px 0px 0px; /* Padding around the grid */
  }


  @media (max-width: 850px) {

  .workGrid {
    /*max-width: 90vw;*/
    max-width: 95vw;

  }
  }


  
  /* Image overlay container */
  .imageOverlay {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4 !important; /* Matches the grid aspect ratio */

    overflow: hidden;
    /*border-radius: 8px; */
    
    /*border-radius: 2.5px !important;*/
  }
  
  /* Images */
  .workImage {
    width: 100%;
   /* height: auto;*/
   height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease; /* Smooth hover effect */
  }
  
  
  
  
  /* Text overlay */
  .overlayText {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /*padding: 8px 12px;
    background: rgba(0, 0, 0, 0.6); 
    color: #fff;  */
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: var(--text-font);
    text-transform: lowercase;
  
    padding: 4px 8px;
    background:#f4f0ec; 
    color: #565656; 
    /*width: 50%;*/
      width: fit-content;
    margin: 0 auto;
    border-radius:5px 5px 0px 0px;
    
  }
  
  /* Hover effect to show text overlay */
  .imageOverlay:hover .overlayText {
    opacity: 1;
  }
  
  
  
  /* Image hover effect */
  /*
  .imageOverlay:hover .workImage {
    transform: scale(1.05); 
    transform: scale(1.01); 
  }*/
  
  
  
  /* Grid configuration for mobile */
  @media (max-width: 768px) {
    .workGrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Default 2 columns on mobile */
    }
  
    /* Single-column layout for mobile */
    .workGrid.single-column {
      grid-template-columns: 1fr; /* Switch to 1 column when class is applied */
    }
  
  
    /* Single-column layout for mobile */
    .workGrid.two-column {
      grid-template-columns: 2fr; /* Switch to 1 column when class is applied */
    }

     
  .workGrid.three-column {
    grid-template-columns: repeat(2, 1fr);
  }


  .workGrid.six-column {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .workGrid.five-column {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .workGrid.four-column {
    grid-template-columns: repeat(4, 1fr);
  }


    /* Show the toggle button on mobile */
    #toggleGridButton {
      display: block; 
    }
  }
  
  /* Grid configuration for desktop */
  @media (min-width: 769px) {
    .workGrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Default 4 columns on desktop */
    }
  
    /* Two-column layout for desktop */
    .workGrid.two-column {
      grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns when class is applied */
    }
  
      /* Single-column layout for desktop */
      .workGrid.single-column {
        grid-template-columns: 1fr; /* Switch to 1 column when class is applied */
      }
  
  
  
  
  
    /* Show the toggle button on desktop */
    #toggleGridButton {
      display: block; 
    }
  }
  
  /* Button styling */
  #toggleGridButton {
   
    z-index: 1000; /* Ensure it's above other elements */
    background-color: #f4f0ec;  
    color: #5c5c5c;
    border: none;
    border-radius: 2.5px;
   /* font-size: 14px ;*/
    cursor: pointer;
    transition: background-color 0.3s ease;
    /*margin-left: 10px !important;*/
  }
  
  
  
  
  
  
  .logo-image {
    visibility: hidden;
    opacity: 0;
    /* max-height: 30px !important;
    margin-top: 0px !important; */
    max-height: 35px !important;
    margin-top: 5px !important;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  .logo-image:hover {
    cursor: pointer;
  }
  
  /* Ensure the wordmark is visible initially */
  #studioLink {
    visibility: visible;
    opacity: 1;
  }
  
  #studioLogoImage {
    visibility: hidden;
    opacity: 0;
  }
  
  
  /* Container to ensure alignment */
  .nav-container {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center;    /* Centers content vertically */
    position: relative;
   /* height: 60px;  */         /* Adjust as per your nav bar height */
  }
  
  /* Wordmark (Text Logo) */
  #studioLink {
    position: absolute;      /* Position in the center */
    visibility: visible;     /* Ensure it toggles properly */
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  /* Image Logo */
  #studioLogoImage {
    position: absolute;      /* Same position as wordmark */
    visibility: hidden;      /* Ensure it toggles properly */
    opacity: 0;
    max-height: 30px;        /* Adjust to fit the nav bar */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  
  
  
  
  

  
  #toggleGridButton .toggle-symbol.minus {
    top: 0px; /* Slight upward adjustment for the "-" */
  }
  
  
  
  
  
  
  .ibm {
  font-family: 'ibm-plex-mono', neue-haas-grotesk-text, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size:11px !important;
  }
  
  .ibm-nav {
    font-family: 'ibm-plex-mono', neue-haas-grotesk-text, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size:14px !important;
    }
  
  
  
  
  
  
  
  .nooooooah button{
    background-color: transparent !important;
    border: none !important;
  }
  
  
  .nooooooah {
  font-size: 14px !important;
  }
  
  
  
  
  
  
    
    
    /* Style the workContainer (optional, to control the layout and spacing) */
    .ns-link {
     position: fixed !important;
     right: 65px !important;
     top:16px  !important;
      color: #007bff !important;
    }
    
  
  
  
  
  
  
  
  
  
    /* WORK PHOTOS FILTERING BELOW */
    /*
    .filter-menu {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      justify-content: center;
      gap: 10px;
      background: rgba(244, 240, 236, 0.8);
      backdrop-filter: blur(10px);
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .filter-button {
      padding: 5px 15px;
      border: none;
      background: #f0f0f0;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }*/
   
  
  
  
  






    
  
  /*NEW */
  /* Ensure the tag menu container is centered */
  .filter-menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0; /* Sticks to the top on scroll */
    z-index: 10;
    /*backdrop-filter: blur(10px);*/ /* iPhone-like blurry effect */
    /*background: rgba(255, 255, 255, 0.8); *//* Slightly translucent */
    padding: 10px 20px;
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/ /* Gentle shadow */
  }
  
  /* Filter menu with dynamic width */
  .filter-menu {
    display: inline-flex;
    gap: 10px;
    /*padding: 5px 15px; */
    padding: 5px 5px;
   /* border-radius: 25px;*/
    /*border-radius: 0px;*/
    border-radius: 2.5px;
    /*background: rgba(240, 240, 240, 0.9);*/
    background: rgba(244, 240, 236, 0.9);
  
  
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 10px;
    
    /* Slightly translucent background */
    /*
    
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);*/
     /* Subtle shadow */
  }
  
  /* Reset button positioned to the right of the tag menu */
  .reset-button {
    /*margin-left: 10px;*/ /* Space between the menu and the reset button */
   /* padding: 5px 10px;*/
    border-radius: 2.5px;
    /*background: rgba(240, 240, 240, 0.9);
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
   */
/*    background: rgba(244, 240, 236, 0.9);*/
    border:0px !important;
    /* Same style as the menu */
    /*font-size: 14px;*/
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
  
  
   /* position: absolute;
    margin-left: 360px !important;
    */
  
  }
  
  /* Hidden reset button */
  .reset-button.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
  }
  
  /* Visible reset button */
  .reset-button.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
  

  
  /* Active filter button styles */
  /*
  .filter-button.active {
    background-color: #5c5c5c;
    color: #f4f0ec;
  }
  */

  
  .reset-button:hover {
  /* background-color: #6b3a86 !important; 
    color: #f4f0ec !important;*/

    opacity: .5 !important;

  }
  

  .full-width-toggle-button:hover {
   /* background-color: #6b3a86 !important; 
    color: #f4f0ec !important;*/

    opacity: .5 !important;


  }
  

  
  
  
  /* General filter button styles */
  .filter-button {
    margin: 0 auto !important;
    border-radius: 2.5px;
    border: none;
    background-color: #f4f0ec;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: 'ibm-plex-mono', neue-haas-grotesk-text, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
   /* font-size:11px !important;*/
   font-size: 14px;
    text-transform: uppercase !important;
  
  }

  @media (min-width: 769px) {

  .filter-button,     .reset-button, button#auto-scroll-button, .full-width-toggle-button, .toggle-symbol, #toggleGridButton    {

  padding: 5px 15px;
  }}


  @media (min-width: 500px) and (max-width: 769px) {

  .filter-button,    .reset-button, button#auto-scroll-button, .full-width-toggle-button, .toggle-symbol, #toggleGridButton  
    {

  padding: 5px 10px;
  }}




  @media (max-width: 500px) {

    .filter-button,    .reset-button, button#auto-scroll-button, .full-width-toggle-button, .toggle-symbol, #toggleGridButton   {
  
    padding: 5px 5px;
    }}



  .filter-button.a, .filter-button.b, .filter-button.c, .filter-button.d, .filter-button.e, .filter-button.f {
    color:#565656;
  }


  @media (min-width: 769px) {
    .filter-button.a:hover, 
    .filter-button.b:hover, 
    .filter-button.c:hover, 
    .filter-button.d:hover, 
    .filter-button.e:hover, 
    .filter-button.f:hover {
      color: #f4f0ec !important;
      transform: scale(1.05);
    }
    .filter-button.a:hover { background-color: #8c0000; }
    .filter-button.b:hover { background-color: #d15600; }
    .filter-button.c:hover { background-color: #d9a300; }
    .filter-button.d:hover { background-color: #007d00; }
    .filter-button.e:hover { background-color: #004e80; }
    .filter-button.f:hover { background-color: #31004d; }
  }

    


  .filter-button.a.active {
    background-color: #8c0000;
    color: #f4f0ec;
  }


  /*
  .filter-button.a:hover {
    background-color: #8c0000;
    color:#f4f0ec !important;
     transform: scale(1.05);
   }

  .filter-button.b:hover {
    background-color: #d15600;
    color:#f4f0ec !important;
     transform: scale(1.05);
   }


   .filter-button.c:hover {
    background-color: #d9a300;
    color:#f4f0ec !important;
     transform: scale(1.05);
   }


   .filter-button.d:hover {
    background-color: #007d00;
    color:#f4f0ec !important;
     transform: scale(1.05);
   }

   .filter-button.e:hover {
    background-color: #004e80;
    color:#f4f0ec !important;
     transform: scale(1.05);
   }


   .filter-button.f:hover {
    background-color: #31004d;
    color:#f4f0ec !important;
     transform: scale(1.05);
   }*/
 

   .filter-button.b.active {
    background-color: #d15600;
    color: #f4f0ec;
  }


   .filter-button.c.active {
    background-color: #d9a300;
    color: #f4f0ec;
  }

   .filter-button.d.active {
    background-color: #007d00;
    color: #f4f0ec;
  }


   .filter-button.e.active {
    background-color: #004e80;
    color: #f4f0ec;
  }



   .filter-button.f.active {
    background-color: #31004d;
    color: #f4f0ec;
  }



/*
  .filter-menu-container{
  justify-content: space-between;
}

*/




/* Flex container for the filter menu */
.filter-menu-container {
    display: flex;
    /*justify-content: space-between;*/ /* Spread the left, center, and right sections */
    align-items: center; /* Align items vertically */
    padding: 10px 20px; /* Add some spacing around the menu */
 /*   gap: 10px;*/ /* Add spacing between the sections */
  }
  
  /* Left side (toggle button) */
  .filter-menu-left {
    flex-shrink: 0; /* Prevent it from shrinking */
  }
  
  /* Center (main menu) */
  .filter-menu {
    display: flex;
    justify-content: center; /* Center the menu */
    /*flex-grow: 1;*/ /* Allow it to expand and take up remaining space */
    gap: 5px; /* Spacing between filter buttons */
  }
  
  /* Right side (reset button) */
  .filter-menu-right {
    flex-shrink: 0; /* Prevent it from shrinking */
  }
  
  /* General button styles */
  /*
  button {
    padding: 5px 10px;
    border: none;
    border-radius: 2.5px;
 background: rgba(244, 240, 236, 0.9);;
    cursor: pointer;
    font-size: 14px;
  }*/
  
  /* Reset button */
  /*.reset-button {
    background-color: #d6d6d6;
    font-size: 16px;
  }
  */

  /* Toggle grid button */
  /*
  #toggleGridButton {
    background-color: #d6d6d6;
  }*/




  #toggleGridButton:hover {
   /* background-color: #dcd2c8;*/

  /* background-color: #6b3a86 !important; 
    color: #f4f0ec !important;*/

    opacity: .5 !important;
   /* transform: scale(1.05);*/
  }



  #toggleGridButton
  {
    background:rgba(244, 240, 236, 0.9);
  /*border-radius: 2.5px 0px 0px 2.5px;*/
  border-radius: 2.5px;
}

  #toggleGridButton .toggle-symbol {
   /* display: inline-block;*/
   display: contents;
   position: relative; 

   /* font-family: monospace !important;*//* Ensures consistent width for symbols */
   /* font-weight: 100 !important; */


font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   font-weight: 200 !important;
   
  }
  
/*
  #toggleGridButton:hover .toggle-symbol {
  color: black !important;
  }
*/

  /* Right side (reset button) */
  .reset-button.hidden {
    visibility: hidden; /* Hides the button visually but keeps it in the layout */
    opacity: 0; /* Fades out the button for a smooth transition */
    pointer-events: none; /* Prevents interaction when hidden */
    transition: opacity 0.3s ease-in-out; /* Optional: Smooth fade-in/out effect */
  }
  
  .filter-menu-right {
    flex-shrink: 0; /* Ensures consistent spacing */
    width: 50px; /* Adjust to your desired width */
    display: flex;
    justify-content:flex-end;
   /* gap: 20px; */
   background: rgba(244, 240, 236, 0.9);
   width: auto;
   border-radius: 2.5px;
   gap: 5px;
  }

  .filter-menu-left {
    background: rgba(244, 240, 236, 0.9);
        flex-shrink: 0; /* Ensures consistent spacing */
    width: auto; /* Adjust to your desired width */
    display: flex;
    border-radius: 2.5px;
  
    justify-content: flex-start;
   /* gap: 20px !important; */
   gap: 5px;
  }


  
  .workGrid.three-column {
    grid-template-columns: repeat(2, 1fr);
  }


  .workGrid.six-column {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .workGrid.five-column {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .workGrid.four-column {
    grid-template-columns: repeat(4, 1fr);
  }


  .workGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default 3 columns */
  }
  
  .workGrid.two-column {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workGrid.single-column {
    grid-template-columns: 1fr;
  }
  
  .workGrid.four-column {
    grid-template-columns: repeat(4, 1fr);
  }




  @media (max-width: 769px) {

    .filter-menu-left {
      flex-shrink: 0;
      width: 50px;
      display: flex;
      justify-content: start;
      align-items: center;
      position: absolute;
      left: 2.5vw !important;
  }}

  @media (max-width: 769px) {

    .filter-menu-right {
      flex-shrink: 0;
      width: 50px;
      display: flex;
      justify-content: end;
      align-items: center;
      position: absolute;
      right: 2.5vw !important;
  }}

  @media (max-width: 769px) {
    .reset-button, button#auto-scroll-button, .full-width-toggle-button, .toggle-symbol, #toggleGridButton  {
margin: 0px !important;

  }}


  @media (min-width: 769px) {

  .filter-menu-container {
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    /* gap: 10px; */
    /*max-width: 750px !important;*/

    /*
    max-width: 720px ;*/
    justify-content: space-between;
}}



.reset-button, button#auto-scroll-button, .full-width-toggle-button,     #toggleGridButton
{

    color: #565656;
 
      height: 35.5px !important;
  font-size: 18px !important;
  background-color: #f4f0ec;
    border:0px !important;
    min-width: 28px !important;
    }

 
    
/*
    #toggleGridButton .toggle-symbol {
      min-width: 28px !important;

    }*/

.auto-scroll-button:hover
{

  /* background-color: #6b3a86 !important; 
    color: #f4f0ec !important;*/

    opacity: .5 !important;

    }


    button#max-width-toggle-button {
      font-weight: 100 !important;
      margin-right: 0px !important;
      /*border-radius: 2.5px 0px 0px 2.5px;*/

      border-radius: 2.5px;


  }

  #toggleGridButton
  {      margin-left: 0px !important;
   /* border-radius: 0px 2.5px 2.5px 0px; */
   border-radius: 2.5px;
  }

 

  .reset-button{
    /*border-radius: 2.5px 0px 0px 2.5px !important;*/
    border-radius: 2.5px;
    margin-right: 0px !important;

  
  }

  button#auto-scroll-button
  {   
    /* border-radius: 0px 2.5px 2.5px 0px !important; */
    border-radius: 2.5px;
    margin-left: 0px !important;
  }



  /* Disable hover styles after tap on touch devices */
@media (hover: none) {
  .filter-button:hover {
    background-color: inherit ; /* Reset to default background */
    color: inherit ;           /* Reset to default text color */
    transform: none;          /* Remove any hover transform */
  }
}


/*FOR NOW UNTIL WE FILL UP WORK STUDIO IMGS CONTAINER GRID GALLERY WITH PHOTOS IMAGES PICTURES HEIGHT FULL*/
/*
.workContainer {

  min-height: 90vh !important;
}
*/

.workContent{  min-height: 75vh !important;
}


.slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 4 !important;
}

.slideshow .workImage {
  position: absolute;
  width: 100%;
  height: 100% !important; /* Add !important to match your other styles */
  top: 0;
  left: 0;
  object-fit: cover;
}








/* to turn off empty grid filter buttons */
.non-clickable {
  pointer-events: none;
}













  
    /* Style the 'work' link to match the rest of the menu */
    #wordLink {
     /* margin-left: 10px; */ /* Adjust spacing as needed */
      cursor: pointer;
    }
    
    

    
    /* Style the workContainer (optional, to control the layout and spacing) */
    .wordContainer {
     /* padding: 20px;*/
     padding: 0px;
      margin: 0 auto;
      text-align: center; /* Centers content within the container */
    }
    




    .wordContainer, .info {
      width: 100%;
      max-width: none;
      
    }






  .news-words-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 480px;
    text-align: center; 
  }
  
  .news-words-header {
    text-align: center;
    margin-bottom: 0;
  }
  
  .news-words-text {
   /* text-align: left; */
    margin-top: 0;
    padding-top: 0;
    position: static; 
    flex: 1; /* Allows the section to expand within the available space */
    overflow-y: auto; /* Makes only the vertical overflow scrollable */
    margin: 0px 0; 
    padding: 0 20px; 
    max-height: calc(60vh - 40px); 
   /* border-bottom: 1px dotted grey;
    border-top: 1px dotted grey;*/

  
  }
  
  
  
 
  
  .news-words-section {
    width: 90%; 
    max-width: 600px; 
    margin: 0px auto;
    padding: 0 20px; 

  }
  
  
  @media (max-width: 768px) { 
    .news-words-section {
      width: 95%;
      padding: 0 10px; 
      max-width: none;
    }
  }
  
  
  
  
  
  
  
  /* Top shadow */
  .news-words-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; /* Height of the shadow */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    display: none; /* Initially hidden */
    width:90%;
    margin:0 auto;
  }
  
  /* Bottom shadow */
  .news-words-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px; /* Height of the shadow */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    display: none; /* Initially hidden */
    width:90%;
    margin:0 auto;
  }
  
  .news-words-text::before {
    display: var(--top-shadow-display, none); 
  }
  
  .news-words-text::after {
    display: var(--bottom-shadow-display, none); 
  }
  
  .news-words-text {
    text-align: center !important;
  }
  





  .news-words-text p {
      text-align: left !important;
      font-family: 'itc-zapf-international', sans-serif !important;
      font-weight: 500 !important;
      font-style: normal;
            font-size: 14px !important;
            line-height: 1.5 !important;
    }

    .news-words-text h1 {
      font-family: 'tgn-soft-round', sans-serif !important;
font-weight: 800 !important;
font-style: normal;
text-align: left !important;
      font-size: 22px !important;
      text-transform: uppercase !important;
margin-top: 40px;
margin-bottom: 0px;
    }





    .words-number
    {
      font-family: 'ibm-plex-mono', neue-haas-grotesk-text, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
      font-size:11px !important;
    }


    /*
    .shop
    {
      cursor: not-allowed !important;
      
    }



  #talkLink {
    margin-right: 10px !important; 
  }

  .header .rightMenu {
    gap: 10px !important;
  }*/





  .non-clickable-link {
    cursor: not-allowed !important; /* Ensures it looks non-clickable */
    user-select: none !important; /* Prevents text selection */
    display: inline-block !important; /* Ensures proper layout for inner styling */
  }
  
  .inner-content {
   /* padding: 2px 4px !important;*/ /* Adds spacing for visual feedback */
    border-radius: 4px !important; /* Optional: Makes the background smoother */
    transition: background-color 0.2s ease !important; /* Smooth transition for the effect */
  }
  
  .inner-content:active {
    background-color: #d3d3d3 !important; /* Light grey feedback on click/tap */
  }
  





  /*WORDS TEXT */
  /* Styling for fade effect */
  .sentence-text {
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  .fade-out {
    opacity: 0;
  }

  .fade-in {
    opacity: 1;
  }


  .sentence-container {
    text-align: center;
  }

  .sentence-text {
    font-size: 18px;
    line-height: 1.6;
    /* color: #463F3F; */
    color: #565656;
  }








  
/* General Container Styling */
.wordContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: auto;
  /* Your provided min-height for desktop */
  min-height: calc(100dvh - 54px - 38px) !important;
  padding-bottom: env(safe-area-inset-bottom); /* Ensure safe bottom padding */
}



.info-words {
  display: flex;
  justify-content: center;
  /* justify-content: space-between; */
  align-items: center;
  padding: 10px 20px;
}

/* Top Menu (Now About Section) */
.about-words {
  text-align: center;
  font-family: "ibm-plex-mono", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 10px; /* Positioned at the top */
  left: 0;
  right: 0;
  margin-top: 0;
}

/* Centered Sentences (News Section) */
.news-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 480px;
  text-align: center;
}

/* Sentence Display */
.sentence-container {
  padding: 10px 20px;
}

.sentence-text {
  text-align: center;
  font-family: "itc-zapf-international", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

/* Bottom Menu (Now Availability Section) */
.availability-words-section {
  position: absolute;
  bottom: calc(10px - env(safe-area-inset-bottom)); /* Position at the bottom */
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: env(safe-area-inset-bottom);
}

.news-words-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.submit-link p {
  font-family: var(--text-font) !important;
  font-size: 11px !important;
  text-transform: lowercase !important;
  cursor: pointer;
  margin: 0px  !important;
  text-decoration: none !important;

}


.submit-link .send-button
{text-decoration: none !important;}




.submit-link a {
  text-decoration: none;
  color: inherit;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .learnContainer {
    /* Your provided min-height for mobile */
    min-height: calc(100dvh - 54px - 38px) !important;
  }
}









@media screen and (min-width: 768px) {

.news-words-random-text p {
  text-align: center !important;
  font-family: 'itc-zapf-international', sans-serif !important;
  font-weight: 500 !important;
  font-style: normal;
  font-size: 54px !important;
  line-height: 1.5 !important;
}}

@media screen and (max-width: 768px) {
  .news-words-random-text p {
    text-align: center !important;
    font-family: 'itc-zapf-international', sans-serif !important;
    font-weight: 500 !important;
    font-style: normal;
          font-size: 24px !important;
          line-height: 1.5 !important;
  }
  }
  


.news-words-text h1 {
  font-family: 'tgn-soft-round', sans-serif !important;
font-weight: 800 !important;
font-style: normal;
text-align: left !important;
  font-size: 22px !important;
  text-transform: uppercase !important;
margin-top: 40px;
margin-bottom: 0px;
}



/* TIME ON WORDS */

/* Ensure the time container is centered within the header */
.time {
  margin: 0 !important;
      white-space: nowrap; /* Prevent wrapping */

}





/*

  .time-segment {
    display: inline-block !important;
    width: 2ch !important; 
    text-align: right !important;
  }
  .time-separator {
    display: inline-block !important;
    text-align: center !important;
      width: 0px !important;
    margin: 0 -0.25ch !important; 
    text-align: center !important;
    
  }
  .date-time-separator {
    display: inline-block !important;
    width: 2ch !important; 
  }

  */





  .time-segment {
    display: inline-block !important;
    width: 2ch !important; /* 2 character width */
    text-align: center !important;
  }
  .time-separator {
    display: inline-block !important;
    width: 0ch !important;
    text-align: center !important;
    margin: 0 -0.25ch !important; 
    text-align: center !important;
  }
  .date-time-separator {
    display: inline-block !important;
    width: 3ch !important; /* Space between date and time */
  }




  

  .imageOverlay {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

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



 .slideshow {
  opacity: 0;
  animation: fadeIn 3s forwards !important;
}



@media screen and (min-width: 500px) {


   p.rightMenu,  p.leftMenu {  
  gap: 15px !important;
  }}


  @media screen and (max-width: 500px) {
    p.rightMenu, p.leftMenu {  
      gap: 10px !important;
  }}







/* #### copyright caps #### */
    
    /* Global text transform classes */
    .text-uppercase {
      text-transform: uppercase !important;
    }
    
    .text-lowercase {
      text-transform: lowercase !important;
    }


    .reset-symbol {
      display: none;
      cursor: pointer;
      margin-left: 1em;
    }


    /* -- CURSOR POINTER OVER FOOTER TEXT ONLY -- */
    #copyrightText , #resetSymbol {
cursor: pointer;
    }
    #copyrightText {
    display: inline-block; /* Shrinks the clickable area to fit the text */
    }

    .footer {
      text-align: center; /* Ensure the text is centered if needed */
    }


    /* -- CURSOR POINTER OVER SPINNING LOGO ONLY -- */
    .imageContainer {
      text-align: center  !important;
  }
  .spinning {
    display: inline-block !important;
  }
  


  #studioLink {
    font-weight: 700 !important;
    letter-spacing: -1px !important;
}