:root {
    --primary-color: #21697c;
    --primary-color-light: #2e94b0;
    --primary-color-link: #0dcaf0;
    --secondary-color: #7d3521;
    --primary-bg-color: #111;
    --secondary-bg-color: white;
    --primary-text-color: black;
    --hover-bg-color: #ebebeb;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    background: var(--secondary-bg-color);
}

main {
    flex: 1;
    z-index: 1;
}

.app {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--secondary-bg-color);
}

.container-sm {
    max-width: 720px;
  }

.header-image-container {
    position: relative;
    border-radius: 20px;
    height: 800px;
    width: 100%;
    max-width: 720px;
    background-image: url("./img/IMG_20240903_142143.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    max-height: calc(100svh - 16px);
}

.header-image-text {
    z-index: 3;
    background: linear-gradient(0deg, rgba(17,17,17,1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 0 0 20px 20px;
}

.header-image-text > h4 {
    color: var(--secondary-bg-color) !important;
    text-shadow: #000 1px 0 10px;
    margin-bottom: 16px;
    line-height: 1.2em !important;
}

.header-image-text > h5 {
    color: var(--secondary-bg-color) !important;
    text-shadow: #000 0 0 4px;
}

.header-language-text > label {
    color: var(--primary-text-color) !important;
    font-weight: 500 !important;
}

.card.header-language-text {
    background-color: var(--hover-bg-color);
    border-width: 0;
}

@media (min-width: 575px) {
    .header-image-text > h4 {
        font-size: 28px !important;
    }
    
    .header-image-text > h5 {
        font-size: 20px !important;
    }
}

h4 {
    color: var(--primary-text-color) !important;
    line-height: 1em !important;
    text-shadow: #fff 1px 0 10px;
    font-size: 20px !important;
    text-wrap: balance;
}

h5 {
    color: var(--primary-text-color) !important;
    font-weight: 400 !important;
    text-shadow: #fff 0 0 4px;
    font-size: 16px !important;
    text-wrap: balance;
}

h6 {
    color: #aaa !important;
}

li::marker {
    content: '‣ ';
    font-size: 1.2em;
}

li small {
    font-size: 14px !important;
    color: #888 !important;
    text-wrap: nowrap;
}

.card {
    border-radius: 20px;
    height: 100%;
    max-width: 100%;
    background-color: var(--secondary-bg-color);
}

.card > h4 {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.row h5 {
    font-weight: 600 !important;
}

.row h5.text {
    font-weight: 400 !important;
}

.row h5.wrap {
    text-wrap: wrap;
}

.list-text .card {
    background-color: var(--hover-bg-color);
    border-width: 0;
}

.contacts a {
    text-transform: none;
    font-size: 14px;
    color: #aaa;
    font-weight: 400;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contacts a > i {
    font-size: 54px;
}

.contacts .card {
    border-width: 0;
    transition: background-color 0.3s ease-in;
}

.contacts .card:hover > a {
    color: var(--primary-color-link);
    transition: color 0.3s ease-in;
}

.contacts .card:hover{
    background-color: var(--hover-bg-color);
    transition: background-color 0.3s ease-in;
}