/* Hide vertical scrollbar */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Fix the UL element - this is the problem! */
.nav.navbar-nav,
ul.nav.navbar-nav {
    border: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
}

.nav.navbar-nav::after {
}

/* Fix LI elements height to prevent gray stripe */
.navbar-nav > li,
.navbar-right > li {
    min-height: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
}

.navbar-nav > li > a,
.navbar-right > li > a {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 30px !important;
}

/* Reset body padding */
body {
    padding-top: 50px !important;
    overflow-x: hidden !important;
}

.container {
    overflow-x: hidden !important;
}

/* Hide the green sidebar navigation */
.bs-sidebar {
}

/* Make main content full width */
.col-md-9 {
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Hide site name in navbar on desktop, show on mobile */
.navbar-brand {
    color: #000000 !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    padding: 10px 15px !important;
}

/* Yellow first letters */
.navbar-brand .first-letter {
    color: #ffff00 !important;
}

/* Hide navbar-brand on desktop, show only on mobile */
.navbar-brand {
    display: none !important;
}

@media (max-width: 767px) {
    .navbar-brand {
        display: block !important;
    }
}

/* Make mobile hamburger button bigger */
.navbar-toggle {
    min-height: 50px !important;
    padding: 15px !important;
    margin: 0 !important;
    border: 2px solid #000000 !important;
    background-color: #000 !important;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background-color: #c0c0c0 !important;
}

/* Style the hamburger icon bars */
.navbar-toggle .icon-bar {
    display: block !important;
    width: 22px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background-color: #c0c0c0 !important;
    margin: 4px 0 !important;
}

.navbar-toggle:hover .icon-bar,
.navbar-toggle:focus .icon-bar {
    background-color: #000 !important;
}

/* Artist title - hidden (causes alignment issues) */
.artist-title {
    display: none !important;
}

/* Simple page title */
.page-title {
    text-align: center;
    font-size: 48px;
    margin: 40px 0 10px 0;
}

.page-subtitle {
    text-align: center;
    font-size: 28px;
    margin: 0 0 30px 0;
}

.artist-title h1 {
    color: inherit;
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

.artist-title p {
    color: inherit;
    font-size: 24px;
    margin: 10px 0;
}

.artist-title h2 {
    color: inherit;
    font-size: 28px;
    margin: 0;
    font-weight: normal;
}

/* Show artist title only on desktop (above 768px) */
@media (min-width: 768px) {
    .artist-title {
        display: block;
    }
}

/* Remove borders from navbar */
.navbar,
.navbar-default,
.navbar-fixed-top {
    border: none !important;
    box-shadow: none !important;
}

/* Fix active and hover states */
.navbar-nav > li.active,
.navbar-nav > li.active > a,
.navbar-nav > li > a:hover {
    border: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* Hide original footer content */
footer center a[href*="mkdocs.org"],
footer center a[href*="BOOTSTRA.386"],
footer center a[href*="kristopolous"] {
}

/* Footer text - same size as body text */
footer center {
    color: inherit;
    font-size: inherit;
}

/* Footer links styling */
footer center a {
    color: #c0c0c0 !important;
    text-decoration: underline;
    font-size: inherit;
}

footer center a:hover {
    background: none !important;
    color: #ffffff !important;
}

/* Hero Image */
.hero-image {
    text-align: center;
    margin: 60px 0 30px 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border: 3px solid #c0c0c0;
    display: inline-block;
}

/* Image Slider */
.image-slider {
    margin: 30px auto 30px auto;
    border: 3px solid #c0c0c0;
    background: #c0c0c0;
    padding: 0.5em;
    display: inline-block;
    max-width: 100%;
}

.slider-container {
    position: relative;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
    background: #c0c0c0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center the slider wrapper */
.image-slider {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.slider-image {
    position: relative;
    max-width: 100%;
    max-height: 600px;
    height: auto;
    width: auto;
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.slider-image.active {
    display: block;
}

.slider-controls {
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.slider-btn {
    background: #c0c0c0;
    color: #000;
    border: none;
    padding: 8px 20px;
    font-size: inherit;
    cursor: pointer;
}

.slider-btn .first-letter {
    color: #ffff00;
}

.slider-btn:hover {
    background: #000;
    color: #fff;
}

.slider-btn:hover .first-letter {
    color: #fff;
}

.slider-counter {
    font-size: inherit;
    color: #000000;
    
    font-weight: bold;
    min-width: 80px;
    display: inline-block;
}

/* Contact Form */
.contact-form {
    margin-top: 30px;
    max-width: 500px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: inherit;
}

.contact-form .form-input {
    width: 100%;
    padding: 10px;
    background: #fff;
    color: #333;
    border: none;
    font-family: inherit;
    font-size: inherit;
    box-sizing: border-box;
}

.contact-form .form-input::placeholder {
    color: #999;
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-submit-btn {
    background: #c0c0c0;
    color: #000;
    border: none;
    padding: 10px 30px;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
}

.contact-form .form-submit-btn .first-letter {
    color: #ffff00;
}

.contact-form .form-submit-btn:hover {
    background: #000;
    color: #fff;
}

.contact-form .form-submit-btn:hover .first-letter {
    color: #fff;
}

/* Fix h2 white-space causing alignment issues */
h2 {
    white-space: normal !important;
}

/* Yellow first letter for headings (except on privacy page) */
h1::first-letter,
h2::first-letter,
h3::first-letter {
    color: #ffff00 !important;
}

/* Disable yellow first letter on privacy page */
body.no-yellow-letters h1::first-letter,
body.no-yellow-letters h2::first-letter,
body.no-yellow-letters h3::first-letter {
    color: inherit !important;
}

/* Remove brackets from h3 headings */
h3::before,
h3::after {
    content: none !important;
}

/* Fix navbar menu alignment */
.navbar-nav {
    float: left !important;
    margin: 0 !important;
}

.navbar-nav > li {
    float: left !important;
}

/* Hide sidebar column completely */
.col-md-3 {
    display: none !important;
}

/* ===========================================
   NEW STABLE CONTENT STRUCTURE
   =========================================== */

/* Content wrapper - contains all content safely */
.content-wrapper {
    display: block;
    width: 100%;
    overflow: hidden;
}

/* Intro text */
.intro-text {
    display: block;
    margin-bottom: 1em;
}

.intro-text span {
    display: inline;
}

/* Page header block */
.page-header-block {
    display: block;
    text-align: center;
    margin: 40px 0 30px 0;
}

.page-header-block .page-title {
    display: block;
    font-size: 36px;
    text-transform: uppercase;
    margin: 0;
}

.page-header-block .page-title::first-letter {
    color: #ffff00;
}

.page-header-block .page-subtitle {
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    margin: 10px 0 0 0;
}

.page-header-block .page-subtitle::first-letter {
    color: #ffff00;
}

/* Text sections */
.text-section {
    display: block;
    margin-bottom: 1.5em;
}

.section-title {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    color: #c0c0c0;
}

.section-title::first-letter {
    color: #ffff00;
}

.subsection-title {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    color: #c0c0c0;
}

.subsection-title::first-letter {
    color: #ffff00;
}

.section-text {
    display: block;
    margin: 0;
}

/* Mobile: mehr Abstand wegen breiterem Menü */
@media (max-width: 767px) {
    body {
        padding-top: 90px !important;
    }
}

/* Hamburger icon-bars nach links */
.navbar-toggle .icon-bar {
    margin-left: 0 !important;
}

/* Hamburger Button breiter und Striche zentriert */
.navbar-toggle {
    min-width: 65px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}
