/* Logo Styles - Single Color with Icon */

.ae-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ae-saddle-brown, #8B4513);
    transition: opacity 0.3s ease;
}

.ae-logo:hover {
    opacity: 0.8;
}

.ae-logo__icon {
    flex-shrink: 0;
    color: currentColor;
}

.ae-logo__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: currentColor;
}

/* Header specific logo styling */
.ae-header__brand .ae-logo {
    color: var(--ae-saddle-brown, #8B4513);
}

/* Footer logo styling */
.ae-footer .ae-logo {
    color: var(--ae-saddle-brown, #8B4513);
}

/* Responsive */
@media (max-width: 768px) {
    .ae-logo__text {
        font-size: 1.25rem;
    }
    
    .ae-logo__icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .ae-logo__text {
        font-size: 1.125rem;
    }
    
    .ae-logo__icon {
        width: 24px;
        height: 24px;
    }
}
