
/* Target input elements within a container with a specific ID or class */
:root {
    font-family:
        "Helvetica Neue",
        "Segoe UI",
        system-ui,
        Roboto,
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
}

/* Override tailwind */
.logo-container img {
    max-width: 100%;
    height: 100% !important;
}

#myForm input {
    background-color: #111827;
    border: 1px solid oklch(84.2017% 0.006353 264.664526 / 20%);
    border-radius: 0.5rem;
    padding: 1rem 1rem;
    width: 100%; /* Adjusted to fill the grid area */
    color: #fff; /* Ensures text is visible against the dark background */
}
.cool-button-theme {
    /* Primary button background color */
    color: #929292;
    background-color: #5bbeff;
    /* Text color for dark background */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cool-button-theme:hover {
    background-color: #2980b9;
    color: white;
}

.fancyCard {
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: rgba(51, 51, 51, 0.786);
    /* Apply the blur effect */
    border-radius: 10px;
    /* Rounded corners for the glass effect */
    padding: 20px;
    /* Adjust padding as needed */
}

.mytheme {
    padding:0px;
    margin:0px;
    padding-top: 90px;

    --primary: #007cff;
    --secondary: #0003ff;
    --accent: #67e8f9;
    --neutral: #0b081b;
    --base-100: #111827;
    --info: #00acff;
    --success: #00bb8c;
    --warning: #fde047;
    --error: #e11d48;
}



.custom-button {
    /* padding: 8px 16px; */
    padding: 4px 8px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #1f1f1f;
    font-size: 16px;
    transition: background-color 0.3s ease;
    opacity: 0.8;
}

.custom-button:hover {
    opacity: 1;
}

.custom-button:disabled {
    opacity: 0.4;
    background-color: gray;
}

.purple {
    background-color: rgba(189, 147, 249, 0.7);
}

.pink {
    background-color: rgba(255, 121, 198, 0.7);
}

.orange {
    background-color: rgba(255, 184, 108, 0.7);
}

.blue {
    background-color: rgba(154, 222, 254, 0.7);
}

.yellow {
    background-color: rgba(253, 249, 76, 0.7);
}

.red {
    background-color: rgba(255, 85, 85, 0.7);
}

@media (prefers-color-scheme: dark) {
    .custom-button {
        color: #222;
    }

    .purple {
        background-color: rgba(189, 147, 249, 0.9);
    }

    .pink {
        background-color: rgba(255, 121, 198, 0.9);
    }

    .orange {
        background-color: rgba(255, 184, 108, 0.9);
    }

    .blue {
        background-color: rgba(139, 233, 253, 0.9);
    }

    .yellow {
        background-color: rgba(253, 249, 76, 0.9);
    }

    .red {
        background-color: rgba(255, 85, 85, 0.9);
    }
}

/* Custom Primary Button - Light Theme */
.btn-custom-primary {
    background-color: rgba(98, 0, 234, 0.95);
    /* Deep purple */
    border-color: rgba(98, 0, 234, 0.24);
    /* Lighter purple border */
    color: #fff;
    /* White text */
    transition: background-color 0.3s, border-color 0.3s;
    /* Smooth transition */
}

/* Dark Theme Adjustments */
.dark .btn-custom-primary {
    background-color: rgba(98, 0, 234, 0.8);
    /* Slightly less opaque purple for dark mode */
    border-color: rgba(98, 0, 234, 0.5);
    /* Darker border for contrast */
}

.btn-custom-primary:hover {
    background-color: rgba(201, 0, 255, 0.8);
    /* Brighter purple on hover */
    border-color: rgba(234, 0, 255, 0.8);
    /* Brighter border on hover */
}

/* Custom Secondary Button - Light Theme */
.btn-custom-secondary {
    background-color: rgba(255, 181, 20, 0.687);
    /* Soft pink */
    border-color: rgba(255, 230, 3, 0.89);
    /* Slightly darker pink border */
    color: #fff;
    /* White text */
    transition: background-color 0.3s, border-color 0.3s;
    /* Smooth transition */
}

/* Dark Theme Adjustments */
.dark .btn-custom-secondary {
    background-color: rgba(251, 68, 206, 0.6);
    /* More opaque pink for dark mode */
    border-color: rgba(255, 64, 207, 0.7);
    /* Darker border for contrast */
}

.btn-custom-secondary:hover {
    background-color: rgba(255, 211, 35, 0.709);
    /* Brighter pink on hover */
    border-color: rgba(255, 231, 122, 0.649);
    /* Brighter border on hover */
}

/* Custom Tertiary Button - Light Theme */
.btn-custom-tertiary {
    background-color: rgba(54, 79, 171, 0.622);
    /* Subdued blue */
    border-color: rgba(64, 96, 224, 0.6);
    /* Slightly brighter blue border */
    color: rgba(255, 255, 255, 0.87);
    /* Near-white text */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    /* Smooth transition */
}

/* Dark Theme Adjustments */
.dark .btn-custom-tertiary {
    background-color: rgba(54, 79, 171, 0.5);
    /* Less opaque blue for dark mode */
    border-color: rgba(64, 96, 224, 0.8);
    /* Brighter border for contrast */
}

.btn-custom-tertiary:hover,
.btn-custom-tertiary:focus {
    background-color: rgba(28, 116, 232, 0.5);
    /* Darker blue on hover/focus */
    border-color: rgba(45, 154, 237, 0.8);
    /* Brighter border on hover/focus */
}


/* Override btn-primary color */
.btn-primary {
    background-color: rgba(98, 0, 234, 0.95) !important;
    /* Deep purple with high opacity */
    border-color: rgba(98, 0, 234, 0.24) !important;
    /* White border for contrast */
    color: #fff !important;
    /* White text for readability */
}

/* Hover effects */
.btn-primary:hover {
    background-color: rgba(201, 0, 255, 0.8) !important;
    /* Brighter purple on hover */
    border-color: rgba(234, 0, 255, 0.8) !important;

    /* Slightly brighter border */
}

/* Disabled state for btn-primary */
.btn-primary:disabled {
    background-color: rgba(98, 0, 234, 0.5) !important;
    /* Lighter purple with low opacity */
    border-color: rgba(98, 0, 234, 0.24) !important;
    /* Matching border color with low opacity */
    color: rgba(255, 255, 255, 0.28) !important;
    /* White text with low opacity */
}

/* Override btn-secondary color */
.btn-secondary {
    background-color: rgba(251, 68, 206, 0.4) !important;
    /* Soft pink on hover for a vibrant look */
    border-color: rgba(255, 64, 207, 0.5) !important;

    color: #fff !important;
    /* White text for consistency */
}

.btn-secondary:hover {
    /* Slightly brighter pink border */
    background-color: rgba(251, 68, 206, 0.8) !important;
    border-color: rgba(255, 64, 207, 0.9) !important;
    /* Light blue with good opacity */
    /* White border to stand out */
}

/* Disabled state for btn-secondary */
.btn-secondary:disabled {
    background-color: rgba(0, 123, 255, 0.4) !important;
    /* Lighter blue with low opacity */
    border-color: rgba(0, 123, 255, 0.4) !important;
    /* Matching border color with low opacity */
    color: rgba(255, 255, 255, 0.4) !important;
    /* White text with low opacity */
}

.btn-tertiary {
    background-color: rgba(54, 79, 171, 0.622) !important;
    /* Slightly darker gray for more visibility */
    border-color: rgba(64, 96, 224, 0.6) !important;
    /* More pronounced gray border for definition */
    color: rgba(255, 255, 255, 0.87) !important;
    /* Almost black text for readability */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    /* Smooth transition for interactive effects */
}

/* Hover and focus effects */
.btn-tertiary:hover,
.btn-tertiary:focus {
    background-color: rgba(28, 116, 232, 0.5) !important;
    /* Even darker gray on hover for emphasis */
    border-color: rgba(45, 154, 237, 0.8) !important;
    /* Darker and more noticeable border on hover */
    color: rgba(255, 255, 255, 0.87) !important;
    /* Maintain text color for consistency */
}

/* Disabled state for btn-tertiary */
.btn-tertiary:disabled {
    background-color: rgba(158, 158, 158, 0.2) !important;
    /* Lighter gray for disabled look */
    border-color: rgba(158, 158, 158, 0.3) !important;
    /* Lighter border color to indicate non-interactive state */
    color: rgba(255, 255, 255, 0.38) !important;
    /* Lighter black text to further indicate non-interactive state */
}

.btn-export {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    color: #fff !important;
}

.btn-export:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.9) !important;
    color: #000 !important;
}

.btn-cancel {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.9) !important;
    color: #000 !important;
}

.btn-cancel:hover {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}


/* ============================================================
   BASE STYLES
   Sets up the foundational styles used throughout the page.
============================================================ */
:root {
    --primary-color: #000;
    --secondary-color: #c0c0c0;
    --background-color: #1e1e1e;
    --padding-horizontal-large: 50px;
    --padding-horizontal-small: 20px;
    --padding-vertical-large: 100px;
    --padding-vertical-small: 60px;
    --font-size-navbar: 1rem;
    --font-size-footer: 1rem;
    --font-family-secondary: 'Helvetica Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ============================================================
   HEADER STYLES
   Styles related to the header, including the navigation menu.
============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(1, 8, 17, 0.4), rgba(63, 13, 110, 0.4));
    padding: 20px;
    z-index: 1000;
    transition: padding 0.3s;
}

.logo-container {
    position: relative; /* Required for z-index to work */
    z-index: 20;
    width:150px;
    height:70px; /* Higher than the top-fade image */
}

nav {
    display: flex;
    width: inherit;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
}


.nav-toggle {
    display: none;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 1001;
}

.nav-item {

    text-decoration: none;
    color: var(--secondary-color);
    padding: var(--spacing-base);
    display: block;
}

/* ============================================================
   RESPONSIVE NAVIGATION
   Adjustments for the navigation menu on smaller screens.
============================================================ */
/* Larger screens */
@media (min-width: 1200px) {

    .nav-menu {
        position: relative; /* Remove absolute positioning for large screens */
        flex-grow: 1;
        justify-content: flex-end;
    }


    .nav-toggle {
        display: none;
    }
    header {
        display: flex;
        align-items: center; /* Align items in the header */
        justify-content: space-between; /* Space between logo and nav menu */
        padding: 20px var(--padding-horizontal-large);
    }
}

   /* Styles for smaller screens */
@media (max-width: 1199px) {
    header {
        display: flex;
        justify-content: center;
        height: 90px; /* Adjust height for smaller header */
        align-items: center;
        padding: 20px var(--padding-horizontal-small);
    }
    .nav-toggle {
        display: block;
        position: absolute;
        right: 15px;
        cursor: pointer;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .nav-menu.is-active {
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: center;
        border-top: 2px solid #c0c0c0; /* Border for dropdown */
        position: fixed; /* Make it fixed to cover the whole screen */
        top: 90px; /* Height of the header */
        left: 0;
        right: 0;
        bottom: 0; /* Stretch to the bottom */
        overflow-y: auto; /* In case of scrolling */
        padding-top: 1rem; /* Padding at the top of the menu */
        background: rgba(0, 0, 0, 0.95);

    }
    .nav-item {
        font-size: 16px;
        padding: 1rem; /* Padding for touch targets */
        border-bottom: 1px solid #c0c0c0; /* Separator for items */
        text-align: left; /* Align text to the left */
    }
}
@media (min-width: 1199px) {
    .container{
        min-height: calc(100vh - 110px);
    }
}
/* ============================================================
   MAIN CONTENT STYLES
   Styles for the main content sections of the page.
============================================================ */
.container {
    min-height: calc(100vh - 90px);
    margin: auto auto;
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    align-items: center; /* Centers children horizontally */
    justify-content: center; /* Centers children vertically, useful if the container has a fixed height */
    text-align: center; /* Ensures text within children is also centered */
    gap: 1rem;
    max-width: min(1200px, 95vw);
    padding: calc(var(--padding-vertical-small),var(--padding-vertical-large)) calc(var(--padding-vertical-small),var(--padding-vertical-large));
    /* background: linear-gradient(to bottom, rgba(156, 156, 156, 0.1), rgba(0,0,0,0.2)); */
    color: var(--secondary-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* Additional styles for the buttons to ensure they're centered */
.container button, .container a {
    margin: 0 0;
}
/* Center the buttons and anchor tags within flex containers */
.service-description {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: #333;
    text-align: left;
    padding: 60px 20px;
}

.service-description h2,
.service-description ol li,
.service-description p {
    max-width: 800px;
    margin: 0 auto;
}

.service-description h2{
    margin-bottom: 2rem;
    text-align: center;
}

/* ============================================================
   FOOTER STYLES
   Styles for the footer section of the page.
============================================================ */
footer {
    font-size: var(--font-size-footer);
    font-family: var(--font-family-secondary);
    text-align: center;
    padding: 40px 0;
    background: var(--primary-color);
    color: var(--secondary-color);
}

@media (min-width: 1200px) {
    footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-column {
        width: calc(33.333% - 20px);
    }
}
/* ============================================================
   BUTTON STYLES
   General styles for buttons used throughout the page.
============================================================ */
.btn-cta, .signin-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    border: 2px solid #ffffff;
    color: #6200ea;
}

.btn-cta {
    background-color: #ffffff; /* White background for the call-to-action button */
}

.btn-cta:hover, .signin-button:hover {
    background-color: rgba(201, 0, 255, 0.4);
    color: #ffffff; /* Change text color to white on hover */
}

.signin-button {
    background-color: transparent; /* Transparent background for the sign-in button */
    color: #ffffff; /* White text color */
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   Media queries for adjusting layout and components on different screen sizes.
============================================================ */
@media (max-width: 1199px) {

    .service-description {
        padding: var(--padding-vertical-small) var(--padding-horizontal-small);
    }

    .service-description h2 {
        font-size: 1.8rem; /* Adjust the font size for smaller screens */
    }

    .logo-container {
        position: fixed;
        left: 10px;
        top: auto;
    }
}

@media (min-width: 1200px) {
    /* Adjustments for larger screens */
    .container {
        max-width: min(1200px, 95vw);
        display: flex;
        justify-content: center;
    }
     .service-description {
        padding: var(--padding-vertical-large) var(--padding-horizontal-large);
    }
}

/* ============================================================
   MISCELLANEOUS
   Other styles that don't fit into the above categories.
============================================================ */
/* Top fade is soft-disabled for now */
.top-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 5;
}

.soundwave-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-and-h2 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.logo-and-h2 h2 {
    margin: 0;
    padding: 0;
}

.search-and-sort{
    display: flex;
    padding: 8px 20px;
    gap: 8px;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 12px;
}
.searchBox{
    flex-grow: 7;
}
.sortBox{
    flex-grow: 1;
}
@media (max-width: 1200px) {
    .sortBox {
        flex-grow: 1;
    }
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
video.video-js,
video.vjs-tech {
    max-height: calc(40vh - 64px);
    position: relative !important;
    width: 100%;
    height: auto !important;
    max-width: 100% !important;
    padding-top: 0 !important;
    line-height: 0;
}

/* Ensuring full-screen functionality works by overriding any max-height with 'none' */
.video-js.vjs-fullscreen,
.video-js.vjs-fullscreen .vjs-tech,
.video-js.vjs-fullscreen .vjs-poster {
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
}

/* Fix the control bar due to us resetting the line-height on the video-js */
.vjs-control-bar {
    line-height: 1;
}


/* Keep the poster sizing consistent with the video
.vjs-poster {
    max-height: 100%;
}
 */
/* ============================================================
   Animations
============================================================ */

.lds-default,
.lds-default div {
  box-sizing: border-box;
}
.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  scale: 0.5;
}
.lds-default div {
  position: absolute;
  width: 6.4px;
  height: 6.4px;
  background: currentColor;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 36.8px;
  left: 66.24px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22.08px;
  left: 62.29579px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11.30421px;
  left: 51.52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7.36px;
  left: 36.8px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11.30421px;
  left: 22.08px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22.08px;
  left: 11.30421px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 36.8px;
  left: 7.36px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 51.52px;
  left: 11.30421px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62.29579px;
  left: 22.08px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66.24px;
  left: 36.8px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62.29579px;
  left: 51.52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 51.52px;
  left: 62.29579px;
}
@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}



/* ============================================================
   END OF STYLES
============================================================ */