/* Font Import */
@font-face {
    font-family: 'Carme';
    src: url('fonts/Carme-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Carme', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* background: linear-gradient(to right, #dc2626 0%, #000000 9%, #000000 91%, #dc2626 100%); */
    background-color: #8c1212;
    background-attachment: fixed;
}

/* Header Styles */
header {
    background-color: #0a0a0a;
    color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #dc2626;
}

#topbar {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 225px 1fr 225px;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

#logo {
    text-align: center;
}

#logo h1 {
    font-size: 2em;
    letter-spacing: 2px;
    color: #dc2626;
}

#login {
    display: block;
    text-align: center;
    background-color: #dc2626;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid #dc2626;
    transition: all 0.3s;
}

#login:hover {
    background-color: transparent;
    color: #dc2626;
}

#search {
    padding: 15px;
    width: 225px;
    border: 2px solid #dc2626;
    background-color: #1a1a1a;
    color: #fff;
}

#search::placeholder {
    color: #999;
}

/* Navigation Styles */
nav {
    background-color: #1a1a1a;
    border-bottom: 2px solid #dc2626;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 15px 70px;
    transition: all 0.3s;
    font-size: 1.1em;
}

nav a:hover,
nav a.active {
    background-color: #dc2626;
    color: #fff;
}

/* Hero Slideshow Styles */
#hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

#hero input[type="radio"] {
    display: none;
}

#slides {
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
    white-space: nowrap;
    font-size: 0;
}

.slide {
    display: inline-block;
    width: 33.333%;
    height: 100%;
    position: relative;
    vertical-align: top;
    white-space: normal;
    font-size: 16px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.herotext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    width: 80%;
    max-width: 800px;
}

.herotext h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.herotext p {
    font-size: 1.5em;
}

/* Slideshow Controls */
#arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

#arrows label.prev {
    position: absolute;
    left: 0;
}

#arrows label.next {
    position: absolute;
    right: 0;
}

#arrows label {
    background-color: rgba(220, 38, 38, 0.7);
    color: #fff;
    padding: 12px;
    cursor: pointer;
    font-size: 1.5em;
    transition: all 0.3s;
    user-select: none;
    pointer-events: auto;
    display: none;
}

#arrows label:hover {
    background-color: rgba(220, 38, 38, 1);
}

/* Hero Slide Navigation Logic */
#hero1:checked ~ #slides {
    transform: translateX(0);
}

#hero2:checked ~ #slides {
    transform: translateX(-33.333%);
}

#hero3:checked ~ #slides {
    transform: translateX(-66.666%);
}

/* Show correct arrows based on current slide */
#hero1:checked ~ #arrows .next[for="hero2"] {
    display: block;
}

#hero1:checked ~ #arrows .prev[for="hero3"] {
    display: block;
}

#hero2:checked ~ #arrows .next[for="hero3"] {
    display: block;
}

#hero2:checked ~ #arrows .prev[for="hero1"] {
    display: block;
}

#hero3:checked ~ #arrows .next[for="hero1"] {
    display: block;
}

#hero3:checked ~ #arrows .prev[for="hero2"] {
    display: block;
}

/* Artist Carousel Styles */
#artists {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #0a0a0a;
    padding: 40px 0;
}

#artists input[type="radio"] {
    display: none;
}

#slider {
    width: 300%;
    transition: transform 0.5s ease;
    white-space: nowrap;
    font-size: 0;
}

.row {
    display: inline-block;
    width: 33.333%;
    padding: 0 20px;
    white-space: normal;
    font-size: 16px;
    text-align: center;
}

.card {
    display: inline-block;
    text-align: center;
    width: 21%;
    height: 310px;
    background-color: #1a1a1a;
    padding: 20px;
    border: 2px solid #dc2626;
    transition: all 0.3s;
    vertical-align: top;
    margin: 0 1.5%;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #ef4444;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.card h3 {
    color: #fff;
    font-size: 1.1em;
    min-height: 2.5em;
    line-height: 1.2em;
}

/* Artist Carousel Controls */
#artistarrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

#artistarrows label.prev {
    position: absolute;
    left: 0;
}

#artistarrows label.next {
    position: absolute;
    right: 0;
}

#artistarrows label {
    background-color: rgba(220, 38, 38, 0.7);
    color: #fff;
    padding: 12px;
    cursor: pointer;
    font-size: 1.5em;
    transition: all 0.3s;
    user-select: none;
    pointer-events: auto;
    display: none;
}

#artistarrows label:hover {
    background-color: rgba(220, 38, 38, 1);
}

/* Artist Carousel Navigation Logic */
#artist1:checked ~ #slider {
    transform: translateX(0);
}

#artist2:checked ~ #slider {
    transform: translateX(-33.333%);
}

#artist3:checked ~ #slider {
    transform: translateX(-66.666%);
}

/* Show correct arrows for artist carousel */
#artist1:checked ~ #artistarrows .next[for="artist2"] {
    display: block;
}

#artist1:checked ~ #artistarrows .prev[for="artist3"] {
    display: block;
}

#artist2:checked ~ #artistarrows .next[for="artist3"] {
    display: block;
}

#artist2:checked ~ #artistarrows .prev[for="artist1"] {
    display: block;
}

#artist3:checked ~ #artistarrows .next[for="artist1"] {
    display: block;
}

#artist3:checked ~ #artistarrows .prev[for="artist2"] {
    display: block;
}

/* Content Section Styles */
#content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000;
}

#mainbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
}

#news,
#spotlight {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#news h2,
#spotlight h2 {
    color: #0a0a0a;
    margin-bottom: 20px;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 10px;
}

.newsbox {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.newsbox:last-child {
    border-bottom: none;
}

.newsbox h3 {
    color: #dc2626;
    margin-bottom: 5px;
}

.newsbox .date {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.newsbox a {
    color: #dc2626;
    text-decoration: none;
    font-weight: bold;
}

.newsbox a:hover {
    text-decoration: underline;
}

#spotbox img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

#spotbox h3 {
    color: #0a0a0a;
    font-size: 1.8em;
    margin-bottom: 15px;
}

#spotbox p {
    margin-bottom: 15px;
    line-height: 1.8;
}

#more {
    display: inline-block;
    background-color: #dc2626;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 10px;
}

#more:hover {
    background-color: #b91c1c;
}

/* Footer Styles */
footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 0;
    border-top: 3px solid #dc2626;
}

#footerbox {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 20px;
}

#left h4,
#right h4 {
    color: #dc2626;
    margin-bottom: 15px;
}

#left ul {
    list-style: none;
    margin-bottom: 20px;
}

#left ul li {
    margin-bottom: 8px;
}

#left ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

#left ul li a:hover {
    color: #dc2626;
}

#credits {
    color: #FFF;
    font-size: 0.9em;
    margin-top: 20px;
}

#center {
    text-align: center;
    padding-top: 15px;
}

#center p {
    font-size: 1.2em;
    color: #FFF;
	
}

#right {
    text-align: right;
}

#social {
    text-align: right;
}

#social a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

#social a:hover {
    color: #dc2626;
}

/* News Page Styles */
#newspage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000;
}

#newspage h1 {
    color: #dc2626;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #dc2626;
}

.article {
    background-color: #fff;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.articleimg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.articlebody {
    padding: 30px;
}

.articlebody h2 {
    color: #0a0a0a;
    font-size: 2em;
    margin-bottom: 15px;
}

.meta {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 20px;
    font-style: italic;
}

.articlebody p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.readmore {
    display: inline-block;
    background-color: #dc2626;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.readmore:hover {
    background-color: #b91c1c;
}

/* Music Page Styles */
#musicpage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000;
}

#musicpage h1 {
    color: #dc2626;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #dc2626;
}

.album {
    background-color: #fff;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
}

.albumart {
    background-color: #000;
}

.albumart img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    background-color: #000;
}

.albuminfo {
    padding: 30px;
}

.albuminfo h2 {
    color: #0a0a0a;
    font-size: 2em;
    margin-bottom: 5px;
}

.albuminfo h3 {
    color: #dc2626;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.albumdesc {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.albuminfo h4 {
    color: #0a0a0a;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tracklist {
    list-style-position: inside;
    color: #333;
    margin-bottom: 20px;
}

.tracklist li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.tracklist li:last-child {
    border-bottom: none;
}

.subsections {
    list-style-type: none;
    margin-left: 30px;
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #666;
    padding-left: 0;
}

.subsections li {
    padding: 3px 0;
    border-bottom: none;
}

.subsections li::before {
    content: none;
}

.audiosample {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 25px;
    border: 2px solid #dc2626;
}

.audiosample h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.audiosample audio {
    width: 100%;
    outline: none;
}

/* Track-by-track audio styles */
.trackaudio {
    list-style: none;
    counter-reset: track-counter;
}

.trackaudio > li {
    counter-increment: track-counter;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.trackaudio > li:last-child {
    border-bottom: none;
}

.trackaudio > li::before {
    content: counter(track-counter) ". ";
    color: #dc2626;
    font-weight: bold;
    margin-right: 8px;
}

.subsections {
    list-style: none;
    margin-left: 30px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9em;
}

.subsections li {
    padding: 4px 0;
    border: none;
}

.subsections li::before {
    content: "" !important;
    margin: 0;
}

.trackaudio audio {
    display: block;
    width: 50%;
    height: 32px;
    outline: none;
    margin-top: 5px;
}

/* Bands Page Styles */
#bandspage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000;
}

#bandspage h1 {
    color: #dc2626;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #dc2626;
}

.bandprofile {
    background-color: #fff;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bandimg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.bandbody {
    padding: 30px;
}

.bandbody h2 {
    color: #0a0a0a;
    font-size: 2em;
    margin-bottom: 15px;
}

.bandbody p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

/* Videos Page Styles */
#videospage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000;
}

#videospage h1 {
    color: #dc2626;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #dc2626;
}

.videogrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.videocard {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.videocard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.videocard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.videoinfo {
    padding: 20px;
}

.videoinfo h3 {
    color: #0a0a0a;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.vidmeta {
    color: #dc2626;
    font-size: 0.9em;
    margin-bottom: 12px;
    font-weight: bold;
}

.videoinfo p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.watchbtn {
    display: inline-block;
    background-color: #dc2626;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.watchbtn:hover {
    background-color: #b91c1c;
}

/* Store Page Styles */
#storepage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000;
}

#storepage h1 {
    color: #dc2626;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #dc2626;
}

.storegrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.productcard {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.productcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.productcard img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.productinfo {
    padding: 20px;
}

.productinfo h3 {
    color: #0a0a0a;
    font-size: 1.4em;
    margin-bottom: 12px;
}

.productinfo p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price {
    color: #dc2626;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
}

.buybtn {
    display: inline-block;
    background-color: #dc2626;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.buybtn:hover {
    background-color: #b91c1c;
}

.featured {
    background-color: #fff;
    padding: 40px;
    margin-top: 40px;
}

.featured h2 {
    color: #0a0a0a;
    font-size: 2em;
    margin-bottom: 30px;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 15px;
}

.featuredgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.featureditem {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.featureditem:last-child {
    border-bottom: none;
}

.featureditem img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.featuredinfo h3 {
    color: #0a0a0a;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.itemmeta {
    color: #999;
    font-size: 0.85em;
    margin-bottom: 10px;
    font-style: italic;
}

.featuredinfo p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

