body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Navigation bar styles */
header {
    background-color: white;
    padding: 10px 0;
    text-align: center;
}
.translate-button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #d46c1c, #d46c1c);
    border: none;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.translate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.translate-button:active {
    transform: scale(0.97);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo img {
    max-width: 100px; /* Adjust the logo size as needed */
    vertical-align: middle;
}

.menu {
    list-style-type: none;
    padding: 0;
}

.menu li {
    display: inline;
    margin: 0 20px;
}

.menu a {
    text-decoration: none;
    color: #d46c1c;
    font-size: 18px;
}
.menu a:hover {
    border-bottom: 1px solid red;
    color: red;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
}

.footer-section {
    margin-bottom: 20px;
}

u {
    border-bottom: 1px dotted #d46c1c;
    text-decoration: none;
}

footer nav {
    margin-bottom: 20px;
}

footer nav a {
    text-decoration: none;
    padding: 12px 10px; /* Adjust the vertical padding as needed */
    margin: 10px 0;
    border-radius: 10px;
    font-size: 22px;
    transition: background-color 0.3s, color 0.3s;
    background-color: gray;
    color: black;
    display: inline-block;
    width: 290px; /* Set a fixed width for all buttons */
    height: 50px;
    box-sizing: border-box; /* Include padding in the width */
}

footer nav a:hover {
    background-color: black;
    color: white;
}

.social-media-links a {
    margin: 0 10px;
}

.glavni {
    padding: 5px 10px;
    margin: 10px 10px;
    display: flex;
    flex-direction: column; /* Display buttons in a column */
    text-align: center;
    align-items: center; /* Center align the button rows */
}

.glavni a {
    text-decoration: none;
    padding: 12px 10px; /* Adjust the vertical padding as needed */
    margin: 10px 40px;
    border-radius: 10px;
    font-size: 24px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #d46c1c;
    color: white;
    display: inline-block;
    width: 300px; /* Set a fixed width for all buttons */
    height: 50px;
    box-sizing: border-box; /* Include padding in the width */
}

.glavni a:hover {
    background-color: rgba(212, 108, 28, 0.59);
    color: white;
}

.glavni a:active {
    background-color: rgba(212, 108, 28, 0.59);
    color: white;
}

@media (max-width: 768px) {
    #logo {
        width: 400px;
    }
}
