/* Modern Logo Styles */
@font-face {
    font-family: 'Century Gothic';
    src: local('Century Gothic');
}

.logo-container {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.logo-paper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-mark {
    flex-shrink: 0;
}

.logo-text {
    text-align: left;
}

/* New BALSAM Logo Class */
.balsam-logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.balsam-logo .logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 12px;
    background: transparent;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.balsam-logo:hover .logo-image {
    transform: scale(1.1);
}

.balsam-logo .logo-text {
    font-family: "Century Gothic";
    font-size: 2rem;
    font-weight: bold;
    color: #1DB954; /* Green color */
    text-shadow: none;
    margin: 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.balsam-logo:hover .logo-text {
    color: #18a046;
}

.logo-mark .logo-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
    background: transparent;
    border-radius: 0;
}

.logo-name {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1DB954;  /* Green color */
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-tagline {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;  /* Secondary gray color */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
}

.decorative-leaves {
    position: absolute;
    top: -15px;
    width: 100%;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path fill="%231DB954" d="M0,10 C30,20 70,20 100,10 L100,0 L0,0 Z"/></svg>');
    background-repeat: repeat-x;
    background-size: contain;
    opacity: 0.2;
}