/* 
Theme Name: Kitty Pantera Art
Theme URI: 
Author: Kitty Pantera
Author URI: http://kittypantera.art
Description: I hope this works out! C:
Version: 1.0
*/


/* Desktop styles*/

/* =====================================
   General Styles
===================================== */
body {
    background-color: #2e1f3f;
    margin-left: 25%; /* Adjusted for the sidebar */
    font-family: 'Press Start 2P';
    color: #40e0d0;

    /* Default Cursor */
    cursor: url('..css/images/website-cursor.png'), auto !important;
	cursor: url('..css/images/website-pointer.png'), pointer !important;
}


html {
    cursor: url('..css/images/website-cursor.png'), auto !important;
    cursor: url('..css/images/website-pointer.png') pointer !important;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Data 70', sans-serif;
    color: #decaff;
}

/* Paragraph Styling */
.site-main p {
  	font-family: 'Press Start 2P', serif;
    border: 1px solid #7200ff;
    border-radius: 5px;
    padding: 15px;
}

p a {
    color: #decaff;
    text-decoration-line: none;
}

p a:hover {
    color: #40e0d0;
}

/* Single Content (Posts) */
.single-content {
    margin-left: 20%;
    margin-right: auto;
    max-width: 800px;
    padding: 20px;
    border-radius: 5px;
    border-color: #7200ff;
    border-width: 5px;
}

/* =====================================
   Site Header Styling
===================================== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #2e1f3f;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-logo {
    position: fixed;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
    height: auto;
    z-index: 101;
    transition: opacity 0.3s ease;
}

a:hover .site-logo {
    opacity: 0.8;
}

/* =====================================
   Sidebar 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;
}

/* Grid Layout for Sidebar Links */
.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;
}

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

/* =====================================
   Footer Styling
===================================== */
.site-footer {
    color: #ffffff;
    padding: 20px 10px;
    font-size: 14px;
    border-top: 2px solid #decaff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-right {
    flex: 1;
}

.footer-left .footer-image {
    width: 75px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-left .footer-image:hover {
    transform: scale(1.1);
}

.footer-center {
    flex: 1;
    text-align: center;
    color: #40e0d0;
}

/* =====================================
   Responsive Styles
===================================== */
@media (max-width: 768px) {
    body, main {
        margin-left: 150px; /* Adjusts for smaller nav */
    }

    .side-nav {
        width: 35%;
        padding-top: 5%;
    }

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

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

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

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

    .comic-sidebar {
        width: auto;
    }
}

/* Force cursor on all elements */
* {
    cursor: url('..css/images/website-cursor.png'), auto !important;
}

/* Override any inline or block-specific styles */
[style*="cursor"] {
    cursor: url('..css/images/website-cursor.png') !important;
}

/* Specific targeting for WordPress blocks */
.wp-block *,
.wp-block {
    cursor: url('..css/images/website-cursor.png'), auto !important;
}

