/* ©2023 Athenaeum AI, Inc. */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, white, white);
    margin: 0; /* Resets default margin */
    padding-top: 0px; /* Space for the fixed navbar */
    color: #333;
    /* Removed flexbox styles that conflict with the fixed navbar */
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.app {
    display: flex;
    flex-direction: column;
    align-content: center;
}

.tab {
    padding-top: 60px; /* Space for the fixed navbar */
    /* height: calc(100vh - 60px); */
    width: 100%;
    max-width: 2000px;
}

.hero-section {
    padding: 0px 0; /* Adjust as needed */
}

#hero {
    padding: 65px 0; /* Adjust as needed */
    margin-top: 0px; /* Remove the top margin of the section */
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    padding: 20px;
}

.gradient-text {
    font-size: 66px;
    font-weight: bold;
    background: linear-gradient(to left, darkblue, lightblue);
    background-clip: text;
    color: transparent;
}

.gradient-text-small {
    /* font-size: 30px; */
    font-weight: bold;
    background: linear-gradient(to left, darkblue, lightblue);
    background-clip: text;
    color: transparent;
}

.gradient-text-plan {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(to left, darkblue, lightblue);
    background-clip: text;
    color: transparent;
    text-wrap: nowrap;
}


.section {
   padding-top: 60px;
}

.site-text {
    font-family: Roboto, sans-serif; /* Same font as the body */
    color: #333; /* Same color as #container span */
    font-size: 2.8vw; /* Same relative font size */
    font-weight: normal; /* Same font weight */
    margin: 20px 0; /* Add some margin for spacing, adjust as needed */
    text-align: center; /* Center align if needed */
    /* Initially hidden, will be shown via JavaScript */
    /* Add any additional styling to match the "ai for" text */
}

.site-text-hero {
    font-family: Roboto, sans-serif; /* Same font as the body */
    color: #333; /* Same color as #container span */
    font-size: 25px; /* Same relative font size */
    font-weight: normal; /* Same font weight */
    margin: 30px 0; /* Add some margin for spacing, adjust as needed */
    text-align: center; /* Center align if needed */
    /* Initially hidden, will be shown via JavaScript */
    /* Add any additional styling to match the "ai for" text */
}

.slide-three-text {
    font-family: 'Roboto', sans-serif; /* Same font as the body */
    color: #333; /* Same color as #container span */
    font-size: 2.0vw; /* Same relative font size */
    font-weight: normal; /* Same font weight */
    margin: 20px 0; /* Add some margin for spacing, adjust as needed */
    text-align: center; /* Center align if needed */
    /* Initially hidden, will be shown via JavaScript */
    /* Add any additional styling to match the "ai for" text */
}

.section-title-text {
    font-family: 'Roboto', sans-serif; /* Same font as the body */
    color: #333; /* Same color as #container span */
    font-size: 45px; /* Same relative font size */
    font-weight: bold; /* Same font weight */
    margin: 20px 0; /* Add some margin for spacing, adjust as needed */
    text-align: center; /* Center align if needed */
    /* Initially hidden, will be shown via JavaScript */
    /* Add any additional styling to match the "ai for" text */
}

.container {
    display: flex;
    /* border-right: 1px solid black; /* Vertical line */
}

.tooltip-image-container {
    /* position: relative; */
    height: auto;
}

.tooltip-image-container img {
    max-width: 100%; /* Adjust the width as needed */
    height: auto;
    display: inline-block; /* Keeps the image block-level but allows text-align center from parent to work */
    margin: 0 auto; /* Centers the image horizontally */
    border-radius: 10px; /* Adjust this value to get the desired roundness */
    /* box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.5); */
    /* Fallback for older browsers */
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.tooltip-container {
    position: relative;
    display: flex;
}

.overlay-circle {
    position: absolute;
    cursor: pointer; /* Makes it clear the element is interactive */
    display: flex; /* To center the '+' icon inside the circle */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    border-radius: 50%; /* Makes the overlay circle round */
    width: 40px; /* Size of the circle */
    height: 40px; /* Size of the circle */
    background-color: white; /* Background color of the circle */
    border: 3px solid #333; /* Border of the circle */
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.4);
    

    font-weight: bold;
    font-size: 20px;
    color: #333;

}

.im-tooltip-text {
    /* font-optical-sizing: auto; */
    font-size: 16px;
    visibility: hidden;
    width: 40%; /* Adjust as needed */
    /* background-color: rgb(114, 171, 163); */
    background-color: #05192c;
    color: #ffffff;
    text-align: left;
    border-radius: 6px;
    padding: 15px 15px;
    position: absolute;
    z-index: 1;
    /* margin-top: -25px; Adjust this value to vertically center the tooltip */
    opacity: 0.4;
    transition: opacity 0.3s;
    font-style: italic;
    text-align: center;
}

.library-sidebar-tooltip {
    top: 50%; /* Adjust based on where you want the circle over the image */
    left: 9%; /* Adjust based on where you want the circle over the image */
}

.submit-tooltip {
    top: 83%; /* Adjust based on where you want the circle over the image */
    left: 49%; /* Adjust based on where you want the circle over the image */
}

.select-tooltip {
    top: 84%; /* Adjust based on where you want the circle over the image */
    left: 62%; /* Adjust based on where you want the circle over the image */
}


.save-tooltip {
    top: 85%; /* Adjust based on where you want the circle over the image */
    left: 71.1%; /* Adjust based on where you want the circle over the image */
}

.answer-tooltip {
    top: 30%; /* Adjust based on where you want the circle over the image */
    left: 50%; /* Adjust based on where you want the circle over the image */
}

.text-sidebar-tooltip {
    top: 50%; /* Adjust based on where you want the circle over the image */
    left: 89%; /* Adjust based on where you want the circle over the image */
}


.overlay-circle:hover .im-tooltip-text {
    visibility: visible;
    opacity: 0.9; /* Fully visible */
}

.overlay-circle:hover {
    visibility: hidden;
    /* transition: 0.1s; */
}

.top-right {
    position: absolute;
    top: 10px;
    right: 20px;
}

.left-billing {
    flex: 0 0 30%; /* Sets the basis to 40% and doesn't allow them to grow or shrink */
    display: flex; /* Ensures the direct children of this container are flex items */
    justify-content: center; /* Centers the children horizontally in the container */
    align-items: center; /* Centers the children vertically in the container */
}

.plan-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 80vh;
        /* padding: 20px; */
}

.plan-gradient-border{
    /* background: linear-gradient(-45deg, darkblue, lightblue); */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px; /* Adjust for border thickness */
    border-radius: 15px; /* Optional for rounded corners */
    /* width: 100%; */
    position: relative;
}
    .plan-section {
        display: flex;
        width: 100%;
        /* max-width: 1200px; */
        background: white;
        /* background: linear-gradient(to right, white, lightblue); */
        border-radius: 8px;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
        overflow: auto;
    }
    .plan-image {
        flex-basis: 50%;
        background: url(/images/athenaeum-logo-clear.png) no-repeat center center;
        background-size: 60%; /* Adjust this value to make the image smaller */
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .image-container {
        text-align: center;
        height: auto;
    }
    
    .image-container img {
        max-width: 50%; /* Adjust the width as needed */
        height: auto;
        display: inline-block; /* Keeps the image block-level but allows text-align center from parent to work */
        margin: 0 auto; /* Centers the image horizontally */
        border-radius: 10px; /* Adjust this value to get the desired roundness */
        /* box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.5); */
        /* Fallback for older browsers */
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
    }


    .plan-content {
        flex: 0 0 55%; /* Sets the basis to 40% and doesn't allow them to grow or shrink */

        /* padding: 20px; */
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Aligns children to the right */
    }
    
    .plan-title {
        font-size: 24px;
        color: #333;
        margin-bottom: 0px;
    }
    
    .plan-table {
        border-collapse: collapse;
        width: auto; /* Allows the table to maintain its natural width */
        margin-left: auto; /* This will push the table to the right */
    }

    .plan-th, .plan-td {
        text-align: left;
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }
    .plan-th {
        background-color: #f4f4f4;
    }

    .plan-tr-last td {
        border-bottom: none;
      }

      /* Zebra striping for rows */
/* Zebra striping for rows, starting from the 3rd row */
tr:nth-child(n+3):nth-child(even) {
    background-color: #f9f9f9;
}

tr:nth-child(n+3):nth-child(odd) {
    background-color: #ffffff;
}
/* Hover effect for rows, starting from the 3rd row */
tr:nth-child(n+3):hover {
    background-color: #e9e9e9;
}
    

    .feature-name {
        font-weight: normal;
        font-size: 16px;
        /* text-wrap: nowrap; */
      }
      .feature-description {
        font-size: 12px;
        color: #808080;
        margin-top: 4px;
      }

    .plan-text {
        color: #333;
        text-align: center;
    }
    .plan-checkmark {
        color: #333;
        text-align: center;
    }
    .plan-button {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 20px;
        /* background: linear-gradient(to right, lightblue, white); */
        /* background: radial-gradient(at 10% 70%, rgb(32, 216, 32), rgb(168, 243, 168)); */
        background: #333;
        color: #f9f9f9;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        border: 2px solid #333; /* This creates a border around the Enter button. Adjust color as needed */
        border-radius: 4px;
        white-space: nowrap;
}
    .plan-button:hover {
        /* background: radial-gradient(at 70% 10%, rgb(32, 216, 32), rgb(168, 243, 168)); */
        background: #898989;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s;
    }
    
    .plan-icon {
        color: #b4b2b2;
        font-size: 14px;
    }

    .icon-container {
        position: relative;
        display: table-row;
    }
    
    .tooltip-text {
        visibility: hidden;
        width: 40%; /* Adjust as needed */
        /* background-color: rgb(114, 171, 163); */
        background-color: #05192c;
        color: #fff;
        text-align: left;
        border-radius: 6px;
        padding: 10px 10px;
        position: absolute;
        z-index: 1;
        transform: translateY(-50%);
        right: 100%;
        /* margin-top: -25px; Adjust this value to vertically center the tooltip */
        opacity: 0.4;
        transition: opacity 0.3s;
        font-size: 14px;
        font-style: italic;
    }
    
    
    .icon-container:hover .tooltip-text {
        visibility: visible;
        opacity: 0.8;
    }

    .fa-inline {
        vertical-align: middle;
    }


/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 7px; /* Adjust the width of the scrollbar */
    height: 7px; /* Height of horizontal scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: transparent; /* Background of the scrollbar track */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #d2d2d2; /* Background of the scrollbar thumb */
    border-radius: 10px; /* Roundness of the scrollbar thumb */
    /* border: 5px solid white; */ /* Border matching the track color to simulate padding */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #999; /* Background of the scrollbar thumb on hover */
  }

/* Support Section Styles */
.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 40px;
}

.support-intro h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.support-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.support-method {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.support-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.support-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 5px;
}

.support-icon i {
    color: white;
    font-size: 20px;
}

.support-details {
    flex: 1;
}

.support-details h4 {
    color: #333;
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.support-details p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.support-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.support-note {
    color: #888;
    font-size: 13px;
    font-style: italic;
}

.support-footer {
    text-align: center;
    padding: 25px;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.support-footer p {
    color: #1976d2;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments for support section */
@media (max-width: 768px) {
    .support-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-method {
        padding: 20px;
    }
    
    .support-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .support-icon i {
        font-size: 16px;
    }
}
