/*
Theme Name:   kittypanteraartchild
Theme URI:    http://example.com/my-child-theme/
Description:  A child theme of the Parent Theme.
Author:       Kitty Pantera
Author URI:   kittypantera.art
Template:     /kittypanteraart
/*Version:      1.0
*/
@import url('../kittypanteraart/style.css');
/* =====================================
   General Styles
===================================== */
body {
    font-family: Press Start 2P, serif; 
    margin-left: 15%;
    padding: 0;
    background-color: #2e1f3f; /* Default background */
    color: #decaff; /* Default text color */
}

/* Reusable Utility Classes */
.border {
    border: 1px solid #decaff;
    border-radius: 5px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spacing {
    margin: 20px;
    padding: 15px;
}

/* =====================================
   Side Navigation Styling
===================================== */
.side-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 346px;
    height: 68%;
    background: url('../kittypanteraart/css/images/nav-background.png') no-repeat center center;
    background-size: contain;
    display: grid;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 3%;
    padding-top: 5%;
    box-sizing: border-box;
}

.side-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li {
    margin: 0;
    padding: 0;
    text-align: center;
}

.side-nav a img {
    display: block;
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 0;
    transition: transform 0.3s ease;
}

.side-nav a:hover img {
    transform: scale(1.1);
}

/* Tooltip Styling */
.side-nav a {
    position: relative;
}

.side-nav a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffccf9;
    color: #5a2277;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 105;
}

/* Custom Cursor */
.side-nav, .side-nav a {
    cursor: url('../kittypanteraart/css/images/eyedrop-cursor.png'), auto;
}

/* Tooltip Hover Effect */
.side-nav a:hover::after {
    opacity: 1;
    transform: translateX(-30%) translateY(30px);
}

/* =====================================
   Single Comic Styles
===================================== */
/* Wrapper for Comic Page */
.comic-wrapper {
    display: flex;
    margin-bottom: 20px;
    margin-top: 5%;
}

.comic-image img {
    width: 100%;
    height: auto;
    max-width: 800px;
}

/* Sidebar on the Right */
.comic-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    width: 450px;
    padding: 15px;
    background: #1e1e2f;
    border: 1px solid #decaff;
    border-radius: 5px;
    margin-left: 20px;
}

/* Spotify Embed Section */
.spotify-embed iframe {
    display: block;
    width: 420px;
    border: none;
    margin-bottom: 20px;
}

/* Navigation Buttons */
.comic-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.comic-navigation img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.comic-navigation img:hover {
    transform: scale(1.1);
}

/* =====================================
   Responsive Styles
===================================== */
@media (max-width: 768px) {
    .side-nav {
        width: 35%;
        background-size: contain;
        padding-top: 5%;
    }

    .side-nav ul {
        height: 400px;
        margin-top: 40%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .side-nav a img {
        width: 90%;
    }

    .site-logo {
        max-width: 100px;
    }

    .custom-sidebar {
        margin-left: 0;
    }

    .comic-sidebar {
        width: auto;
    }
}
.press-start-2p-regular {
  font-family: "Press Start 2P", serif;
  font-weight: 400;
  font-style: normal;
}
