
/* Ensure Poppins font is imported */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


body {
    /*
    font-family: 'Roboto', sans-serif;
    background-color: #131517;
    */
    background-color: #0a0f1a; /* Darker color with a bluish tint */
    font-family: 'Poppins', sans-serif;
    /*background-color: #111111;*/
    color: #e8e8e8;
}



.navbar {
   
}

/* Make the navbar-toggler (menu icon) white */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* Change the border color to white with transparency */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

a.nav-link {
    color: #e8e8e8;
}

a.nav-link:hover {
    color: #00aaff;
}

h2, h3, h4 {
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
}

h5 {
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

/* Apply to the h1 element */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px; /* Larger text size */
    font-weight: 700; /* Bold */
    line-height: 1.2; /* Adjust line height for readability */
}


footer {
    
    color: #7a7e84;
    padding: 1.5rem;
}


/* Parallax Section Styling */
.parallax-divider {
    /*background-attachment: fixed;*/
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain; /* Ensures the full width of the image is shown */
    height: 400px; /* Adjust based on your preference */
    position: relative;
}

.parallax-divider.moving {
    background-position: center center;
    transition: background-position 0.3s ease-out;
}














.parallax-container {
    position: relative;
    overflow: hidden;
    height: 400px; /* Adjust as needed */
}

.parallax-image {
    width: 100%; /* Ensure full image width is shown */
    height: auto; /* Ensure the image scales proportionally */
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(0); /* This helps performance */
}


/* Disable parallax and adjust height on mobile */
@media (max-width: 768px) {
    .parallax-container {
        background-attachment: scroll; /* Disable fixed attachment */
        height: auto; /* Adjust height for mobile */
        min-height: 200px; /* Set a reasonable minimum height for mobile */
    }

    .parallax-image {
        position: relative;
        height: auto; /* Ensure image fits the container */
        transform: none; /* Remove the parallax effect */
    }
}











.accordion-button {
    background-color: #2c2c2c;
    color: #e8e8e8;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #00aaff;
}

.accordion-body {
    background-color: #2c2c2c;
    color: #e8e8e8;
}

pre {
    border-radius: 5px;
    background-color: #2e2e2e;
    color: #f8f9fa;
    padding: 10px;
}


.card {
    background-color: #000000;
    border-color: #00aaff;
    border: 1;
    color: white;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: #00aaff;
}

.card-text {
    color: #cccccc;
}

.card-text-small {
    font-size: 12px;
    color: #cccccc;
}


.gradient-text-old {
    font-weight: bold;
    background: linear-gradient(to right, #6ef9dd, #b404f9);
    -webkit-background-clip: text;
    color: transparent;
}

.gradient-text {
    font-weight: bold;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    -webkit-background-clip: text;
    color: transparent;
}

.gradient-text-new {
    font-weight: bold;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
}

.gradient-text-new:hover {
    background-position: right;
}

.gradient-text-info {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #d6d6d6, #e0e0e1, #babfc3, #00aaff, #cc99ff);
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
    font-size: 2.25rem; /* Make the bold text even larger */
    font-weight: 100; /* Bold weight */
}

.gradient-text-info:hover {
    background-position: right;
}

.list-group {
    margin-left: 200px;  /* Adds a left margin of 100px */
    width: 60%;  /* Reduces the width to 75% */
}

.list-group-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* Make the bold text even larger */
    font-weight: 100; /* Bold weight */
}

.list-group-activity {
    margin-left: 10%;  /* Adds a left margin of 100px */
    margin-right: 10%;
    border-radius: 5px;
    border: 1px solid #e31a8cff; /* Subtle border */
}


.list-group-git {
    margin-left: 0; /* Reset margin to align with layout */
    width: 100%; /* Full width for git viewer */
    background-color: #1e2124; /* Consistent dark background */
    border: 1px solid #2c2f33; /* Subtle border */
    border-radius: 5px;
    font-size: 0.8rem;
}

ul.list-group-git {
    display: block;
    list-style-type: '>';
    /*margin-block-start: 1em;*/
    /*margin-block-end: 1em;*/
    padding-inline-start: 15px;
    unicode-bidi: isolate;
}

.repo-list {
    /*list-style-type: '*';*/
    padding-inline-start: 15px;
}

.list-group-git .list-group-item-git {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem; /* Smaller default size for git viewer lists */
    font-weight: 400; /* Normal weight */
    background-color: #1e2124; /* Match group background */
    border-color: #2c2f33; /* Consistent border */
    /* padding: 8px 10px;  Reduced padding */
    padding-left: 8px;
    padding-top: 8px;
    padding-right: 0px;
    padding-bottom: 8px;
    color: #e8e8e8;
    transition: background-color 0.2s ease;
}

.list-group-git .list-group-item-git:hover {
    background-color: #2c2f33;
    color: #00aaff;
}

/* Optionally, customize font for strong/bold text */
strong {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem; /* Make the bold text even larger */
    font-weight: 100; /* Bold weight */
    color: #00aaff;
    
}

.strong2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.0rem; /* Make the bold text even larger */
    font-weight: 600; /* Bold weight */
    
}

.strong3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem; /* Make the bold text even larger */
    font-weight: 600; /* Bold weight */
    
}

strong4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem; /* Make the bold text even larger */
    font-weight: 100; /* Bold weight */
    color: #00aaff!important;
}

/* Styles for mobile devices */
@media (max-width: 768px) {
    .list-group {
        margin-left: 0;  /* Remove margin on mobile */
        width: 100%;  /* Full width on mobile */
    }

    .list-group-item {
        font-size: 1.5rem; /* Smaller text size on mobile */
    }

    strong {
        font-size: 1.5rem; /* Smaller text size on mobile */
    }

    .strong2 {
        font-size: 1.5rem; /* Smaller text size on mobile */
    }

    .gradient-text-info {
        font-size: 1.5rem; /* Smaller text size on mobile */
    }
}

.btn-primary {
    background-color: #00aaff;
    border: none;
}

.btn-secondary {
    background-color: #555555;
    border: none;
}

.btn:hover {
    opacity: 0.8;
}

.btn-primary {
    background-color: #00aaff;
    border: none;
    
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #007acc; /* Darker blue on hover */
}

/* Options Section Container */
.options-section {
    
    justify-content: space-between;
    
}

.option-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    z-index: -1; /* Place it behind the content */
    padding: 2px; /* Thickness of the gradient border */
    border-radius: 8px; /* Match the border radius of the container */
    box-sizing: border-box; /* Ensure padding works as border */
}
.option-item {
    padding: 20px;
   
    position: relative;
    border-radius: 8px;
    flex: 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* Hide the gradient overflow */
}

.option-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    z-index: -1; /* Place it behind the content */
    padding: 2px; /* Thickness of the gradient border */
    border-radius: 8px; /* Match the border radius of the container */
    box-sizing: border-box; /* Ensure padding works as border */
}

.option-item::after {
    content: '';
    position: absolute;
    top: 3px; /* Adjust based on padding */
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #0a0f1a; /* Inner background to create the border effect */
    border-radius: 6px; /* Slightly smaller radius to reveal the gradient */
    z-index: -1;
}

.option-item::after {
    content: '';
    position: absolute;
    top: 3px; /* Adjust based on padding */
    left: 3px;
    right: 3px;
    bottom: 3px;
    
    border-radius: 6px; /* Slightly smaller radius to reveal the gradient */
    z-index: -1;
}

.option-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.option-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Styling for the buttons */
.btn-primary {
    background-color: #00aaff;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #007acc; /* Darker blue on hover */
}

.text-mut {
    color: #7f8e9e;
}


.borderless {
    
}


/* Flashy input group styling */
.flashy-input-group {
    display: flex;
    align-items: center;
}

.license-input {
    font-size: 0.8rem; /* Smaller font size */
    background: linear-gradient(135deg, #007BFF, #f06b6b); /* Gradient background */
    color: white; /* White text for contrast */
    border: 2px solid #ccc;
    padding: 10px; /* More padding for better visual effect */
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing effect */
}

/* Add a glow effect on hover or focus */
.license-input:hover, .license-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing effect */
    border-color: #fff;
}

.stargit-primary {
    background: #f06b6b; /* Green color */
    border-color: #ffffff;
    color: white;
    padding: 8px 12px; /* Padding for button */
    border-radius: 8px; /* Match input field */
    transition: background 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing effect */
}

.stargit-primary:hover {
    background: #552626; /* Darker green on hover */
}

/* Flashy button styling with icon */
.stargit-primary i {
    font-size: 1.2rem;
}

/* Used on licensing page */
.form-row-small {
    display: flex;
    align-items: center; /* Center vertically */
    font-size: 0.8rem;
    justify-content: center; /* Center horizontally */
}

.form-label-small {
    margin-right: 10px; /* Adjust as needed */
}

.muted-custom {
    color: #6d7a88; /* A darker gray that stands out more */
}

.small-text {
    font-size: 0.8rem; /* Smaller text size using Bootstrap's rem scale */
}

.extra-small-text {
    font-size: 0.6rem; /* Smaller text size using Bootstrap's rem scale */
}

.btn-primary-small {
    background-color: #00aaff;
    border: none;
    color: white;
    padding: 0px 10px;
    font-size: 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    max-width: 95px; /* Adjust the width as needed */
    height: 25px; /* Adjust the height as needed */
}

.btn-primary:hover {
    background-color: #007acc; /* Darker blue on hover */
}

.subscribe{
    width: 400px;
    height: 75px;
}

.muted-custom-small{
    color: #6d7a88; /* A darker gray that stands out more */
    font-size: 0.8rem;
}

.custom-alert {
    background-color: #210d0d; /* Light red for a softer look */
    border-radius: 5px; /* Rounded corners for better aesthetics */
    padding: 20px; /* Increased padding for more space inside the alert box */
    border: 1px solid #e24646; /* Subtle border to distinguish it from background */
}

/* success page */

.blue-list-group {
    background-color: #2980b9; /* Light blue background */
    color: #f0f8ff;
    border-radius: 5px;
}

.blue-list-group .list-group-item {
    background-color: transparent; /* Transparent background for items */
    
    background-color: #2980b9; /* Light blue background */
    color: #f0f8ff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.blue-list-group .list-group-item:hover {
    background-color: #e0f7fa; /* Lighter shade on hover */
    color: #2980b9;
}

.blue-list-group .list-group-item.active {
    background-color: #bdc3c7; /* Slightly darker shade for active item */
    color: white;
}


.pre-release-notice {
    background: linear-gradient(45deg, rgba(0, 170, 255, 0.3), rgba(204, 153, 255, 0.3)); 
    
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    
    margin-left: auto;
    margin-right: auto;
}

.pre-release-notice strong {
    color: #00aaff;
    font-weight: 700;
}

.pre-release-notice a {
    color: #ff66cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.pre-release-notice a:hover {
    color: #cc99ff;
    text-decoration: underline;
}

.icon-btn {
    font-size: 16px; /* or 8px if you want smaller icons */
    padding: 0px 4px;
    border: none;        /* removes button border */
    outline: none;       /* removes default focus outline */
    box-shadow: none;    /* removes any focus shadow */
}

.icon-btn:focus {
    outline: none;
    box-shadow: none;    /* removes the blue/gray focus glow */
}

.git-layout {
    flex: 1;
    display: flex;
    overflow: hidden;
    min-height: 0; /* important for flex children like canvas */

    /*
    display: flex;
    flex: 1;
    flex-direction: row;
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    flex-grow: 1; 
    min-height: 0; 
    */
}

#left-panel {
    width: 20%;
    overflow-y: auto;
    /*min-width: 150px;
    max-width: 400px;*/
}

#center-panel {
    flex-grow: 1;
    overflow: hidden;
    min-width: 200px;
}

#right-panel {
    width: 25%;
    overflow-y: auto;
    min-width: 250px;
}

.splitter {
    width: 4px;
    background-color: #333;
    cursor: col-resize;
    user-select: none;
}
.splitter:hover {
    background-color: #555;
}

#git-graph {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    display: block; /* removes inline spacing */
}

@media (max-width: 768px) {
    .git-layout {
        flex-direction: column; /* stack vertically */
        height: auto; /* allow height to grow */
    }

    #left-panel,
    #center-panel,
    #right-panel {
        width: 100% !important;
        /*height: auto;*/
    }

    .splitter {
        width: 100%;
        height: 5px;
        cursor: row-resize;
    }

    /* Optional: collapse left panel into dropdown */
    #left-panel.collapsed {
        display: none;
    }
}

.gutter-zero {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.padding-zero {
    padding: 0 !important;
}

.margin-zero {
    margin: 0 !important;
}

.zero-padding {
    padding: 0 !important;
}

.zero-margin {
    margin: 0 !important;
}


.icon-btn img {
    transition: opacity 0.15s ease;
}
.icon-btn img.hover {
    display: none;
}
.icon-btn:hover img.default {
    display: none;
}
.icon-btn:hover img.hover {
    display: inline;
}

.fullscreen-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: #000; /* optional */
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at bottom, #0a0f1a 0%, #000 100%);
}

.centered {
  max-width: calc(100% - 40px); /* full width minus left+right margins */
  margin: 0 auto;               /* centers the div horizontally */
  padding: 0 20px;              /* 20px padding inside div for spacing */
  text-align: center;           /* optional: centers inline content */
}