* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --grey: #333;
    --light-grey: #cccccc;
    --lighter-grey: #f1f1f1;
    --light-red: #d40000;
    --red: #b30000;
}

/******

logo-container

******/

.logo-container {
    /* background-color: #f1f1f1; */
    background: url(../img/header-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-container img {
    height: 160px;
}

.logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-decoration: none;
    padding: 15px;
    color: #333;
}

.logo-container p {
    font-family: 'Garamond', serif;
    font-size: 95px;
}

.white-logo {
    display: none;
}

/******

header-container

******/

.header-container {
    position: relative;
    z-index: 1000;
}

.menu-nav {
    display: flex;
    align-items: center;
    background-color: #d40000;
    height: 45px;
    justify-content: space-between;
    width: 100%;
}

nav li {
    display: inline-block;
    list-style-type: none;
    margin-right: 20px;
}

nav li a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-size: 19px;
    position: relative;
    text-decoration: none;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #cccccccc;
    transition: width 0.4s ease, left 0.4s ease;
}

nav ul li a:hover::after {
    width: 80%;
    left: 10%;
}

nav li a:hover {
    color: #cccccccc;
}

.menu-icon {
    display: none;
}

/******

lang-selector

******/

.lang-selector {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.lang-selector a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.lang-selector a img {
    height: 30px;
    transition: transform 0.3s ease;
}

.lang-selector a img:hover {
    transform: scale(1.05);
}

/******

sociální sítě

******/

.social-media {
    display: flex;
    margin-right: 15px;
    gap: 10px;
}

.social-media a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.05);
}

.social-media a img {
    height: 30px;
}

.active {
    color: #cccccc;
}