/* 
    DEFAULT.CSS 
    Default stylesheet for Dark - Light Theme
    default.css
        dark.css
        light.css

1: PRIMARY ELEMENTS
    -html
    -body
    -header
    -footer
*/

/* NEW ADDITIONS */
.page-title {
    text-shadow: 0px 0px 2px #000;
}
.big-nav {
    padding: 5px;
    box-shadow: 2px 2px 4px #000;
    border-radius: 8px;
}
.software-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
}

.software-list li {
    font-weight: bold;
    margin: 10px 20px;
    list-style-type: none;
    transition: color 0.3s ease;
}
.software-list li:hover {
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
.software-list li {
    margin: 5px 10px;
    }
}

@media (max-width: 480px) {
.software-list li {
    margin: 5px;
    font-size: 14px;
    }
}

iframe {
    border-radius: 8px;
}

#title:hover {
    background-image:url("http://www.seaverns.com/wp-content/uploads/2024/12/billboard_2024_textured.png");
}
/* END NEW ADDITIONS */
* {
    margin: 0;
    padding: 0;
}
html, body {
    font-family: 'Oswald', sans-serif;
    height: 100%;
}

/* HEADER & FOOTER */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    box-shadow: 0px 0px 4px #000;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    box-shadow: 0px 0px 4px #000;
}
footer p {
    padding: 5px;
}

/*
2: TEXT DISPLAY
    -p
    -pre
    -code
    -more
    -tagline
    -text-muted
*/

p {
     margin-left: 10px;
}

pre,
.more
.tagline,
.text-muted {
    color: #666;
}
.more:hover {
    color: #fff;
}

code {
    color: #000;
}

/*
3: HEADINGS
    -h1 h2
    -h3 -h4 -h5
*/
h1, h2 {
    font-weight: 900;
    text-shadow: 1px 1px 2px #000;
}

h3, h4, h5 {
    font-weight: 900;
}

/*
4: HYPERLINKS
    -a
*/
a {
    text-decoration: none !important;
}

/* LISTS */
li {
    padding: 2px;
}

/* IMAGES */
img {
    border-radius: 8px;
}
.med-image {
    width: 300px;
    height: 300px;
}
.sm-image {
    width: 200px;
    height: 200px;
}
.th-image {
    width: 100px;
    height: 100px;
}

/* FORMS */
form {
    padding: 10px;
}

label {
    color: #000;
}

/* DECORATION */
hr {
    height: 5px;
    width: 100%;
    border: none;
    background-size: 200% 100%;
    animation: kitt-effect 3s infinite alternate;
    opacity: 0.8;
}
    @keyframes kitt-effect {
    0% {
        background-position: 100% 0; /* Start from the far right */
    }
    50% {
        background-position: 0% 0; /* Move to the far left */
    }
    100% {
        background-position: 100% 0; /* Return to the far right */
    }
}



/* CLASSES */

/* CONTENT STYLES */
.container {
    margin-top: 70px !important;
    height: calc(100% - 60px);
    overflow-y: auto;
    max-width: 95%;
    padding: 10px;
    border-radius: 8px;
}

.featured-section {
    max-width: 99%;
    margin-top: 10px;
}

/* TITLES AND SUBTITLES */
.AppTitle {
    font-size: 42px;
    font-weight: 900;
    padding-left: 10px;
    text-shadow: 2px 2px 4px #000;
}

.AppTitle:hover {
    box-shadow: 2px 0px 4px #000;
    padding-right: 10px;
    background-size: 200% 100%;
    background-position: 100% 0;
    animation: kitt-effect 3s infinite alternate;
    transition: opacity 0.5s ease-in;
    opacity: 0.8;
}

@keyframes kitt-effect {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.AppTagline {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center !important;
    text-shadow: 1px 1px 2px #000;
}

/* INFO BLOCKS */
.infoBlock {
    padding: 10px;
    border-radius: 12px;
    padding-bottom: 50px;
}
.info {
    margin: 10px;
    color: #a0a0a0;
}
.code-block {
    border-radius: 5px;
    font-family: monospace;
    padding: 15px;
    margin-bottom: 15px;
}

/* BUTTONS */
.copy-button {
    margin-left: 95%;
}

/* LINK STYLES */
.more {
    font-style: italic;
}

/* IMAGE DISPLAY */
.med-image {
    max-width: 500px;
}
.sm-image {
    max-width: 200px;
}
.th-image {
    max-width: 80px;
}

/* WIDGETS */
.widget {
    max-width: 300px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}
.image-widget {
    max-width: 300px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 2px 2px 4px #000;
}

/* CARD DISPLAY */
.card {
    opacity: 0.7;
    transition: opacity 0.3s ease-in;
}
.card:hover {
    opacity: 1;
}

/* ID'S */
#toggle {
    margin: auto;
}

/* SCROLLBARS */
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 5px;
}
::-webkit-scrollbar-corner {
  background-color: transparent;
}