/* General Page Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000000;  /* Black background */
    background-image: url('/images/blue-skies.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    color: #e0e0e0;  /* Light gray text */

}

  /* Gist Background and Text Colors */
  .gist .gist-file {
    background-color: #1e1e1e !important;  /* VS Code dark background */
    color: #d4d4d4 !important;            /* VS Code default text color */
  }

  .gist .gist-meta {
    background-color: #252526 !important;  /* Darker meta section */
    color: #d4d4d4 !important;             /* Meta text color */
  }

  /* Code Block Colors */
  .gist .blob-code {
    background-color: #1e1e1e !important;  /* Match dark background */
    color: #d4d4d4 !important;             /* Default code text color */
  }

  /* Syntax Highlighting (Colors from VS Code) */
  .gist .blob-code-inner {
    color: #d4d4d4 !important;             /* Default text */
  }

  .gist .blob-code-inner .pl-k {           /* Keywords (e.g., function, return) */
    color: #569cd6 !important;
  }

  .gist .blob-code-inner .pl-s {           /* Strings */
    color: #ce9178 !important;
  }

  .gist .blob-code-inner .pl-c {           /* Comments */
    color: #6a9955 !important;
  }

  .gist .blob-code-inner .pl-ent {         /* Entities (e.g., classes, constants) */
    color: #4ec9b0 !important;
  }

  .gist .blob-code-inner .pl-pds {         /* Punctuation */
    color: #d4d4d4 !important;
  }

  /* Adjust Line Numbers (if shown) */
  .gist .blob-num {
    color: #858585 !important;             /* Line numbers color */
    background-color: #1e1e1e !important;  /* Same dark background */
  }

  /* Adjust Links and Other Interactive Elements */
  .gist a {
    color: #3794ff !important;             /* Blue for links */
  }

  /* Scrollbar Colors */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #4e4e4e;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-track {
    background-color: #1e1e1e;
  }

.header-title {
    font-family: "Audiowide", sans-serif;
    min-width: 360px;
}

header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #ffffff;  /* White */
  }
  
  header p {
    font-size: 1.2em;
    color: #b0b0b0;  /* Light gray */
  }

h1 {
    font-family: 'AudioWide', sans-serif;
    background-color: #000000;
    padding: 0 5px 3px 5px;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 32px;
    letter-spacing: 2px;
    margin: 20px 0 10px;
    border: 1px #000000 solid;
    border-radius: 5px;
}

h1, p, #shot .title::before {
    font-weight: 500;
}

p, #shot .title::before {
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.banner-image {
    width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline-block whitespace */
}

.description {
    padding-top: 25px;
    padding-left: 10px;
    padding-right: 10px;
    
}

#shot {
    width: 700px;
    margin: auto;
    position: relative;
    padding-bottom: 100px;

}
#shot img {
      max-width: none !important;
      width: 100% !important;
      height: 400px !important;
      object-fit: cover !important;
}

#shot .card {
    width: 100%;
    height: 100%;
    /*border: 1px #46bef5 solid;*/
    border-radius: 5px;
    background-color: #111;
}
#shot .card #component {
    font-family: 'Rajdhani', sans-serif;
    padding: 30px;
}

#shot .options {
    width: 200px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    right: -220px;
}
#shot .options button {
    height: 40px;
    padding: 0 10px;
    margin: 0 10px 15px 0;
    border: 2px #111 solid;
    outline: 1px #ffffff solid;
    background-color: transparent;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
    transition: 300ms all ease-out;
}
#shot .options button:hover, #shot .options button:focus, #shot .options button.active {
    background-color: rgba(70, 96, 245, 0.5);
}
#shot .options button.active {
    border: 2px #46bef5 solid;
    background-color: #46bef5;
    color: #111111;
}

.yt {
    position: relative;
    width: 100%;
    margin: auto; /* Center the container */
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.yt iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


header {
    height: 200px;
    width: 100%;
    position: absolute;
    text-align: center;
    margin: 0;
    top: 0;
    background-color: #111;
}

header p {
    margin: 0;
    font-size: 1.2em;
}


footer p {
    opacity: 0.3;
    margin: 0;
    font-size: 0.6em;
}

.tag-container {
    font-family: "Audiowide", sans-serif;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto;
  }

  a {
    text-decoration: none;
  }
  
  .tag {
    display: flex;
    align-items: center;
    background-color: #000000;
    color: #c4c2c2;
    border-radius: 3px;
    border: 1px solid #838282;
    transition: 0.5s;
    padding: 5px 10px;
    margin: 5px;
  }

  .tag:hover {
    background-color: #161616;
  }
  
  .tag span {
    margin-right: 10px;
  }

  .footer-banner {
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    color: #DDDDDD;
    background-color: #000000;
    border-top: 1px solid #555555;
    text-align:center;
    padding:10px;
    bottom: 0;
    width: 100%;
    z-index: 0;
    font-size: 14px;
  }

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .banner-image,
    #shot {
        width: 100%;
    }

    #shot .options {
        right: -210px;
    }
}

.ql-align-center {
    text-align: center;
}

.ql-size-huge {
    font-size: 64px;
}

.ql-size-small {
    font-size: 12px;
    color: #999999;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
        margin: 15px 0 8px;
    }

    .banner-image,
    #shot {
        width: 100%;
    }

    #shot .options {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    #shot .options button {
        margin: 5px 0;
        width: 90%;
    }

    header {
        height: 150px;
    }

    footer p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    h1 {
        font-size: 24px;
        margin: 10px 0 5px;
    }

    #shot .options button {
        font-size: 12px;
    }

    header {
        height: 100px;
    }

    footer p {
        font-size: 0.6em;
    }
}

.custom-file-upload {
    display: inline-block;
    cursor: pointer;
}

#title-image-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}
