/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000; /* Black background like the image */
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 10px;
}

/* Main Container: Mimics the narrow vertical poster look */
.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography Styling */
.main-title {
    font-size: 4.3rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slogan Section Styles */
.slogan-container {
    text-align: center;
    margin-top: -65px; /* Overlaps image slightly */
    z-index: 10;
    width: 100%;
}

.desperate {
    font-size: 4.1rem;
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 0.9;
}

.attention {
    font-size: 2.4rem;
    font-weight: 600;
    margin-top: 5px;
}

.kind {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Collage Layout */
.collage {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

.left-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Images and Spacing */
img {
    width: 100%;
    height: auto;
    margin-right: -0px;
    filter: contrast(1.1) brightness(0.9); /* Adds a grittier look */
}

.img-tall {
    margin-top: 40px;
}

/* Overlapping Image Logic */
.img-overlap-group {
    position: relative;
    height: 220px;
}

.img-overlap-1 {
    width: 100%;
}

.img-overlap-2 {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 39%;
}

/* Bio Text Box */
.bio-text {
    font-size: 1rem;
    line-height: 1.3;
    padding: 10px 0;
    font-weight: 600;
    text-align: left;
    margin-top: 10px;
}

.bio-text p {
    margin-bottom: 10px;
}

/* Bottom Sections */
.contact-links {
    color: #ff0000; /* Bright red links */
    display: flex;
    flex-direction: column;
    font-weight: 900;
    font-size: 1.7rem;
    line-height: 1.1;
    margin-top: 20px;
}

.contact-links a {
    color: #ff0000;
    text-decoration: none;
}



.email {
    margin-top: 15px;
    word-break: break-all;
}

.bottom-right-image {
    margin-top: -80px; /* Strong overlap with the text above it */
    position: relative;
    z-index: 5;
}

/* Responsive adjustments for mobile */
@media (max-width: 500px) {
    .main-title { font-size: 2.7rem; }
    .desperate { font-size: 2.5rem; }
    .collage { flex-direction: row; }
    .bio-text { font-size: 0.85rem;}
    .contact-links p { font-size: 1.3rem; }
    .img-overlap-group { height: auto; margin-bottom: 20px; }
}