@import url(./colorCode/code.css);

/* Navbar */
.custom-navbar{
    background: var(--white);
    padding:10px 10px 10px 15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--gray);
}

.nav-link{
    font-weight:550;
}

.logo img{
    height:70px;
}

.nav-social a{
    color: var(--white);
    font-size:18px;
    margin:0 5px;
    padding: 5px 10px;
    transition:0.3s;
    border-radius: 50%;
    background: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
}

.nav-social a:hover{
    scale: 1.1;
    transition: all .3s ease-in;
}

/* Language Button */
.lang-btn {
    background: #d9d9d9;
    padding: 6px 16px 6px 8px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.lang-dot {
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 50%;
    margin-right: 10px;
}

.lang-text {
    font-weight: 600;
    color: #000;
    font-size: 14px;
    font-family: "Fira Sans", sans-serif;
}

.lang-btn:hover {
    background: #cfcfcf;
}

/* Gallery Link */
.gallery-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    transition: 0.3s ease;
}

.gallery-link:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .nav-social a{
        font-size:16px;
        margin:0 2px;
        width: 30px;
        height: 30px;
    }
}