/*
Theme Name: Nik Armbrüstr
Theme URI: https://fbbkeqyf.manus.space
Description: A custom WordPress theme for DJ Nik Armbrüstr
Version: 1.0
Author: Manus
Author URI: https://manus.ai
Text Domain: nik-armbrustr
*/

/* 
This is the main stylesheet for the WordPress theme.
The React application's styles are loaded separately.
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: #00FFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF00FF;
}

/* WordPress Core Styles */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.wp-caption {
    border: 1px solid #121212;
    background-color: #121212;
    padding: 5px;
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    margin: 0;
    padding: 5px;
}

.sticky {
    background-color: #121212;
    padding: 15px;
}

.gallery-caption {
    font-size: 14px;
}

.bypostauthor {
    font-weight: bold;
}

/* Admin Bar Adjustments */
.admin-bar #app-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #app-header {
        top: 46px;
    }
}

/* Loading State */
.loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 4px solid #00FFFF;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

