/**
 * SNORLAX theme -
 * Johnathan Tiong Copyright 2025.12.12 
 * 
 * Hex Codes for Theme:
 * -----------------------
 * Body Highlight: #6096AA
 * Body Shadow: #113643
 * Main Body: #29738F
 * Belly: #F1E5D8
 * Paws/Feet: #CEC2B8
 */ 

body {
    background-color: #113643;
    background-image: url("../img/glow.png");
    background-repeat: repeat;
    background-position: center-top;
    background-attachment: fixed;
    font-family: 'Barlow', sans-serif;
    color: #F1E5D8;
}

code {
    font-size: 80%;
    background-color: #242424;
    padding: 5px;
    border-radius: 5px;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 0.75);
}

a {
    text-decoration: none;
    color: #ffcc00;
}
    a:hover {
        color: #b79300;
    }

/**
 * custom classes
 */
.container {
    padding: 0 15px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.text-author {
    color: #ff2020!important;
}

.text-project {
    color: #ffcc00!important;
}

.mainContent {
    padding-top: 72px;
}

.table-dark {
    background-color: #222222;
    --bs-table-bg: #222222;
}

.hero-brand {
    position: absolute;
    top: 0;
    left: 0;
    padding: 32px 7px 7px 7px;
    width: 200px;
    height: 200px;
    background-color: #111;
}

    .hero-brand::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -29px;
        width: 0;
        height: 0;
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-top: 30px solid #111;
    }

.bg-jtdark {
    background-color: #111;
}

.navbar-label {
    margin-left: 200px;
    color: #fff;
    text-decoration: none;
}

    .navbar-label:hover {
        text-decoration: none;
        color: #ffcc00;
    }

.navbar-label-mobile {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border: none;
}

.dropdown-menu {
    width: 100%;
}

.nav-social {
    text-align: right;
}

.sidebar {
    top: 199px;
    width: 200px;
    height: calc(100vh - 120px);
    border: 1px solid #444;
}

.nav-link {
	color: rgba(255, 255, 255, 0.6);
}
    .nav-link.active {
        color: #fff;
    }

.alert {
    z-index: 9999;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

/**
 * ===========================
 * Hero Logos (JT-Ring Logos)
 * ===========================
 */

@keyframes hero-logo-circle {
    100% {
        transform: rotate(1turn);
    }
}

.hero-logo {
    flex: 0 0 380px;
    height: 380px;
    background-repeat: no-repeat;
    background-image: url("../img/logo.svg");
    background-position: center 50%;
    -webkit-user-select: none;
    user-select: none;
}

.hero-logo-circles {
    width: 366px;
    height: 366px;
    margin: auto;
    position: relative;
    max-width: 100%;
}

.hero-logo-circle {
    position: absolute;
    left: 0;
    top: 0;
    animation: hero-logo-circle 1s linear infinite;
    will-change: transform;
    max-width: 100%;
}
    /**
     * move each ring at a different speed
     */
    .hero-logo-circle:nth-child(1) {
        animation-duration: 30s;
    }
    .hero-logo-circle:nth-child(2) {
        animation-duration: 40s;
    }
    .hero-logo-circle:nth-child(3) {
        animation-duration: 50s;
    }
    .hero-logo-circle:nth-child(4) {
        animation-duration: 60s;
    }
    .hero-logo-circle:nth-child(5) {
        animation-duration: 70s;
    }
    .hero-logo-circle:nth-child(6) {
        animation-duration: 80s;
    }
    .hero-logo-circle:nth-child(7) {
        animation-duration: 90s;
    }
    .hero-logo-circle:nth-child(8) {
        animation-duration: 100s;
    }
    .hero-logo-circle:nth-child(9) {
        animation-duration: 110s;
    }
    .hero-logo-circle:nth-child(10) {
        animation-duration: 120s;
    }

.hero-logo-icon {
    flex: 0 0 200px;
    height: 155px;
    background-repeat: no-repeat;
    background-image: url("../img/logo.svg");
    background-position: center 50%;
    background-size: 42px;
    -webkit-user-select: none;
    user-select: none;
}

.hero-logo-icon-circles {
    width: 150px;
    height: 150px;
    margin: auto;
    position: relative;
    max-width: 100%;
}

/**
 * end of hero logo stuff
 */
