﻿.hero-page-shell {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: var(--image-hero-content) center center / cover no-repeat;
}

/*.hero-section-content {
    min-height: 100svh;
    padding-top: calc(var(--spacing-header-height) + var(--spacing-lg));
    padding-inline: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
*/
.hero-section-content {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding-inline: var(--spacing-sm);
}

.hero-section-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--image-hero-content) center top / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

.hero-section-content::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 1;
    pointer-events: none;
}

/*.content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width-container);
    min-height: calc(100svh - var(--spacing-header-height) - var(--spacing-lg));
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
*/
.content-overlay {
    flex: 1;
    width: 100%;
    max-width: var(--max-width-container);
    min-height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.page-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md) var(--spacing-sm);
}

.page-container h1 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease-out;
}

body.content-hero-page .navbarLinks a:hover,
body.content-hero-page .navbarSocialMedia a:hover,
body.content-hero-page .language-toggle:hover {
    color: var(--color-header-text);
}

body.content-hero-page .navbarLinks a,
body.content-hero-page .navbarSocialMedia a,
body.content-hero-page .language-toggle {
    color: var(--color-header-text);
}

body.content-hero-page .header-inner p {
    color: var(--color-header-text);
}

body.content-hero-page .header-inner h1 {
    color: var(--color-header-text);
}
