@font-face {
    font-family: 'CustomLogoFont';
    src: url('assets/fonts/Unamstered-Regular.otf') format('woff2'),
         url('assets/fonts/Unamstered-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* ==========================================
   1. CORE RESET & VARIABLES
   ================================          */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #121212; /* Deep Charcoal */
    color: #e0e0e0;            /* Stark White / Soft Light Gray */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ================================          */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #1a1a1a;
    border-bottom: 2px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Align the logo image and text horizontally inside the link */
.logo a {
    display: flex;   
    align-items: center;
/*    gap: 10px; /* Controls the space between your graphic symbol and the text */
    text-decoration: none;
}

/* Control the size of your logo symbol */
.logo-icon {
    height: 60px; /* Adjust this height to match your header size (e.g., 28px - 40px) */
    padding-right: 2%;
    width: auto;  /* Keeps the aspect ratio proportional automatically */
    display: block;
}

.logo a {
    font-family: 'CustomLogoFont', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a .accent-letter {
  color: #cc0000; /* Replace with your specific blood-red hex code */
}

.logo a:hover {
    color: #cc0000; /* Blood Red Hover */
        .accent-letter {
        color: #ffffff;
    }
}


.menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #cc0000;
}

/* Pop-Out Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Hidden off-screen */
    width: 300px;
    height: 100%;
    background-color: #181818;
    border-left: 2px solid #cc0000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    padding: 40px 20px;
}

.side-menu.active {
    right: 0; /* Slides into view */
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-menu:hover {
    color: #cc0000;
}

.side-menu ul {
    list-style: none;
    margin-top: 50px;
}

.side-menu ul li {
    margin-bottom: 20px;
}

.side-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.side-menu ul li a:hover {
    color: #cc0000;
}

/* Overlay Backdrop */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   3. MAIN LAYOUT & CONTAINERS
   ================================          */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}

.featured-story {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), #1f1f1f;
    border-left: 5px solid #cc0000;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.tag {
    background-color: #cc0000;
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 4px 10px;
    letter-spacing: 1px;
    border-radius: 2px;
}

.featured-content h1 {
    font-size: 2.2rem;
    margin: 15px 0;
    color: #ffffff;
}

.featured-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.read-more {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #ff1a1a;
    text-decoration: underline;
}

/* ==========================================
   4. ARTICLE & CARD GRIDS
   ================================          */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 25px;
    border-radius: 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.card-link-wrapper:hover .card {
    border-color: #ff0033; /* Blood red accent */
    transform: translateY(-4px);
}

.card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* ==========================================
   5. SINGLE ARTICLE LAYOUT
   ================================          */
.article-single {
    max-width: 800px;
    margin: 40px auto;
}

.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 15px 0;
    color: #ffffff;
}

.article-meta {
    color: #888888;
    font-size: 0.95rem;
}

.featured-image-placeholder {
    width: 100%;
    height: 380px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-family: monospace;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #dddddd;
    margin-bottom: 25px;
}

.article-body h2 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #ff3333;
    padding-left: 15px;
}

.article-quote {
    border-left: 3px solid #ff3333;
    margin: 30px 0;
    padding: 15px 25px;
    font-style: italic;
    font-size: 1.25rem;
    color: #ffffff;
    background-color: #161616;
}

/* ==========================================
   6. RELEASE TRACKER & FILTER BUTTONS
   ================================          */
.page-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-top: 2rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 0.5rem;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.release-card {
    background-color: #121212;
    border: 1px solid #222;
    padding: 1.5rem;
    position: relative;
    transition: border-color 0.3s ease;
}

.release-card:hover {
    border-color: #8b0000;
}

.release-date-badge {
    background-color: #8b0000;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    padding: 4px 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.release-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.release-card .album-title {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Filter Button Bar */
.filter-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.filter-btn {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    padding: 8px 16px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover, 
.filter-btn.active {
    background-color: #b30000;
    border-color: #b30000;
}

/* ==========================================
   7. CONTACT PAGE & FORMS
   ================================          */
.contact-section {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #121212;
    border: 1px solid #222;
}

.contact-subtitle {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.highlight-email {
    color: #ff3333;
}

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

.contact-form label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 0;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff3333;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #ff3333;
    color: #fff;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover {
    background: #e02828;
}