body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Arial', sans-serif; 
    color: white;
    background-image: url('files/imgs/background.jpg');
    background-size: auto 100%;
    background-color: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    box-sizing: border-box;
    padding: 20px 20px 70px 20px;
    overflow-x: hidden; 
}

.content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: min(90%, 1200px);
    padding: 0 15px;
    box-sizing: border-box;
}

h1 {
    font-family: 'Aldrich', sans-serif; 
    font-size: clamp(1.0rem, 5vw, 6rem);
    font-weight: 600;
    --h1-letter-spacing: clamp(0.05em, 1.8vw, 0.8em);
    letter-spacing: var(--h1-letter-spacing);
    text-transform: uppercase;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
    margin: 0 auto 0.5em auto;
    padding: 0;
    box-sizing: border-box;
    display: block;
    text-align: center;
    width: auto;
    transform: translateX(calc(var(--h1-letter-spacing) / 2));
    white-space: nowrap;
}

.tagline {
    font-family: 'Montserrat', sans-serif; 
    font-size: clamp(1.0rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    line-height: 2.0;
    text-transform: uppercase;
    margin-bottom: 2em;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
    margin-right: -0.5em;
    padding-left: 0.5em;
    box-sizing: border-box;
}

.contact-email {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    position: fixed;
    bottom: 50px; 
    left: 0;
    right: 0;
    text-align: center; 
    text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.5);
    color: white; 
    margin: 0;
}

.contact-email a,
.contact-email a:link,
.contact-email a:visited {
    color: white !important;
    text-decoration: none;
    transition: text-shadow 0.1s ease-in-out;
}

.contact-email a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6),
                 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 15px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    color: white !important;
}

@media screen and (max-width: 1000px) {
    .content-wrapper {
        padding: 0 10px;
    }
    
    h1 {
        font-size: clamp(1.8rem, 8vw, 3.5rem);
    }
    
    .tagline {
        font-size: clamp(0.7rem, 3vw, 1rem);
        letter-spacing: 0.2em;
        line-height: 1.4;
        margin-right: -0.2em; 
        padding-left: 0.2em;
    }
    
    .contact-email {
        font-size: clamp(0.7rem, 2vw, 1rem);
        bottom: 20px;
    }
}