/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: visible;
    margin-top: 0;
    z-index: 10;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 100px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 10px;
    line-height: 122px;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 50px;
    text-align: center;
}

.hero p {
    font-family: var(--font-secondary);
    font-size: 100px;
    font-weight: var(--font-weight-bold);
    font-style: italic;
    letter-spacing: 10px;
    line-height: 133px;
    color: var(--color-muted);
    background-color: var(--color-primary);
    padding: 50px;
    text-align: center;
}

/* Hero Logo Box */
.hero-logo-box {
    position: absolute;
    bottom: -50px;
    right: var(--spacing-xl);
    background: rgba(44, 44, 44, 1);
    padding: var(--spacing-lg);
    border-radius: 0;
    z-index: var(--z-fixed);
    transition: var(--transition-base);
}

.hero-logo-box:hover {
    background: rgba(44, 44, 44, 0.95);
    transform: translateY(-2px);
}

.hero-logo-image {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(1);
    transition: var(--transition-base);
}

.hero-logo-box:hover .hero-logo-image {
    filter: brightness(1.1);
}

/* About & Contact Heroes */
.about-hero,
.contact-hero {
    height: 70vh;
    margin-top: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content,
.about-hero-overlay,
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 100;
}

.about-hero-overlay {
    background: rgba(0, 0, 0, 0);
    padding: var(--spacing-xxl);
    text-align: center;
    color: var(--color-white);
}

.about-hero-overlay h1 {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 5px;
    margin-bottom: var(--spacing-sm);
}

.about-hero-overlay p {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 24px;
    color: var(--color-white);
}

.contact-hero {
    height: 70vh;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0);
    padding: var(--spacing-xxl);
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.hero-text p {
    font-size: 24px;
}