/* General Settings */
main {
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color-light);
    --smooth-color: #DBDACE;
    --accent-color: #FF9B47;
    --accent-active: #A06B3E;
}

/* General Styles */
a {
    color: var(--accent-color);
}

a:hover {
    color: var(--accent-active);
}

/* Hero Section */
.hero {
    font-family: 'Orbitron', sans-serif;

    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    padding-top: var(--header-size);
    padding-right: 2%;
    min-height: 100vh;
    text-align: center;
    background-color: var(--smooth-color);
    overflow: hidden;
}

.hero-title {
    text-align: left;
    margin: 10px 10px;
    line-height: 1;
    color: var(--text-color-light);
    letter-spacing: -.04em;
}

.hero-title h1 {
    font-size: 86px;
    font-weight: 500;
}

.hero-title p {
    font-size: 2.1rem;
}

.hero img {
    max-width: 80%;
    max-height: 90vh;
    margin-right: 0;
    border-radius: 20px;
    object-fit: contain;
    overflow: hidden;
    animation: slideIn-X 0.8s ease-out;
}

/* Media Queries */
@media (max-width: 968px) {
    .hero {
        flex-direction: column-reverse;
        height: auto;
    }

    .hero img {
        max-width: 120%;
        margin: 0px;
        border-radius: 0px;
        padding-left: 0;
    }

    .hero h1 {
        margin: 20px 0;
        max-width: 80%;
    }
}

/* Retribution Section */
.retribution-section {
    padding-top: 2rem;
}

.retribution-section h2 {
    font-size: 2rem;
    color: var(--text-color-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.retribution-section p {
    font-size: 1.2rem;
}
