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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
}

.hero {
    height: 100vh;
    width: 100%;
    background-image: url("../images/rocket_assembly_in_hanger.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Text block */
.hero-content {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.05em;
}

.hero-content p {
    margin-top: 1rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    opacity: 0.85;
}

.hero-content h1,
.hero-content p,
.hero-content span {
    background: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-meta {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.65;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Slightly tighter spacing on mobile */
@media (max-width: 600px) {
    .hero-meta {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }
}

/* Photo credit */
.photo-credit {
    position: fixed;
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.7rem;
    opacity: 0.6;
    color: #fff;
    z-index: 10;
}

.photo-credit a {
    color: inherit;
    text-decoration: underline;
}

.photo-credit a:hover {
    opacity: 0.85;
}

