@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Teko:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --primary-red: #c90000;
    --primary-red-hover: #a00000;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark: #111111;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: var(--bg-darker);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    line-height: 1;
}

.logo span {
    color: var(--primary-red);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    color: #fff;
    font-size: 1.2rem;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-right: 15px;
}

.cart-icon:hover {
    color: var(--primary-red);
    transform: scale(1.1) translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--primary-red);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    font-family: var(--font-body);
}

.btn-demo {
    background-color: transparent;
    border: 1px solid var(--primary-red);
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 16px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-red);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-demo:hover {
    color: #fff;
}

.btn-demo:hover::before {
    transform: scaleX(1);
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-red);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--primary-red-hover);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: #333;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center top;
    background-color: var(--bg-darker);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-main-title {
    margin-bottom: 20px;
    line-height: 0.9;
}

.title-dead-end {
    font-family: 'Black Ops One', cursive;
    font-size: 7.5rem;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
}

.title-music {
    font-family: 'Teko', sans-serif;
    font-size: 8rem;
    color: var(--primary-red);
    letter-spacing: 5px;
    display: block;
    margin-top: -15px;
}

.hero-text-block {
    margin-bottom: 30px;
}

.hero-statement {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-body);
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-desc {
    font-size: 1rem;
    color: #ccc;
    max-width: 80%;
}

.btn-filled {
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

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

/* Torn Paper Divider */
.torn-paper-divider {
    width: 100%;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 40" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,40 L0,20 Q15,0 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 Z" fill="%23f4efe8"/></svg>') no-repeat center center;
    background-size: 100% 100%;
    margin-top: -39px;
    position: relative;
    z-index: 10;
}

/* Features Banner */
.features-banner {
    background-color: #f4efe8;
    padding: 30px 0;
    color: #333;
    border: none;
}

.features-banner .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: var(--primary-red);
    font-size: 2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #555;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 3rem;
}

.section-title span {
    color: var(--primary-red);
}

/* Light Section (Releases & Artists) */
.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* Cards General */
.card {
    background: #fff;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #333;
}

.card-info {
    padding: 15px 0;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.card-meta {
    font-size: 0.9rem;
    color: #666;
}

/* Specific Release Card Overrides */
.section-features-bg {
    background-color: #f4efe8;
}

.pt-0 {
    padding-top: 0;
}

.center-header {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.text-dark {
    color: #111;
}

.text-red {
    color: var(--primary-red);
}

.header-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.btn-outline-red {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: #333;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 6px 16px;
}

.btn-outline-red:hover {
    background: var(--primary-red);
    color: #fff;
}

.release-card {
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
}

.release-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.release-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
}

.release-overlay-content {
    text-align: center;
    margin-bottom: 5px;
}

.release-title {
    font-family: 'Teko', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.release-subtitle {
    color: #aaa;
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 2px;
}

.release-play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.release-play-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.artist-card .card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #333;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-red);
}

/* About / Studio Section */
.studio-section {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 0;
    display: flex;
}

.studio-content {
    flex: 1;
    padding: 80px;
}

.studio-image {
    flex: 1;
    background-color: var(--primary-red);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: var(--text-light);
}

.studio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/logo-bg.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.studio-image>* {
    position: relative;
    z-index: 2;
}

.studio-list {
    margin: 30px 0;
}

.studio-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.studio-list i {
    font-size: 1.5rem;
}

/* News Section */
.news-card .card-img {
    aspect-ratio: 16/9;
}

/* Footer */
footer {
    background-color: var(--primary-red);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

.admin-form {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.admin-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background: #f4f4f4;
    color: #333;
}

table tr:hover {
    background: #f9f9f9;
}