@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

nav {
    display: flex; 
    justify-content: space-between;
    width: 80%;
    margin: 30px auto 0 auto;
}

.rightcorner, .leftcorner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rightcorner a {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}

.rightcorner img, .leftcorner img {
    width: 30px;
    height: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo-container img {
    width: 15%;
    height: 15%;
    padding-bottom: 30px;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.navbar a {
    position: relative;
    font-size: 20px;
    font-weight: 300;
    width: 95px;
    height: 30px;
    text-align: center;
}

.navbar a::before {
    content:'';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D9332D; 
    transition: 0.3s;
} 

.navbar a:hover::before {
    width: 100%;
}

.navbar a:hover {
    color: #D9332D;
    font-weight: 500;
}

#rezervaceBtn {
    color: #D9332D;
    font-weight: bold;
}