/* Logo and Text Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align logo to the right */
    gap: 10px;
}

/* Desktop view (default) */
@media screen and (min-width: 768px) {
    .logo-container {
        justify-content: flex-end;
    }
}

/* Mobile view */
@media screen and (max-width: 767px) {
    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .site-logo {
        margin: 0;
    }

    .head-name {
        margin-top: 5px;
    }
}

/* Existing CSS */
.head-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease-in-out;
}

.head-name:hover {
    color: #ffecd1;
}

.site-logo {
    height: 60px;
    width: auto;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-right: 10px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Tablet view */
@media screen and (max-width: 767px) and (min-width: 481px) {
    .site-logo {
        height: 45px;
    }
}

/* Mobile view */
@media screen and (max-width: 480px) {
    .site-logo {
        height: 60px;
    }

    .container {
        padding: 10px;
    }
}

/* Very small screens */
@media screen and (max-width: 320px) {
    .site-logo {
        height: 35px;
    }

    .top-nav a {
        font-size: 0.9rem;
    }
}
