:root {
    --bg-color: #0a1f0a; /* Deep forest green */
    --accent-red: #8a0303; /* Deep blood red */
    --text-white: #e0e0e0;
    --font-header: 'Saira Stencil One', sans-serif;
    --font-body: 'Teko', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    position: relative;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

/* Global Texture - Enhanced */
.global-texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1596327038165-27670783359d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3');
    background-size: cover;
    background-blend-mode: multiply;
    opacity: 0.3; /* Increased opacity */
    pointer-events: none;
    z-index: -2;
}

/* Tribal Pattern Overlay */
.tribal-pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(135deg, rgba(138, 3, 3, 0.05) 25%, transparent 25%), 
        linear-gradient(225deg, rgba(138, 3, 3, 0.05) 25%, transparent 25%), 
        linear-gradient(45deg, rgba(138, 3, 3, 0.05) 25%, transparent 25%), 
        linear-gradient(315deg, rgba(138, 3, 3, 0.05) 25%, transparent 25%);
    background-position: 10px 0, 10px 0, 0 0, 0 0;
    background-size: 20px 20px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: -1;
}

/* Vertical decorative strips */
.side-pattern {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 40px;
    background-image: linear-gradient(0deg, transparent 50%, var(--accent-red) 50%);
    background-size: 100% 20px;
    opacity: 0.15;
    z-index: -1;
}
.side-pattern.left { left: 10px; }
.side-pattern.right { right: 10px; }

/* Sections - Reduced Padding/Height */
section {
    padding: 3rem 1rem; /* Reduced from 6rem 2rem */
    position: relative;
    min-height: auto; /* Removed 80vh constraint */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-family: var(--font-header);
    font-size: 3.5rem; /* Increased size */
    color: var(--accent-red);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    border-bottom: 3px solid var(--accent-red);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Header & About */
#hero-about {
    min-height: 80vh; /* Kept slightly taller for impact */
    justify-content: center;
    padding-top: 2rem;
    gap: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    font-family: var(--font-header);
    font-size: 8rem; /* Massive */
    line-height: 0.8;
    text-align: center;
    color: var(--text-white);
    text-transform: uppercase;
    text-shadow: 5px 5px 0px #000;
}

.about-split-layout {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px; /* Wider */
    align-items: center;
}

.bio-col {
    width: 250px;
    text-align: justify;
    font-size: 1.6rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-white);
    background: rgba(0,0,0,0.4); /* Slight backing for readability */
    padding: 1rem;
    border: 1px solid var(--accent-red); /* Added border */
}

.bio-col.left { text-align-last: left; border-left: 5px solid var(--accent-red); }
.bio-col.right { text-align-last: right; border-right: 5px solid var(--accent-red); }

.center-totem {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    gap: 15px;
}

.totem-line { width: 4px; height: 120px; background-color: var(--accent-red); }
.totem-circle { width: 30px; height: 30px; border: 4px solid var(--accent-red); border-radius: 50%; }
.totem-diamond { width: 20px; height: 20px; background: var(--accent-red); transform: rotate(45deg); }
.totem-cross { 
    width: 40px; height: 40px; 
    background: 
        linear-gradient(to bottom, transparent 45%, var(--accent-red) 45%, var(--accent-red) 55%, transparent 55%),
        linear-gradient(to right, transparent 45%, var(--accent-red) 45%, var(--accent-red) 55%, transparent 55%);
}


/* Releases (Sunburst) */
#releases {
    padding: 2rem 0;
}

.sunburst-wrapper {
    position: relative;
    width: 700px; /* Larger */
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    background: radial-gradient(circle, rgba(138,3,3,0.1) 0%, transparent 70%); /* Glow */
}

.sunburst-center {
    width: 300px;
    height: 300px;
    z-index: 2;
    border: 4px solid var(--accent-red);
    transform: rotate(45deg); /* Diamond shape for container */
    overflow: hidden;
}

.release-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.45); /* Counter rotate image */
}

.sunburst-rays {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}

.ray {
    position: absolute;
    top: 50%; left: 50%;
    width: 340px;
    transform-origin: 0 0;
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    pointer-events: auto;
    transition: all 0.3s;
}

.ray span {
    margin-left: 170px;
    background: #000;
    padding: 5px 10px;
    border: 1px solid var(--accent-red);
}

.ray:hover span {
    background: var(--accent-red);
    color: #000;
}

.ray-1 { transform: rotate(-45deg); }
.ray-2 { transform: rotate(45deg); }
.ray-3 { transform: rotate(135deg); }
.ray-4 { transform: rotate(225deg); }


/* Merch */
#merch {
    background: linear-gradient(to bottom, var(--bg-color) 0%, #2a0a0a 100%);
    padding: 4rem 1rem;
}

.merch-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
}

.product-item {
    position: relative;
    width: 350px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: rgba(255,255,255,0.05); /* Slight box */
    padding: 1rem;
    border: 1px solid rgba(138,3,3,0.3);
}

.prod-img {
    width: 220px;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
    transition: transform 0.3s;
}

.product-item:hover .prod-img { transform: scale(1.1) rotate(2deg); }

.prod-details {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 220px;
}

.prod-name { font-size: 1.4rem; letter-spacing: 0.1em; color: var(--accent-red); font-weight: 600;}
.shop-link { font-size: 1rem; color: var(--text-white); text-decoration: none; border-left: 2px solid var(--text-white); padding-top: 0.5rem; }


/* Press */
.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.press-photo {
    position: relative;
    width: 100%;
    border: 2px solid var(--accent-red); /* Added border */
}

.press-photo img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s;
}

.press-photo:hover img { filter: grayscale(0%) contrast(1.1); }

.p1 { transform: translateY(20px); }
.p2 { transform: translateY(60px); }

.bracket {
    position: absolute;
    width: 40px; height: 40px;
    border: 6px solid #fff; /* Thicker white brackets */
    transition: width 0.3s, height 0.3s;
    z-index: 2;
}


/* Contact */
#contact {
    margin-top: 4rem;
}

.video-frame {
    width: 60%;
    aspect-ratio: 16/9;
    background: #000;
    border: 2px solid var(--accent-red);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motif-x {
    font-size: 2rem;
    font-weight: bold;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 500px;
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    border: 1px solid var(--accent-red);
}

.input-group label { color: var(--accent-red); font-weight: 600; letter-spacing: 0.2em; }
.input-group input { border-bottom: 2px solid var(--text-white); font-size: 1.4rem; }
.input-group input:focus { border-bottom-color: var(--accent-red); }

.icon-shape {
    width: 50px; height: 50px;
    background: var(--accent-red);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* Diamond */
}

/* Divider pattern strip */
.pattern-strip {
    width: 100%;
    height: 30px;
    background-image: linear-gradient(45deg, var(--accent-red) 25%, transparent 25%, transparent 75%, var(--accent-red) 75%),
                      linear-gradient(45deg, var(--accent-red) 25%, transparent 25%, transparent 75%, var(--accent-red) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    margin: 2rem 0;
}


@media (max-width: 768px) {
    section { padding: 2rem 1rem; }
    .main-logo { font-size: 4.5rem; }
    .bio-col { width: 100%; max-width: none; border: none; border-left: 3px solid var(--accent-red); padding-left: 1rem; text-align: left; text-align-last: left; }
    .about-split-layout { flex-direction: column; gap: 2rem; }
    .center-totem { height: 150px; flex-direction: row; }
    .totem-line { height: 4px; width: 60px; } /* Horizontal on mobile */
    
    .sunburst-wrapper { width: 100%; height: auto; flex-direction: column; gap: 1rem; background: none; }
    .sunburst-center { width: 200px; height: 200px; }
    .sunburst-rays { position: relative; display: flex; flex-direction: column; gap: 0.5rem; height: auto; }
    .ray { position: relative; top: auto; left: auto; width: 100%; transform: none; justify-content: center; }
    .ray span { margin: 0; width: 100%; text-align: center; }
    
    .press-grid { grid-template-columns: 1fr; }
    .p2 { transform: none; }
    .video-frame { width: 95%; }
    .side-pattern { display: none; }
}
