/* Sticky navbar styles */

* {
  -webkit-tap-highlight-color: transparent;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #666666;
    z-index: 1000;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-title {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #f8e71c;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.navbar-title:hover {
    opacity: 0.8;
}

.navbar-separator {
    color: rgb(210,210,210);
    font-size: 0.9rem;
    font-weight: 400;
}

.navbar-gallery {
    font-family: "Libre Franklin", sans-serif;;
    font-weight: 500;
    font-size: 1rem;
    color: rgb(210,210,210);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-gallery:hover {
    color: #f8e71c;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .navbar-title {
        font-size: 1.2rem;
    }
    
    .navbar-separator {
        display: none;
    }
    
    .navbar-gallery {
        font-size: 1rem;
    }
}