body {
    margin: 0;
    background-color: midnightblue;
    text-align: center;
}

.navbar {
    position: relative;
    height: 110px;
    background-color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ZELTAINS logo */
.logo-title {
    margin: 0;
    font-size: 80px;
    color: black;
    font-family: "Times New Roman", Times, serif;
    font-weight: normal;
    display: flex;
    cursor: pointer;
    text-decoration: none;
}

/* Katrs ZELTAINS burts */
.logo-title span {
    position: relative;
    display: inline-block;
    color: black;
}

/* Zelta slānis kursora apļa iekšpusē */
.logo-title span::after {
    content: attr(data-letter);

    position: absolute;
    left: 0;
    top: 0;

    color: gold;
    pointer-events: none;

    clip-path: circle(
        60px at var(--mouse-x, 50%) var(--mouse-y, 50%)
    );

    opacity: var(--glow-opacity, 0);

    transition: opacity 0.18s ease;
}

.menu {
    position: absolute;
    left: 30px;

    display: flex;
    gap: 25px;
}

/* Izvēlnes pogu stils */
.menu a {
    color: black;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
}

.menu a:hover {
    color: gold;
    transform: scale(1.05);
}

.contacts {
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* SVG aploksnes ikona */
.svg-envelope {
    width: 30px;
    height: 30px;
    fill: black;
    transition: fill 0.25s ease, transform 0.25s ease;
}

.contacts:hover .svg-envelope {
    fill: gold;
    transform: scale(1.15);
}

/* Lapu teksts */
p {
    font-size: 24px;
    color: gold;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}